@font-face {
	font-family: "Plus Jakarta Sans";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("../fonts/plus-jakarta-sans-normal-300-800-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Playfair Display";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/playfair-display-normal-700-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Playfair Display";
	font-style: italic;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/playfair-display-italic-700-latin.woff2") format("woff2");
}

:root {
	--brand-orange: #C8601A;
	--brand-orange-mid: #E07B39;
	--brand-orange-pale: #FEF3EC;
	--brand-green-leaf: #72A830;
	--brand-green-dark: #1E4A28;
	--forest-deep: #152B1C;
	--forest: #1E4A28;
	--forest-mid: #2D6A4F;
	--forest-light: #40916C;
	--forest-pale: #D8F3DC;
	--forest-ghost: #F0FAF2;
	--stone: #C8601A;
	--stone-mid: #E07B39;
	--stone-pale: #FEF3EC;
	--charcoal: #1C1C1E;
	--gray-800: #2C2C2E;
	--gray-600: #48484A;
	--gray-400: #6E6E73;
	--gray-200: #AEAEB2;
	--gray-100: #E5E5EA;
	--gray-50: #F5F5F7;
	--white: #FFFFFF;
	--success: #2D6A4F;
	--warning: #E07B39;
	--danger: #B42318;
	--info: #2F80ED;
	--font-display: "Playfair Display", Georgia, serif;
	--font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	--sp-1: 4px;
	--sp-2: 8px;
	--sp-3: 12px;
	--sp-4: 16px;
	--sp-5: 20px;
	--sp-6: 24px;
	--sp-8: 32px;
	--sp-10: 40px;
	--sp-12: 48px;
	--sp-16: 64px;
	--sp-20: 80px;
	--sp-24: 96px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 20px;
	--shadow-sm: 0 1px 2px rgba(21, 43, 28, 0.08);
	--shadow-md: 0 8px 24px rgba(21, 43, 28, 0.10);
	--shadow-lg: 0 18px 48px rgba(21, 43, 28, 0.14);
	--container: 1180px;
	--content: 820px;
	--header-height: 76px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--gray-50);
	color: var(--charcoal);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-color: rgba(28, 28, 30, 0.35);
	text-underline-offset: 0.18em;
}

a:hover {
	text-decoration-color: currentColor;
}

:focus-visible {
	outline: 3px solid var(--stone-mid);
	outline-offset: 4px;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: var(--sp-4);
	left: var(--sp-4);
	padding: var(--sp-3) var(--sp-4);
	background: var(--white);
	color: var(--forest-deep);
	border: 2px solid var(--stone);
	border-radius: var(--radius-sm);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--forest-deep);
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.site-header__inner {
	position: relative;
	width: min(calc(100% - 32px), var(--container));
	min-height: var(--header-height);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: var(--sp-6);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	min-width: 160px;
	text-decoration: none;
}

.site-brand__logo {
	width: 190px;
	max-width: 190px;
	height: auto;
}

.site-brand__mark {
	display: grid;
	place-items: center;
	width: 44px;
	aspect-ratio: 1;
	background: var(--stone);
	color: var(--white);
	border-radius: var(--radius-sm);
	font-weight: 800;
}

.site-brand__text {
	margin-left: var(--sp-2);
	color: var(--white);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

.site-nav {
	margin-left: auto;
}

.site-nav__list,
.site-nav__list .sub-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: var(--sp-1);
}

.site-nav__list > li {
	position: relative;
}

.site-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 var(--sp-3);
	color: rgba(255, 255, 255, 0.82);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border-radius: var(--radius-sm);
}

.site-nav__list > li > a:hover,
.site-nav__list > li > a:focus-visible,
.site-nav__list > .current-menu-item > a,
.site-nav__list > .current-menu-ancestor > a {
	color: var(--white);
	background: rgba(255, 255, 255, 0.09);
}

.site-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + var(--sp-2));
	left: 0;
	display: none;
	min-width: 270px;
	padding: var(--sp-2);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
}

.site-nav__list .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: calc(-1 * var(--sp-2));
	height: var(--sp-2);
}

.site-nav__list .sub-menu a {
	display: flex;
	width: 100%;
	justify-content: space-between;
	min-height: 42px;
	color: var(--gray-800);
	border-radius: var(--radius-sm);
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible {
	color: var(--forest);
	background: var(--forest-ghost);
}

.site-nav__item--has-children:hover > .sub-menu,
.site-nav__item--has-children:focus-within > .sub-menu,
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	display: grid;
	gap: var(--sp-1);
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 var(--sp-5);
	background: var(--stone);
	color: var(--white);
	border-radius: var(--radius-sm);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
}

.site-header__cta:hover {
	background: var(--stone-mid);
}

.site-nav-toggle {
	display: none;
	width: 44px;
	aspect-ratio: 1;
	margin-left: auto;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.07);
	border-radius: var(--radius-sm);
}

.site-nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--white);
	border-radius: 2px;
}

.site-main {
	min-height: 60vh;
}

.hero {
	position: relative;
	min-height: 520px;
	display: grid;
	align-items: end;
	overflow: hidden;
	background: var(--forest-deep);
	color: var(--white);
}

.hero__media {
	position: absolute;
	inset: 0;
	background: var(--forest-deep);
}

.hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(21, 43, 28, 0.94), rgba(21, 43, 28, 0.76) 52%, rgba(21, 43, 28, 0.38)),
		linear-gradient(135deg, rgba(200, 96, 26, 0.22), rgba(45, 106, 79, 0.16));
}

.hero__media::after {
	content: "";
	position: absolute;
	z-index: 2;
	inset: auto 8% 9% auto;
	width: 360px;
	aspect-ratio: 1;
	background: url("../img/brand/icon-color.png") center / contain no-repeat;
	opacity: 0.10;
}

.hero__picture,
.hero__picture img {
	display: block;
	width: 100%;
	height: 100%;
}

.hero__picture img {
	object-fit: cover;
	filter: saturate(0.96) contrast(1.04);
}

.hero__content {
	position: relative;
	z-index: 3;
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
	padding: var(--sp-16) 0 var(--sp-12);
}

.hero h1,
.page-hero h1,
.section__header h2,
.section--split h2,
.cta-band h2 {
	margin: 0;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 920px;
	font-family: var(--font-display);
	font-size: 64px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.05;
	text-wrap: balance;
	overflow-wrap: break-word;
}

.hero__summary {
	max-width: 700px;
	margin: var(--sp-6) 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.75;
}

.eyebrow {
	margin: 0 0 var(--sp-3);
	color: var(--brand-green-leaf);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	margin-top: var(--sp-8);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 var(--sp-6);
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.button--primary {
	background: var(--stone);
	color: var(--white);
}

.button--primary:hover {
	background: var(--stone-mid);
}

.button--secondary {
	border-color: rgba(255, 255, 255, 0.46);
	color: var(--white);
}

.button--secondary:hover {
	background: rgba(255, 255, 255, 0.09);
}

.button--light {
	background: var(--white);
	color: var(--forest-deep);
}

.button--light:hover {
	background: var(--stone-pale);
}

.section,
.page-shell,
.page-hero {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

.section {
	padding: var(--sp-20) 0;
}

.section--tight {
	padding: var(--sp-4) 0 0;
}

.section__header {
	max-width: 720px;
	margin-bottom: var(--sp-10);
}

.section__header h2,
.section--split h2,
.cta-band h2 {
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
}

.section__header p {
	margin: var(--sp-4) 0 0;
	color: var(--gray-600);
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	background: var(--gray-100);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.trust-strip > div {
	padding: var(--sp-6);
	background: var(--white);
}

.trust-strip strong,
.trust-strip span {
	display: block;
}

.trust-strip strong {
	color: var(--forest);
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.trust-strip span {
	margin-top: var(--sp-2);
	color: var(--gray-600);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--sp-6);
}

.service-card,
.post-card {
	min-height: 224px;
	padding: var(--sp-6);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.service-card {
	border-top: 4px solid var(--forest-light);
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
	border-top-color: var(--stone);
}

.service-card h3,
.post-card h2 {
	margin: 0;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.service-card h3 a,
.post-card h2 a {
	text-decoration: none;
}

.service-card h3 a:hover,
.post-card h2 a:hover {
	color: var(--stone);
}

.service-card p,
.post-card p {
	margin: var(--sp-4) 0 0;
	color: var(--gray-600);
}

.section--proof,
.section--portfolio {
	padding-bottom: var(--sp-10);
}

.stage-gallery,
.media-grid {
	display: grid;
	gap: var(--sp-6);
}

.stage-gallery {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stage-card,
.media-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.stage-card__picture,
.media-card__picture,
.project-picture {
	display: block;
	background: var(--forest-ghost);
}

.stage-card__picture img,
.media-card__picture img,
.project-picture img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.stage-card__body,
.media-card__body {
	padding: var(--sp-5);
}

.stage-card__body span {
	display: inline-flex;
	margin-bottom: var(--sp-2);
	color: var(--stone);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.stage-card h3,
.media-card h3 {
	margin: 0;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 22px;
	line-height: 1.3;
}

.media-card__body .eyebrow {
	margin-bottom: var(--sp-2);
}

.media-card a {
	display: inline-flex;
	margin-top: var(--sp-4);
	color: var(--forest);
	font-family: var(--font-heading);
	font-weight: 800;
	text-decoration: none;
}

.media-card a:hover {
	color: var(--stone);
}

.proof-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
	gap: var(--sp-6);
	align-items: stretch;
	margin-bottom: var(--sp-6);
}

.comparison-slider {
	margin: 0;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.comparison-slider__viewport {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--forest-deep);
}

.comparison-slider__image,
.comparison-slider__image img {
	width: 100%;
	height: 100%;
}

.comparison-slider__image {
	display: block;
}

.comparison-slider__image img {
	object-fit: cover;
}

.comparison-slider__after,
.comparison-slider__handle,
.comparison-slider__range,
.comparison-slider__label {
	position: absolute;
}

.comparison-slider__after {
	inset: 0;
	clip-path: inset(0 calc(100% - var(--position, 52%)) 0 0);
}

.comparison-slider__handle {
	top: 0;
	bottom: 0;
	left: var(--position, 52%);
	width: 2px;
	background: var(--white);
	box-shadow: 0 0 0 1px rgba(21, 43, 28, 0.18), 0 0 24px rgba(21, 43, 28, 0.35);
	transform: translateX(-50%);
	pointer-events: none;
}

.comparison-slider__handle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	aspect-ratio: 1;
	border: 2px solid var(--white);
	border-radius: 50%;
	background: rgba(21, 43, 28, 0.72);
	transform: translate(-50%, -50%);
}

.comparison-slider__range {
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.comparison-slider__label {
	z-index: 3;
	top: var(--sp-4);
	padding: var(--sp-2) var(--sp-3);
	background: rgba(21, 43, 28, 0.82);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-sm);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.comparison-slider__label--before {
	left: var(--sp-4);
}

.comparison-slider__label--after {
	right: var(--sp-4);
}

.comparison-slider figcaption {
	padding: var(--sp-4) var(--sp-5);
	color: var(--gray-600);
	font-size: 14px;
	line-height: 1.5;
}

.testimonial-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	padding: var(--sp-6);
	background: var(--forest);
	color: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.testimonial-card__label {
	margin: 0 0 var(--sp-4);
	color: var(--forest-pale);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.4;
	text-transform: uppercase;
}

.testimonial-card__quote {
	margin: 0;
	font-family: var(--font-display);
	font-size: 30px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.18;
}

.testimonial-card__source {
	display: grid;
	gap: var(--sp-1);
	margin-top: var(--sp-6);
	color: rgba(255, 255, 255, 0.78);
}

.testimonial-card__source strong {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 15px;
}

.section--split {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: var(--sp-16);
	align-items: start;
}

.steps {
	display: grid;
	gap: var(--sp-4);
}

.step {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: var(--sp-4);
	padding: var(--sp-6);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.step span {
	display: grid;
	place-items: center;
	width: 48px;
	aspect-ratio: 1;
	background: var(--stone-pale);
	color: var(--stone);
	border-radius: var(--radius-sm);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 800;
}

.step h3 {
	margin: 0;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.step p {
	grid-column: 2;
	margin: calc(-1 * var(--sp-3)) 0 0;
	color: var(--gray-600);
}

.cta-band {
	width: min(calc(100% - 32px), var(--container));
	margin: var(--sp-4) auto var(--sp-20);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-8);
	padding: var(--sp-10);
	background: var(--forest);
	color: var(--white);
	border-radius: var(--radius-md);
}

.cta-band h2 {
	color: var(--white);
}

.cta-band .eyebrow {
	color: var(--forest-pale);
}

.page-hero {
	padding: var(--sp-16) 0 var(--sp-10);
}

.breadcrumbs {
	width: min(calc(100% - 32px), var(--container));
	margin: var(--sp-6) auto 0;
	color: var(--gray-600);
	font-family: var(--font-heading);
	font-size: 13px;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	padding: 0;
	margin: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
}

.breadcrumbs li + li::before {
	content: "/";
	color: var(--gray-400);
}

.breadcrumbs a {
	color: var(--forest);
	text-decoration: none;
}

.page-hero h1 {
	max-width: 820px;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.15;
}

.page-hero p {
	max-width: 680px;
	color: var(--gray-600);
}

.page-shell--core-page .page-hero,
.page-shell--legal .page-hero {
	width: auto;
	max-width: var(--content);
	margin-right: auto;
	margin-left: auto;
}

.page-hero--center {
	text-align: center;
}

.page-hero--center h1,
.page-hero--center p {
	margin-left: auto;
	margin-right: auto;
}

.entry-content {
	max-width: var(--content);
	margin-right: auto;
	margin-left: auto;
	padding-bottom: var(--sp-20);
}

.page-content-layout {
	padding-bottom: var(--sp-20);
}

.page-content-layout .entry-content {
	padding-bottom: 0;
}

.page-content-layout--with-rail {
	display: grid;
	grid-template-columns: minmax(0, var(--content)) 300px;
	gap: var(--sp-10);
	align-items: start;
}

.page-content-layout--with-rail .entry-content {
	max-width: none;
	margin: 0;
}

.page-content-layout--wide .entry-content {
	max-width: none;
}

.page-rail {
	position: sticky;
	top: calc(var(--header-height) + var(--sp-6));
	display: grid;
	gap: var(--sp-4);
}

.rail-card {
	padding: var(--sp-5);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.rail-card--cta {
	border-top: 4px solid var(--stone);
}

.rail-card h2 {
	margin: 0;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 22px;
	line-height: 1.3;
}

.rail-card p {
	margin: var(--sp-3) 0 0;
	color: var(--gray-600);
}

.rail-card .button {
	width: 100%;
	margin-top: var(--sp-4);
}

.rail-card ul {
	display: grid;
	gap: var(--sp-2);
	padding: 0;
	margin: var(--sp-4) 0 0;
	list-style: none;
}

.rail-card a:not(.button) {
	color: var(--forest);
	font-weight: 800;
	text-decoration: none;
}

.rail-card a:not(.button):hover {
	color: var(--stone);
}

.entry-content .intro-panel,
.entry-content .note-panel,
.entry-content .form-panel,
.entry-content .review-block,
.entry-content .pricing-panel,
.entry-content .plant-species-card {
	padding: var(--sp-6);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.entry-content .intro-panel {
	border-left: 4px solid var(--stone);
}

.entry-content .note-panel {
	border-left: 4px solid var(--forest-light);
}

.entry-content .review-block,
.entry-content .plant-species-card {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: var(--sp-6);
	align-items: start;
	border-left: 4px solid var(--forest-light);
}

.entry-content .review-block h2,
.entry-content .pricing-panel h2,
.entry-content .plant-species-card h2 {
	margin-top: 0;
}

.entry-content .review-block ul,
.entry-content .plant-species-card dl {
	display: grid;
	gap: var(--sp-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-content .review-block li,
.entry-content .plant-species-card dl > div {
	padding: var(--sp-4);
	background: var(--forest-ghost);
	border: 1px solid rgba(45, 106, 79, 0.16);
	border-radius: var(--radius-sm);
}

.entry-content .review-block strong,
.entry-content .plant-species-card dt {
	display: block;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 800;
}

.entry-content .review-block span,
.entry-content .plant-species-card dd {
	display: block;
	margin: var(--sp-1) 0 0;
	color: var(--gray-600);
}

.entry-content .pricing-panel {
	display: grid;
	gap: var(--sp-5);
	border-top: 4px solid var(--stone);
}

.entry-content .pricing-panel__header {
	max-width: 720px;
}

.entry-content .pricing-panel__header p:last-child {
	margin-bottom: 0;
}

.entry-content .pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--sp-4);
}

.entry-content .pricing-card {
	display: grid;
	align-content: start;
	gap: var(--sp-3);
	padding: var(--sp-5);
	background: var(--gray-50);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
}

.entry-content .pricing-card--featured {
	background: var(--forest-deep);
	color: var(--white);
	border-color: var(--forest-deep);
}

.entry-content .pricing-card span {
	display: inline-grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1;
	background: var(--stone-pale);
	color: var(--stone);
	border-radius: var(--radius-sm);
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 800;
}

.entry-content .pricing-card h3,
.entry-content .pricing-card p,
.entry-content .pricing-card strong {
	margin: 0;
}

.entry-content .pricing-card--featured h3,
.entry-content .pricing-card--featured p,
.entry-content .pricing-card--featured strong {
	color: var(--white);
}

.entry-content .pricing-card strong {
	color: var(--forest);
	font-family: var(--font-heading);
	font-size: 14px;
}

.entry-content .pricing-card--featured strong {
	color: var(--white);
}

.entry-content .content-grid,
.entry-content .link-grid,
.entry-content .proof-grid,
.entry-content .portfolio-grid,
.entry-content .case-study-facts,
.entry-content .service-links {
	display: grid;
	gap: var(--sp-4);
	padding: 0;
	list-style: none;
}

.entry-content .content-grid,
.entry-content .proof-grid,
.entry-content .portfolio-grid,
.entry-content .case-study-facts {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-content .content-card,
.entry-content .link-grid li,
.entry-content .service-links li,
.entry-content .proof-card,
.entry-content .portfolio-card,
.entry-content .case-study-facts li {
	padding: var(--sp-5);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.entry-content .case-study-facts li {
	display: grid;
	gap: var(--sp-1);
}

.entry-content .case-study-facts strong,
.entry-content .case-study-facts span {
	display: block;
}

.entry-content .case-study-facts strong {
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-weight: 800;
}

.entry-content .case-study-facts span {
	color: var(--gray-600);
}

.entry-content .content-card h3,
.entry-content .proof-card h3,
.entry-content .portfolio-card h3 {
	margin-top: 0;
}

.entry-content .link-grid a,
.entry-content .service-links a {
	color: var(--forest);
	font-weight: 700;
	text-decoration: none;
}

.entry-content .link-grid a:hover,
.entry-content .service-links a:hover {
	color: var(--stone);
}

.entry-content .sitemap-section {
	display: grid;
	gap: var(--sp-5);
	margin-block: var(--sp-8);
}

.entry-content .sitemap-section h2,
.entry-content .sitemap-section h3 {
	margin-bottom: 0;
}

.entry-content .planned-list {
	display: grid;
	gap: var(--sp-3);
	padding-left: var(--sp-6);
}

.entry-content .planned-list code {
	color: var(--forest);
	font-size: 14px;
}

.entry-content .process-list {
	display: grid;
	gap: var(--sp-4);
	padding-left: var(--sp-6);
}

.entry-content .faq-list {
	display: grid;
	gap: var(--sp-3);
}

.entry-content .faq-list details {
	padding: var(--sp-5);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
}

.entry-content .faq-list summary {
	cursor: pointer;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-weight: 800;
}

.entry-content .inline-cta {
	padding: var(--sp-6);
	background: var(--forest);
	color: var(--white);
	border-radius: var(--radius-md);
}

.entry-content .inline-cta h2,
.entry-content .inline-cta h3,
.entry-content .inline-cta p {
	color: var(--white);
}

.entry-content .inline-cta .button {
	margin-top: var(--sp-4);
}

.entry-content .visual-proof {
	display: grid;
	gap: var(--sp-4);
	padding: var(--sp-6);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.entry-content .visual-proof h2 {
	margin: 0;
}

.entry-content .visual-proof .project-picture img {
	border-radius: var(--radius-sm);
}

.entry-content .project-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--sp-4);
}

.entry-content .project-gallery figure {
	margin: 0;
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.entry-content .project-gallery figcaption {
	padding: var(--sp-4);
	color: var(--gray-600);
	font-size: 14px;
	line-height: 1.5;
}

.entry-content .project-gallery img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.entry-content .portfolio-card {
	display: grid;
	gap: var(--sp-3);
}

.entry-content .portfolio-card .project-picture img {
	border-radius: var(--radius-sm);
}

.entry-content > * + * {
	margin-top: var(--sp-6);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--forest-deep);
	font-family: var(--font-heading);
	letter-spacing: 0;
}

.entry-content h2 {
	font-size: 32px;
	line-height: 1.2;
}

.entry-content h3 {
	font-size: 24px;
	line-height: 1.3;
}

.entry-content h4 {
	font-size: 18px;
	line-height: 1.4;
}

.featured-media {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto var(--sp-10);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--forest-ghost);
}

.featured-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-cta {
	max-width: var(--content);
	margin: 0 auto var(--sp-20);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-6);
	padding: var(--sp-8);
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.page-cta h2 {
	margin: 0;
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-size: 26px;
	line-height: 1.25;
}

.fluentform {
	margin-top: var(--sp-4);
}

.fluentform .ff-el-input--label label {
	color: var(--forest-deep);
	font-family: var(--font-heading);
	font-weight: 700;
}

.fluentform input,
.fluentform textarea,
.fluentform select {
	border-color: var(--gray-200) !important;
	border-radius: var(--radius-sm) !important;
}

.fluentform .ff-btn-submit {
	background: var(--stone) !important;
	border-color: var(--stone) !important;
	border-radius: var(--radius-sm) !important;
	font-family: var(--font-heading);
	font-weight: 800;
}

.site-footer {
	background: var(--forest-deep);
	color: var(--white);
}

.site-footer__inner {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
	gap: var(--sp-10);
	padding: var(--sp-20) 0 var(--sp-12);
}

.site-footer__logo {
	width: 190px;
	max-width: 190px;
	height: auto;
	margin-bottom: var(--sp-5);
}

.site-footer__eyebrow {
	margin: 0 0 var(--sp-3);
	color: var(--brand-green-leaf);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.site-footer h2 {
	margin: 0 0 var(--sp-4);
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.site-footer p,
.site-footer ul {
	margin: 0;
}

.site-footer__brand p + p {
	margin-top: var(--sp-3);
}

.site-footer ul {
	display: grid;
	gap: var(--sp-2);
	padding: 0;
	list-style: none;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration-color: rgba(255, 255, 255, 0.25);
}

.site-footer a:hover {
	color: var(--white);
}

.site-footer__brand p,
.site-footer__bottom {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__bottom {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
	padding: var(--sp-6) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom p {
	margin: 0;
}

@media (max-width: 1040px) {
	.site-brand__logo,
	.site-footer__logo {
		width: 168px;
	}

	.site-header__inner {
		gap: var(--sp-4);
	}

	.site-nav__list a {
		padding: 0 var(--sp-2);
	}

	.site-nav-toggle {
		display: block;
		position: absolute;
		top: 12px;
		right: 0;
		z-index: 3;
	}

	.site-header__cta {
		display: none;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		margin: 0;
		padding: var(--sp-3) 16px var(--sp-5);
		background: var(--forest-deep);
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: var(--shadow-lg);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: var(--sp-1);
	}

	.site-nav__list a {
		width: 100%;
		min-height: 48px;
		justify-content: flex-start;
		padding: 0 var(--sp-3);
	}

	.site-nav__list .sub-menu {
		position: static;
		display: grid;
		gap: 0;
		min-width: 0;
		padding: 0 0 0 var(--sp-4);
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.site-nav__list .sub-menu::before {
		content: none;
	}

	.site-nav__list .sub-menu a {
		color: rgba(255, 255, 255, 0.72);
	}

	.site-nav__list .sub-menu a:hover,
	.site-nav__list .sub-menu a:focus-visible {
		color: var(--white);
		background: rgba(255, 255, 255, 0.09);
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 68px;
	}

	.hero {
		min-height: 520px;
	}

	.hero h1 {
		font-size: 44px;
	}

	.hero__summary {
		font-size: 16px;
	}

	.hero__media::after {
		width: 260px;
		opacity: 0.08;
	}

	.trust-strip,
	.card-grid,
	.proof-feature-grid,
	.stage-gallery,
	.media-grid,
	.page-content-layout--with-rail,
	.entry-content .content-grid,
	.entry-content .proof-grid,
	.entry-content .portfolio-grid,
	.entry-content .case-study-facts,
	.entry-content .project-gallery,
	.entry-content .pricing-cards,
	.entry-content .review-block,
	.entry-content .plant-species-card,
	.section--split,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.section--split {
		gap: var(--sp-8);
	}

	.page-rail {
		position: static;
	}

	.page-hero {
		padding: var(--sp-12) 0 var(--sp-8);
	}

	.page-hero h1 {
		font-size: 36px;
	}
}

@media (max-width: 520px) {
	.site-brand__logo {
		width: 150px;
	}

	.hero {
		min-height: 560px;
	}

	.hero__content {
		padding: var(--sp-16) 0 var(--sp-12);
	}

	.hero h1 {
		font-size: 34px;
		line-height: 1.1;
	}

	.hero h1 span {
		display: block;
	}

	.section {
		padding: var(--sp-16) 0;
	}

	.section--tight {
		padding: var(--sp-10) 0 0;
	}

	.section__header h2,
	.section--split h2,
	.cta-band h2,
	.entry-content h2 {
		font-size: 28px;
	}

	.page-hero {
		padding: var(--sp-10) 0 var(--sp-8);
	}

	.page-hero h1 {
		font-size: 34px;
		line-height: 1.12;
	}

	.page-hero p {
		font-size: 15px;
	}

	.breadcrumbs {
		margin-top: var(--sp-5);
	}

	.proof-feature-grid {
		gap: var(--sp-4);
	}

	.testimonial-card__quote {
		font-size: 26px;
	}

	.comparison-slider figcaption {
		padding: var(--sp-3) var(--sp-4);
	}

	.button-row,
	.cta-band,
	.page-cta {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.step {
		grid-template-columns: 1fr;
	}

	.step p {
		grid-column: auto;
		margin-top: 0;
	}

	.cta-band {
		padding: var(--sp-6);
	}
}

@media (max-width: 360px) {
	.hero h1 {
		font-size: 32px;
	}

	.page-hero h1 {
		font-size: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
