:root {
	--cgreen-bg: #fbfbfc;
	--cgreen-surface: #f3f3f6;
	--cgreen-surface-strong: #eeeef0;
	--cgreen-text: #1a1c1e;
	--cgreen-muted: #545f72;
	--cgreen-line: rgba(193, 200, 199, 0.18);
	--cgreen-accent: #49a258;
	--cgreen-accent-dark: #2b6935;
	--cgreen-elevated: rgba(255, 255, 255, 0.82);
	--cgreen-elevated-strong: rgba(255, 255, 255, 0.94);
	--cgreen-header-bg: rgba(255, 255, 255, 0.8);
	--cgreen-header-panel-bg: rgba(255, 255, 255, 0.96);
	--cgreen-header-border: rgba(193, 200, 199, 0.12);
	--cgreen-brand-mark-border: rgba(193, 200, 199, 0.72);
	--cgreen-brand-mark-bg-top: rgba(255, 255, 255, 0.98);
	--cgreen-brand-mark-bg-bottom: rgba(241, 245, 243, 0.94);
	--cgreen-button-bg: #1a1c1e;
	--cgreen-button-text: #ffffff;
	--cgreen-button-hover-bg: #2b6935;
	--cgreen-button-hover-text: #ffffff;
	--cgreen-input-bg: rgba(245, 247, 246, 0.94);
	--cgreen-input-focus-bg: #ffffff;
	--cgreen-rule-width: 44px;
	--cgreen-rule-color: rgba(26, 28, 30, 0.16);
	--cgreen-focus-ring: rgba(73, 162, 88, 0.32);
	--cgreen-kicker-size: 11px;
	--cgreen-kicker-tracking: 0.22em;
	--cgreen-shell: 1440px;
	--cgreen-content: 760px;
	--cgreen-radius: 4px;
	--cgreen-shadow: 0 24px 60px rgba(26, 28, 30, 0.08);
}

html[data-cgreen-theme="dark"] {
	--cgreen-bg: #171d1e;
	--cgreen-surface: #1d2425;
	--cgreen-surface-strong: #242d2e;
	--cgreen-text: #dce4df;
	--cgreen-muted: #9aa7a1;
	--cgreen-line: rgba(193, 200, 199, 0.14);
	--cgreen-accent: #63b06f;
	--cgreen-accent-dark: #4f955a;
	--cgreen-elevated: rgba(32, 39, 40, 0.82);
	--cgreen-elevated-strong: rgba(28, 35, 36, 0.9);
	--cgreen-header-bg: rgba(22, 28, 29, 0.78);
	--cgreen-header-panel-bg: rgba(24, 31, 32, 0.96);
	--cgreen-header-border: rgba(193, 200, 199, 0.1);
	--cgreen-brand-mark-border: rgba(193, 200, 199, 0.18);
	--cgreen-brand-mark-bg-top: rgba(45, 53, 54, 0.98);
	--cgreen-brand-mark-bg-bottom: rgba(28, 35, 36, 0.94);
	--cgreen-button-bg: #d6e0d9;
	--cgreen-button-text: #16201b;
	--cgreen-button-hover-bg: #bdd0c1;
	--cgreen-button-hover-text: #14201a;
	--cgreen-input-bg: rgba(255, 255, 255, 0.05);
	--cgreen-input-focus-bg: rgba(255, 255, 255, 0.09);
	--cgreen-rule-color: rgba(220, 228, 223, 0.13);
	--cgreen-focus-ring: rgba(99, 176, 111, 0.34);
	--cgreen-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cgreen-bg);
	color: var(--cgreen-text);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.625;
	text-rendering: optimizeLegibility;
}

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

.cgreen-skip-link {
	position: absolute;
	top: 14px;
	left: 18px;
	z-index: 200;
	padding: 12px 16px;
	background: var(--cgreen-button-bg);
	color: var(--cgreen-button-text);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transform: translateY(-140%);
	transition: transform 0.18s ease;
}

.cgreen-skip-link:focus-visible {
	transform: translateY(0);
}

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

a {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(73, 162, 88, 0.16);
	touch-action: manipulation;
}

button,
input,
select,
textarea {
	-webkit-tap-highlight-color: rgba(73, 162, 88, 0.16);
}

p {
	margin: 0 0 1.25rem;
}

p:last-child {
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.98;
	scroll-margin-top: 112px;
	text-wrap: balance;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

.cgreen-shell {
	width: 100%;
	max-width: var(--cgreen-shell);
	margin: 0 auto;
	padding-inline: 48px;
}

.site-main {
	padding-bottom: 96px;
}

.site-main--home {
	padding-bottom: 0;
}

.site-main a:not(.cgreen-button):not(.cgreen-link):not(.cgreen-contact-method) {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.editor-styles-wrapper .cgreen-block-preview {
	position: relative;
}

.editor-styles-wrapper .cgreen-block-preview__inner {
	pointer-events: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(12px);
	background: var(--cgreen-header-bg);
	border-bottom: 1px solid var(--cgreen-header-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
	gap: 40px;
}

.site-header__controls {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: auto;
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 28px;
}

.site-header__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--cgreen-text);
	text-decoration: none;
}

.site-header__brand-link--themed {
	gap: 0;
	transform: translateY(10px);
}

.site-header__brand-link:focus-visible,
.site-header__toggle:focus-visible,
.cgreen-faq-item__summary:focus-visible,
.cgreen-contact-method:focus-visible,
.cgreen-contact-form-card .gfield input:focus-visible,
.cgreen-contact-form-card .gfield select:focus-visible,
.cgreen-contact-form-card .gfield textarea:focus-visible {
	outline: 2px solid transparent;
	box-shadow: 0 0 0 3px var(--cgreen-focus-ring);
}

.site-header__brand-mark {
	display: inline-flex;
	align-items: center;
	width: 52px;
	height: 30px;
	overflow: hidden;
	border: 1px solid var(--cgreen-brand-mark-border);
	border-radius: 999px;
	background: linear-gradient(180deg, var(--cgreen-brand-mark-bg-top), var(--cgreen-brand-mark-bg-bottom));
	box-shadow:
		0 8px 18px rgba(16, 24, 22, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-header__brand-mark img {
	display: block;
	height: 24px;
	width: auto;
	max-width: none;
}

.site-header__brand-label {
	font-family: "Manrope", sans-serif;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.site-header__brand-logo-swap {
	display: block;
}

.site-header__brand-link--custom .site-header__brand-image,
.site-header__brand-link--themed .site-header__brand-image {
	display: block;
	width: auto;
	height: 59px;
	max-width: min(416px, calc(100vw - 360px));
}

.site-header__brand-link--themed .site-header__brand-image--dark {
	display: none;
}

html[data-cgreen-theme="dark"] .site-header__brand-link--themed .site-header__brand-image--light {
	display: none;
}

html[data-cgreen-theme="dark"] .site-header__brand-link--themed .site-header__brand-image--dark {
	display: block;
}

.site-footer__brand {
	max-width: 100%;
}

.site-footer__brand a {
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.site-footer__brand-link {
	display: inline-flex;
	align-items: flex-end;
	max-width: 100%;
	color: var(--cgreen-text);
	text-decoration: none;
}

.site-footer__brand-logo-swap {
	display: block;
}

.site-footer__brand-link--custom .site-footer__brand-image,
.site-footer__brand-link--themed .site-footer__brand-image {
	display: block;
	width: auto;
	height: 48px;
	max-width: min(340px, 100%);
}

.site-footer__brand-link--themed .site-footer__brand-image--dark {
	display: none;
}

html[data-cgreen-theme="dark"] .site-footer__brand-link--themed .site-footer__brand-image--light {
	display: none;
}

html[data-cgreen-theme="dark"] .site-footer__brand-link--themed .site-footer__brand-image--dark {
	display: block;
}

.site-header__nav,
.site-footer__nav {
	display: flex;
	align-items: center;
}

.site-footer__nav {
	width: 100%;
}

.site-header__theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.site-header__theme-toggle-track {
	position: relative;
	display: block;
	width: 58px;
	height: 32px;
	border: 1px solid rgba(193, 200, 199, 0.22);
	border-radius: 999px;
	background: var(--cgreen-elevated);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-header__theme-toggle:hover .site-header__theme-toggle-track,
.site-header__theme-toggle:focus-visible .site-header__theme-toggle-track {
	border-color: rgba(73, 162, 88, 0.34);
	transform: translateY(-1px);
	box-shadow: 0 0 0 3px var(--cgreen-focus-ring);
}

.site-header__theme-icon {
	position: absolute;
	top: 50%;
	width: 12px;
	height: 12px;
	color: rgba(84, 95, 114, 0.85);
	transform: translateY(-50%);
	transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header__theme-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-header__theme-icon--sun {
	left: 10px;
}

.site-header__theme-icon--moon {
	right: 10px;
}

.site-header__theme-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--cgreen-button-bg);
	box-shadow: 0 8px 16px rgba(16, 24, 22, 0.18);
	transition: transform 0.24s ease, background-color 0.24s ease;
}

html[data-cgreen-theme="dark"] .site-header__theme-thumb {
	transform: translateX(26px);
}

html[data-cgreen-theme="dark"] .site-header__theme-icon--sun,
html[data-cgreen-theme="light"] .site-header__theme-icon--moon {
	opacity: 0.45;
}

html[data-cgreen-theme="dark"] .site-header__theme-icon--moon,
html[data-cgreen-theme="light"] .site-header__theme-icon--sun {
	opacity: 0.88;
}

.site-header__menu,
.site-footer__menu {
	display: flex;
	align-items: center;
	list-style: none;
}

.site-header__menu {
	gap: 40px;
}

.site-footer__menu {
	flex-wrap: wrap;
	column-gap: 32px;
	row-gap: 12px;
	margin: 0;
	padding: 0;
}

.site-header__menu a {
	display: inline-block;
	padding-bottom: 6px;
	border-bottom: 2px solid transparent;
	color: var(--cgreen-muted);
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: -0.025em;
	text-transform: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__menu a {
	color: var(--cgreen-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer__menu-item--accent a {
	color: var(--cgreen-accent);
}

.site-header__menu .current-menu-item>a,
.site-header__menu .current_page_item>a,
.site-header__menu a:hover,
.site-header__menu a:focus-visible,
.site-footer__menu .current-menu-item>a,
.site-footer__menu .current_page_item>a {
	color: var(--cgreen-accent);
}

.site-header__menu .current-menu-item>a,
.site-header__menu .current_page_item>a,
.site-header__menu a:hover,
.site-header__menu a:focus-visible {
	border-bottom-color: var(--cgreen-accent);
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__toggle span {
	display: block;
	width: 18px;
	height: 1.5px;
	margin: 2px 0;
	background: var(--cgreen-text);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer {
	padding: 80px 0;
	background: var(--cgreen-surface);
}

.site-footer__credit {
	margin: 0;
	color: var(--cgreen-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: -0.01em;
	text-transform: none;
}

.cgreen-section {
	padding: 96px 0 0;
}

.cgreen-section--hero {
	--cgreen-hero-glow-x: 18%;
	--cgreen-hero-glow-y: 38%;
	--cgreen-hero-glow-x-2: 82%;
	--cgreen-hero-glow-y-2: 34%;
	--cgreen-hero-aurora-opacity: 0.92;
	position: relative;
	padding-top: 40px;
	border-bottom: 4px solid var(--cgreen-accent);
	overflow: hidden;
}

.cgreen-section--hero::before {
	content: "";
	position: absolute;
	inset: -160px -4% -60px;
	pointer-events: none;
	background:
		radial-gradient(circle at 12% 38%, rgb(93 184 109 / 0.18), transparent 26%),
		radial-gradient(circle at 88% 26%, rgb(93 184 109 / 0.14), transparent 22%),
		linear-gradient(180deg, rgba(250, 252, 249, 0.98), rgba(246, 249, 247, 0.9));
}

.cgreen-section--hero::after {
	content: "";
	position: absolute;
	inset: -22% -10% -18%;
	pointer-events: none;
	opacity: var(--cgreen-hero-aurora-opacity);
	background:
		radial-gradient(circle at var(--cgreen-hero-glow-x) var(--cgreen-hero-glow-y), rgb(103 193 118 / 0.28), transparent 23%),
		radial-gradient(circle at var(--cgreen-hero-glow-x-2) var(--cgreen-hero-glow-y-2), rgb(124 208 138 / 0.2), transparent 19%),
		radial-gradient(circle at 44% 52%, rgb(221 245 226 / 0.5), transparent 38%);
	filter: blur(44px) saturate(112%);
	transform: translate3d(0, 0, 0);
	will-change: background;
}

.cgreen-section--hero .cgreen-shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.cgreen-section--services {
	padding: 128px 0 96px;
	background: var(--cgreen-surface);
}

.cgreen-section--testimonials {
	padding: 81px 0 129px;
	border-top: 1px solid rgba(193, 200, 199, 0.15);
	border-bottom: 1px solid rgba(193, 200, 199, 0.15);
}

.cgreen-section--clients {
	padding: 96px 0 129px;
	border-bottom: 1px solid rgba(193, 200, 199, 0.15);
}

.cgreen-section--cta {
	padding: 128px 0 136px;
}

.cgreen-two-column {
	display: grid;
	grid-template-columns: minmax(260px, 352px) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.cgreen-section-stack {
	display: flex;
	flex-direction: column;
	gap: 44px;
}

.cgreen-section-stack .cgreen-section-heading {
	max-width: 40rem;
}

.cgreen-proof__rail {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.cgreen-proof__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 0 0;
	border-top: 1px solid var(--cgreen-line);
}

.cgreen-proof__value {
	max-width: 24ch;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.cgreen-proof__label {
	color: rgba(84, 95, 114, 0.82);
	font-size: var(--cgreen-kicker-size);
	font-weight: 600;
	line-height: 16px;
	letter-spacing: var(--cgreen-kicker-tracking);
	text-transform: uppercase;
}

.cgreen-about-hero__proof .cgreen-proof__label {
	margin-bottom: 10px;
}

.cgreen-section--about-hero {
	padding: 128px 0 88px;
}

.cgreen-about-hero {
	display: flex;
	flex-direction: column;
	gap: 52px;
}

.cgreen-about-hero__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 48px;
	align-items: start;
}

.cgreen-about-hero__copy {
	grid-column: 1 / span 7;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.cgreen-about-hero__title {
	max-width: 9ch;
	font-size: clamp(4.1rem, 8.4vw, 6.35rem);
	font-weight: 800;
	letter-spacing: -0.065em;
	line-height: 0.92;
}

.cgreen-about-hero__line {
	display: block;
}

.cgreen-about-hero__line--accent {
	color: var(--cgreen-accent);
}

.cgreen-about-hero__intro {
	max-width: 32rem;
	color: var(--cgreen-muted);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: -0.02em;
}

.cgreen-about-hero__intro p {
	margin: 0 0 1rem;
}

.cgreen-about-hero__philosophy {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 34rem;
	padding: 30px 32px 30px 28px;
	border-left: 4px solid var(--cgreen-accent);
	border-radius: 4px;
	background: var(--cgreen-surface);
}

.cgreen-about-hero__philosophy-eyebrow {
	color: var(--cgreen-accent);
	font-size: 10px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.cgreen-about-hero__philosophy-quote {
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.03em;
}

.cgreen-about-hero__philosophy-quote p {
	margin: 0;
}

.cgreen-about-hero__philosophy-meta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--cgreen-muted);
	font-size: 10px;
	font-weight: 500;
	line-height: 15px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cgreen-about-hero__philosophy-meta::before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: var(--cgreen-rule-color);
}

.cgreen-about-hero__media {
	grid-column: 8 / span 5;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 56px;
	padding-top: 28px;
}

.cgreen-about-hero__portrait-stage {
	position: relative;
	width: 100%;
	max-width: 540px;
}

.cgreen-about-hero__portrait {
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
	background: var(--cgreen-surface-strong);
	box-shadow: 0 28px 64px rgba(26, 28, 30, 0.08);
}

.cgreen-about-hero__portrait-image {
	display: block;
	width: 100%;
	height: auto;
	filter: grayscale(1) contrast(1.03);
}

.cgreen-about-hero__badge {
	position: absolute;
	left: -24px;
	bottom: -24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 30px 32px;
	border-radius: 4px;
	background: var(--cgreen-accent);
	box-shadow:
		0 20px 32px rgba(73, 162, 88, 0.24),
		0 8px 16px rgba(26, 28, 30, 0.08);
}

.cgreen-about-hero__badge-value {
	color: white;
	font-family: "Manrope", sans-serif;
	font-size: 44px;
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.cgreen-about-hero__badge-label {
	color: rgba(255, 255, 255, 0.82);
	font-size: 10px;
	font-weight: 500;
	line-height: 15px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cgreen-about-hero__proof {
	width: 100%;
	max-width: 540px;
	grid-template-columns: 1fr;
	gap: 28px;
	margin-top: 0;
}

.cgreen-about-hero__proof .cgreen-proof__item {
	gap: 2px;
	padding-top: 12px;
	padding-bottom: 2px;
}

.cgreen-about-hero__proof .cgreen-proof__label {
	line-height: 14px;
}

.cgreen-about-hero__proof .cgreen-proof__value {
	max-width: none;
	line-height: 1.4;
}

.cgreen-section--process {
	padding: 120px 0 112px;
	background: var(--cgreen-surface);
}

.cgreen-section--process .cgreen-section-stack {
	gap: 72px;
}

.cgreen-section--process .cgreen-section-heading {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 24px 32px;
	max-width: none;
	align-items: end;
}

.cgreen-section--process .cgreen-section-heading__eyebrow {
	grid-column: 1 / span 12;
}

.cgreen-section--process .cgreen-section-heading__title {
	grid-column: 1 / span 7;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.cgreen-section--process .cgreen-section-heading__description {
	grid-column: 9 / span 4;
	max-width: 18rem;
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cgreen-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
}

.cgreen-process-step {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cgreen-process-step__number {
	color: rgba(73, 162, 88, 0.12);
	font-family: "Manrope", sans-serif;
	font-size: 52px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
}

.cgreen-process-step__accent {
	width: 48px;
	height: 4px;
	background: var(--cgreen-accent);
}

.cgreen-process-step__title {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: -0.035em;
}

.cgreen-process-step__description {
	color: var(--cgreen-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
}

.cgreen-section--logo-showcase {
	padding: 80px 0 16px;
	border-top: 1px solid rgba(193, 200, 199, 0.15);
}

.site-main--services {
	background: linear-gradient(180deg, #fbfcfa 0%, #f5f8f5 100%);
}

.cgreen-section--services-hero {
	position: relative;
	padding: 88px 0 56px;
	overflow: clip;
	border-bottom: 1px solid rgba(193, 200, 199, 0.16);
}

.cgreen-section--services-hero::before {
	content: "";
	position: absolute;
	inset: -72px -8% 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 8% 30%, rgb(93 184 109 / 0.12), transparent 22%),
		radial-gradient(circle at 84% 16%, rgb(93 184 109 / 0.08), transparent 20%),
		linear-gradient(180deg, rgba(251, 252, 250, 0.98), rgba(246, 250, 247, 0.9));
	filter: blur(1px);
}

.cgreen-services-hero {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
	align-items: start;
	min-height: auto;
}

.cgreen-services-hero__content {
	grid-column: 1 / span 8;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cgreen-services-hero__title {
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-width: 10ch;
	font-size: clamp(3.2rem, 6vw, 4.7rem);
	font-weight: 800;
	letter-spacing: -0.068em;
	line-height: 0.92;
}

.cgreen-services-hero__line {
	display: block;
}

.cgreen-services-hero__line--accent {
	color: var(--cgreen-accent);
}

.cgreen-services-hero__description {
	max-width: 27rem;
	color: var(--cgreen-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.58;
	letter-spacing: -0.02em;
}

.cgreen-services-hero__description p {
	margin: 0;
}

.cgreen-services-hero__description p:last-child {
	margin-bottom: 0;
}

.cgreen-services-hero__aside {
	grid-column: 10 / span 3;
	display: flex;
	justify-content: flex-end;
	align-self: start;
	padding-top: 18px;
}

.cgreen-availability--services {
	padding: 40px 4px 4px;
	box-shadow:
		0 16px 32px rgb(0 0 0 / 0.08),
		0 10px 24px rgb(118 194 129 / 0.14);
}

.cgreen-availability--services .cgreen-availability__label {
	top: 14px;
	left: 14px;
	font-size: 9px;
	letter-spacing: 0.18em;
}

.cgreen-availability--services .cgreen-button {
	padding: 14px 24px;
	font-size: 11px;
}

.cgreen-section--services-grid {
	padding: 96px 0 112px;
	background: linear-gradient(180deg, #f1f4f1 0%, #eef2ef 100%);
	border-bottom: 1px solid rgba(193, 200, 199, 0.18);
}

.cgreen-section--services-grid .cgreen-section-stack {
	gap: 48px;
}

.cgreen-section--services-grid .cgreen-section-heading {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px 32px;
	max-width: none;
	align-items: end;
}

.cgreen-section--services-grid .cgreen-section-heading__eyebrow {
	grid-column: 1 / span 12;
}

.cgreen-section--services-grid .cgreen-section-heading__title {
	grid-column: 1 / span 7;
	max-width: 10ch;
	margin: 0;
	font-size: clamp(2.65rem, 4.6vw, 3.75rem);
	line-height: 0.96;
	font-weight: 700;
	letter-spacing: -0.055em;
}

.cgreen-section--services-grid .cgreen-section-heading__description {
	grid-column: 9 / span 4;
	max-width: 18rem;
	margin: 0;
	color: rgba(84, 95, 114, 0.9);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

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

.cgreen-service-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	min-height: 320px;
	padding: 30px 30px 24px;
	border: 1px solid rgba(26, 28, 30, 0.08);
	border-radius: 3px;
	background: var(--cgreen-elevated);
	box-shadow: 0 14px 34px rgba(26, 28, 30, 0.035);
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.cgreen-service-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 16%, rgba(93, 184, 109, 0.18), transparent 28%),
		linear-gradient(180deg, #121918, #1c2524);
	opacity: 0;
	transition: opacity 0.32s ease;
	pointer-events: none;
}

.cgreen-service-panel--muted {
	background: var(--cgreen-elevated-strong);
}

.cgreen-service-panel--dark {
	background: var(--cgreen-elevated);
}

.cgreen-service-panel__top {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cgreen-service-panel__mark {
	display: block;
	width: 42px;
	height: 3px;
	background: var(--cgreen-accent);
}

.cgreen-service-panel__eyebrow {
	color: rgba(84, 95, 114, 0.82);
	font-size: 10px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cgreen-service-panel__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 14px;
	padding-top: 22px;
}

.cgreen-service-panel__title {
	max-width: 12ch;
	font-size: 25px;
	line-height: 1.04;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.cgreen-service-panel__description {
	color: var(--cgreen-muted);
	max-width: 25ch;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
}

.cgreen-service-panel__tag {
	position: relative;
	z-index: 1;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid rgba(26, 28, 30, 0.1);
	color: var(--cgreen-muted);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cgreen-service-panel:focus-within {
	transform: translateY(-3px);
	border-color: rgba(17, 24, 23, 0.4);
	box-shadow: 0 30px 70px rgba(17, 24, 23, 0.16);
}

.cgreen-service-panel:focus-within::before {
	opacity: 1;
}

.cgreen-service-panel:focus-within .cgreen-service-panel__title,
.cgreen-service-panel:focus-within .cgreen-service-panel__description,
.cgreen-service-panel:focus-within .cgreen-service-panel__eyebrow,
.cgreen-service-panel:focus-within .cgreen-service-panel__tag {
	color: #fff;
}

.cgreen-service-panel:focus-within .cgreen-service-panel__tag {
	border-top-color: rgba(255, 255, 255, 0.18);
}

@media (hover: hover) {
	.cgreen-service-panel:hover {
		transform: translateY(-3px);
		border-color: rgba(17, 24, 23, 0.4);
		box-shadow: 0 30px 70px rgba(17, 24, 23, 0.16);
	}

	.cgreen-service-panel:hover::before {
		opacity: 1;
	}

	.cgreen-service-panel:hover .cgreen-service-panel__title,
	.cgreen-service-panel:hover .cgreen-service-panel__description,
	.cgreen-service-panel:hover .cgreen-service-panel__eyebrow,
	.cgreen-service-panel:hover .cgreen-service-panel__tag {
		color: #fff;
	}

	.cgreen-service-panel:hover .cgreen-service-panel__tag {
		border-top-color: rgba(255, 255, 255, 0.18);
	}
}

.cgreen-section--services-methodology {
	padding: 112px 0 128px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 252, 250, 0.96));
}

.cgreen-services-methodology {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 56px;
	align-items: start;
}

.cgreen-services-methodology__copy {
	grid-column: 1 / span 5;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 8px;
}

.cgreen-services-methodology__title {
	max-width: 8ch;
	font-size: clamp(2.75rem, 4.8vw, 4rem);
	font-weight: 700;
	line-height: 0.96;
	letter-spacing: -0.055em;
}

.cgreen-services-methodology__description {
	max-width: 24rem;
	color: var(--cgreen-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
}

.cgreen-services-methodology__steps {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 12px;
}

.cgreen-services-methodology__step {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(26, 28, 30, 0.1);
}

.cgreen-services-methodology__step-number {
	color: var(--cgreen-accent);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cgreen-services-methodology__step-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cgreen-services-methodology__step-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.035em;
}

.cgreen-services-methodology__step-description {
	color: var(--cgreen-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.cgreen-services-methodology__visual {
	grid-column: 7 / span 6;
	position: relative;
	padding-top: 12px;
}

.cgreen-services-methodology__image-frame {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	background:
		radial-gradient(circle at 22% 18%, rgba(93, 184, 109, 0.14), transparent 34%),
		linear-gradient(180deg, #dde6df, #c9d2cb);
	box-shadow: 0 28px 62px rgba(26, 28, 30, 0.12);
}

.cgreen-services-methodology__image,
.cgreen-services-methodology__image-placeholder {
	display: block;
	width: 100%;
	min-height: 620px;
	object-fit: cover;
}

.cgreen-services-methodology__image {
	filter: grayscale(1) contrast(1.04);
}

.cgreen-services-methodology__image-placeholder {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(17, 24, 23, 0.06)),
		radial-gradient(circle at 24% 20%, rgba(93, 184, 109, 0.18), transparent 28%);
}

.cgreen-services-methodology__quote {
	position: absolute;
	left: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: min(22rem, calc(100% - 48px));
	padding: 24px 26px;
	background: #111817;
	box-shadow:
		0 26px 62px rgba(17, 24, 23, 0.28),
		0 10px 24px rgba(17, 24, 23, 0.18);
}

.cgreen-services-methodology__quote p {
	color: white;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.32;
	letter-spacing: -0.04em;
}

.cgreen-services-methodology__quote footer {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cgreen-services-methodology__quote-name {
	color: white;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cgreen-services-methodology__quote-role {
	color: rgba(240, 244, 242, 0.72);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cgreen-section--testimonial-spotlight {
	padding: 104px 0 30px;
}

.cgreen-section--testimonial-spotlight .cgreen-section-stack {
	gap: 32px;
}

.cgreen-section--testimonial-spotlight .cgreen-testimonial-grid--single {
	max-width: 42rem;
}

.cgreen-section--logo-showcase .cgreen-section-stack {
	gap: 36px;
}

.cgreen-hero {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
	align-items: end;
	min-height: clamp(660px, calc(100svh - 96px), 820px);
	padding: 88px 0 176px;
}

.cgreen-hero__content {
	grid-column: 1 / span 8;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.cgreen-hero__title {
	max-width: 10ch;
	font-size: clamp(4rem, 8.8vw, 6.6rem);
	font-weight: 800;
	letter-spacing: -0.065em;
	line-height: 0.92;
}

.cgreen-hero__line {
	display: block;
}

.cgreen-hero__line:last-child {
	transform: translateX(0.04em);
}

.cgreen-hero__description {
	max-width: 26rem;
	color: var(--cgreen-muted);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.cgreen-hero__description p {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 0;
}

.cgreen-hero__description p::before {
	content: "";
	display: block;
	width: var(--cgreen-rule-width);
	height: 1px;
	background: var(--cgreen-rule-color);
}

.cgreen-hero__aside {
	grid-column: 9 / span 4;
	display: flex;
	justify-content: flex-end;
	padding-bottom: 84px;
}

.cgreen-hero__proof {
	margin-top: 44px;
	padding: 0 0 48px;
}

.cgreen-availability {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 48px 4px 4px;
	border-radius: var(--cgreen-radius);
	background: var(--cgreen-accent);
	transform: none;
	box-shadow:
		0 32px 60px rgb(0 0 0 / 0.16),
		0 22px 46px rgb(118 194 129 / 0.22);
}

@media (prefers-reduced-motion: reduce) {
	.cgreen-section--hero::after {
		filter: blur(38px);
	}
}

.cgreen-availability__label {
	position: absolute;
	top: 16px;
	left: 16px;
	color: white;
	font-size: 10px;
	font-weight: 500;
	line-height: 15px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.cgreen-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--cgreen-button-bg);
	color: var(--cgreen-button-text);
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.2s ease;
}

.cgreen-button:hover,
.cgreen-button:focus-visible {
	background: var(--cgreen-button-hover-bg);
	color: var(--cgreen-button-hover-text);
	transform: translateY(-1px);
	box-shadow: 0 0 0 3px var(--cgreen-focus-ring);
}

.cgreen-button__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	flex: 0 0 auto;
	transform: translateY(1px);
}

.cgreen-button__arrow svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.cgreen-button__arrow path {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cgreen-cta .cgreen-button {
	padding: 20px 40px;
	background: var(--cgreen-accent);
}

.cgreen-cta .cgreen-button:hover,
.cgreen-cta .cgreen-button:focus-visible {
	background: var(--cgreen-accent-dark);
}

.cgreen-link {
	padding-bottom: 6px;
	border-bottom: 1px solid var(--cgreen-accent);
	color: var(--cgreen-text);
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cgreen-page-filters {
	padding-top: 36px;
}

.cgreen-portfolio-filters {

	scrollbar-width: none;
}

.cgreen-portfolio-filters::-webkit-scrollbar {
	display: none;
}

.cgreen-portfolio-filters__list {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cgreen-portfolio-filters__item {
	flex: 0 0 auto;
}

a.cgreen-portfolio-filters__link {
	text-decoration: none !important;
}

.cgreen-portfolio-filters__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--cgreen-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--cgreen-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cgreen-portfolio-filters__link:hover,
.cgreen-portfolio-filters__link:focus-visible {
	border-color: rgba(73, 162, 88, 0.42);
	color: var(--cgreen-text);
	transform: translateY(-1px);
	box-shadow: 0 0 0 3px var(--cgreen-focus-ring);
}

.cgreen-portfolio-filters__link.is-active {
	border-color: var(--cgreen-button-bg);
	background: var(--cgreen-button-bg);
	color: var(--cgreen-accent);
}

.cgreen-portfolio-grid__controls {
	padding-top: 28px;
}

.cgreen-portfolio-card__image {
	text-decoration: none;
}

.site-main .cgreen-portfolio-card__title a {
	text-decoration: none;
}

.cgreen-section-heading {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cgreen-section-heading__eyebrow,
.cgreen-page__eyebrow,
.cgreen-project__eyebrow,
.cgreen-project__meta-label {
	color: var(--cgreen-accent);
	font-family: "Manrope", sans-serif;
	font-size: var(--cgreen-kicker-size);
	font-weight: 600;
	line-height: 16px;
	letter-spacing: var(--cgreen-kicker-tracking);
	text-transform: uppercase;
}

.cgreen-portfolio-card__label {
	color: var(--cgreen-accent);
	font-family: "Manrope", sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cgreen-section-heading__title {
	font-size: 24px;
	line-height: 32px;
	letter-spacing: -0.025em;
	font-weight: 500;
}

.cgreen-section--services .cgreen-section-heading__title,
.cgreen-section--testimonials .cgreen-section-heading__title,
.cgreen-section--clients .cgreen-section-heading__title {
	font-size: 28px;
	line-height: 34px;
	font-weight: 600;
	letter-spacing: -0.04em;
}

.cgreen-section--clients .cgreen-section-heading__title {
	max-width: 12ch;
}

.cgreen-section--services .cgreen-section-heading__description {
	max-width: 26ch;
	font-weight: 300;
}

.cgreen-section--clients .cgreen-section-heading__description {
	max-width: 30ch;
	font-size: 15px;
	line-height: 24px;
}

.cgreen-section-heading__description {
	max-width: 24rem;
	color: var(--cgreen-muted);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.cgreen-section-heading__index {
	color: var(--cgreen-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cgreen-service-grid,
.cgreen-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
}

.cgreen-section--services .cgreen-service-grid {
	padding-top: 6px;
}

.cgreen-testimonial-grid {
	gap: 64px;
}

.cgreen-testimonial-grid--single {
	grid-template-columns: minmax(0, 44rem);
	gap: 0;
}

.cgreen-section--testimonials .cgreen-testimonial-grid--single {
	max-width: 46rem;
}

.cgreen-testimonial-rotator {
	display: grid;
}

.cgreen-credibility__clients {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 12px;
	padding-top: 28px;
	border-top: 1px solid rgba(193, 200, 199, 0.15);
}

.cgreen-service-card {
	position: relative;
	padding-top: 18px;
	border-top: 0;
}

.cgreen-service-card::before {
	content: "";
	display: block;
	width: var(--cgreen-rule-width);
	height: 1px;
	margin-bottom: 18px;
	background: var(--cgreen-rule-color);
}

.cgreen-service-card h3 {
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 12px;
	font-weight: 500;
}

.cgreen-service-card p {
	color: var(--cgreen-muted);
	font-size: 14px;
	font-weight: 300;
	line-height: 22.75px;
	max-width: 31ch;
}

.cgreen-portfolio-grid {
	position: relative;
	padding-top: 112px;
}

.site-main--home .cgreen-portfolio-grid {
	--cgreen-work-shadow-x: -14px;
	--cgreen-work-shadow-y: 36px;
	--cgreen-work-shadow-alpha: 0.36;
	--cgreen-work-glow-alpha: 0.12;
	margin-top: 0;
	padding: 144px 0 132px;
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 18%, rgb(73 162 88 / 0.22), transparent 28%),
		radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
		linear-gradient(180deg, #14191a 0%, #0c1011 100%);
	color: #f5f7f6;
}

.site-main--home .cgreen-portfolio-grid::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
}

.site-main--home .cgreen-portfolio-grid .cgreen-shell {
	position: relative;
	z-index: 1;
}

.cgreen-portfolio-grid__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 33px;
	border-bottom: 1px solid var(--cgreen-line);
}

.cgreen-portfolio-grid__title {
	font-size: 30px;
	line-height: 37.5px;
	font-weight: 800;
}

.site-main--home .cgreen-portfolio-grid__header {
	padding-bottom: 40px;
	border-bottom-color: rgba(235, 239, 238, 0.12);
}

.site-main--home .cgreen-portfolio-grid__controls {
	padding-top: 32px;
}

.site-main--home .cgreen-portfolio-grid .cgreen-portfolio-filters__link {
	border-color: rgba(235, 239, 238, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(245, 247, 246, 0.72);
}

.site-main--home .cgreen-portfolio-grid .cgreen-portfolio-filters__link:hover,
.site-main--home .cgreen-portfolio-grid .cgreen-portfolio-filters__link:focus-visible {
	border-color: rgba(245, 247, 246, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #f5f7f6;
}

.site-main--home .cgreen-portfolio-grid .cgreen-portfolio-filters__link.is-active {
	border-color: var(--cgreen-accent);
	background: var(--cgreen-accent);
	color: #fff;
}

.site-main--home .cgreen-portfolio-grid__title {
	max-width: 8ch;
	color: #f5f7f6;
	font-size: clamp(2.75rem, 4.8vw, 4.75rem);
	line-height: 0.94;
	letter-spacing: -0.065em;
}

.cgreen-portfolio-grid__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 80px;
	padding-top: 80px;
}

.cgreen-portfolio-grid__featured {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 80px;
	padding-top: 80px;
}

.cgreen-portfolio-grid--with-filters .cgreen-portfolio-grid__featured {
	padding-top: 56px;
}

.cgreen-portfolio-grid__featured.is-single,
.cgreen-portfolio-grid__secondary.is-single {
	grid-template-columns: minmax(0, 1fr);
}

.cgreen-portfolio-grid__featured.is-single {
	max-width: min(100%, 44rem);
}

.cgreen-portfolio-grid__secondary.is-single {
	max-width: min(100%, 28rem);
}

.cgreen-portfolio-grid__secondary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 88px;
	padding-top: 34px;
	border-top: 1px solid var(--cgreen-line);
}

.site-main--home .cgreen-portfolio-grid__featured {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	align-items: start;
	padding-top: 72px;
}

.site-main--home .cgreen-portfolio-grid__secondary {
	border-top-color: rgba(235, 239, 238, 0.12);
}

.site-main--home .cgreen-portfolio-grid--with-filters .cgreen-portfolio-grid__secondary {
	margin-top: 72px;
	padding-top: 28px;
}

.cgreen-portfolio-rail {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 64px;
}

.site-main--home .cgreen-portfolio-rail {
	margin-top: 72px;
	padding-top: 28px;
	border-top: 1px solid rgba(235, 239, 238, 0.12);
}

.cgreen-portfolio-rail__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cgreen-portfolio-rail__label {
	color: var(--cgreen-muted);
	font-size: var(--cgreen-kicker-size);
	font-weight: 600;
	line-height: 16px;
	letter-spacing: var(--cgreen-kicker-tracking);
	text-transform: uppercase;
}

.site-main--home .cgreen-portfolio-rail__label {
	color: rgba(235, 239, 238, 0.58);
}

.cgreen-portfolio-rail__controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cgreen-portfolio-rail__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--cgreen-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--cgreen-text);
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-main--home .cgreen-portfolio-rail__control {
	border-color: rgba(235, 239, 238, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: #f5f7f6;
}

.cgreen-portfolio-rail__control:hover,
.cgreen-portfolio-rail__control:focus-visible {
	border-color: rgba(73, 162, 88, 0.45);
	color: var(--cgreen-accent);
	transform: translateY(-1px);
}

.cgreen-portfolio-rail__control:disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
}

.cgreen-portfolio-rail__control-icon {
	display: block;
	width: 9px;
	height: 9px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
}

.cgreen-portfolio-rail__control-icon--prev {
	transform: rotate(-135deg);
}

.cgreen-portfolio-rail__control-icon--next {
	transform: rotate(45deg);
}

.cgreen-portfolio-rail__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.site-main--home .cgreen-portfolio-rail__viewport {
	margin-inline: -24px;
	padding-inline: 24px;
	mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.cgreen-portfolio-rail__viewport::-webkit-scrollbar {
	display: none;
}

.cgreen-portfolio-rail__track {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	width: max-content;
	padding-right: 24px;
}

.cgreen-portfolio-grid__footer {
	padding-top: 40px;
}

.site-main--home .cgreen-empty-state--portfolio-filter {
	margin: 72px 0 0;
	color: rgba(245, 247, 246, 0.72);
}

.cgreen-portfolio-grid--archive {
	padding-top: 40px;
}

.cgreen-portfolio-grid--archive .cgreen-portfolio-grid__items {
	padding-top: 0;
	gap: 56px 48px;
}

.cgreen-portfolio-grid--archive .cgreen-portfolio-card {
	transform-origin: center top;
	will-change: transform, opacity;
}

.cgreen-portfolio-grid--archive .cgreen-portfolio-card__image {
	aspect-ratio: auto;
}

.cgreen-portfolio-grid--archive .cgreen-portfolio-card__image img {
	display: block;
	height: auto;
	object-fit: contain;
}

.cgreen-portfolio-card[hidden] {
	display: none !important;
}

.site-main--home .cgreen-portfolio-grid__footer .cgreen-link {
	color: #f5f7f6;
	border-bottom-color: rgba(118, 194, 129, 0.9);
}

.cgreen-portfolio-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-main--home .cgreen-portfolio-card {
	color: #f5f7f6;
}

.cgreen-portfolio-card__image {
	display: block;
	overflow: hidden;
	border-radius: var(--cgreen-radius);
	background: #eeeff0;
	aspect-ratio: 552 / 345;
}

.cgreen-portfolio-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.site-main--home .cgreen-portfolio-card__image {
	border-radius: 8px;
	background: #14191a;
	box-shadow: 0 30px 70px rgb(0 0 0 / 0.32), -10px 16px 48px rgb(118 194 129 / 0.08);
	transition: box-shadow 0.35s ease;
	will-change: box-shadow;
}

.cgreen-portfolio-card__image:hover img,
.cgreen-portfolio-card__image:focus-visible img {
	transform: scale(1.04);
}

.cgreen-portfolio-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 2rem;
	color: var(--cgreen-muted);
	font-family: "Manrope", sans-serif;
	font-size: 1.5rem;
	text-align: center;
}

.cgreen-portfolio-card__meta {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.cgreen-portfolio-card__title {
	margin-top: 8px;
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
}

.site-main--home .cgreen-portfolio-card__label {
	color: #76c281;
}

.site-main--home .cgreen-portfolio-card__title a {
	color: #f5f7f6;
	text-decoration: none !important;
}

.site-main--home .cgreen-portfolio-card--featured {
	gap: 24px;
}

.site-main--home .cgreen-portfolio-card--featured .cgreen-portfolio-card__image {
	aspect-ratio: auto;
	box-shadow:
		calc(var(--cgreen-work-shadow-x) * 1.05) calc(var(--cgreen-work-shadow-y) * 1.02) 88px rgb(0 0 0 / calc(var(--cgreen-work-shadow-alpha) - 0.02)),
		calc(var(--cgreen-work-shadow-x) * -0.34) 18px 64px rgb(118 194 129 / calc(var(--cgreen-work-glow-alpha) + 0.02));
}

.site-main--home .cgreen-portfolio-card--featured .cgreen-portfolio-card__image img {
	display: block;
	height: auto;
	object-fit: contain;
}

.site-main--home .cgreen-portfolio-card--featured .cgreen-portfolio-card__meta {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.site-main--home .cgreen-portfolio-card--featured .cgreen-portfolio-card__title {
	max-width: 14ch;
	margin-top: 0;
	font-size: clamp(1.7rem, 2.4vw, 2.35rem);
	line-height: 1.02;
}

.cgreen-portfolio-card--compact {
	flex: 0 0 min(364px, calc((100vw - 240px) / 3.15));
	gap: 18px;
	scroll-snap-align: start;
}

.site-main--home .cgreen-portfolio-card--compact {
	gap: 16px;
}

.site-main--home .cgreen-portfolio-card--secondary {
	gap: 16px;
}

.cgreen-portfolio-card--compact .cgreen-portfolio-card__image {
	aspect-ratio: 428 / 292;
}

.site-main--home .cgreen-portfolio-card--compact .cgreen-portfolio-card__image {
	aspect-ratio: auto;
}

.cgreen-portfolio-card--compact .cgreen-portfolio-card__title {
	font-size: 20px;
	line-height: 27px;
}

.site-main--home .cgreen-portfolio-card--compact .cgreen-portfolio-card__meta {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.site-main--home .cgreen-portfolio-card--secondary .cgreen-portfolio-card__meta {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.site-main--home .cgreen-portfolio-card--compact .cgreen-portfolio-card__title {
	max-width: 16ch;
	font-size: 1.25rem;
	line-height: 1.18;
}

.site-main--home .cgreen-portfolio-card--secondary .cgreen-portfolio-card__image {
	aspect-ratio: auto;
}

.site-main--home .cgreen-portfolio-card--secondary .cgreen-portfolio-card__image img {
	display: block;
	height: auto;
	object-fit: contain;
}

.site-main--home .cgreen-portfolio-card--secondary .cgreen-portfolio-card__label {
	display: none;
}

.site-main--home .cgreen-portfolio-card--secondary .cgreen-portfolio-card__title {
	max-width: 16ch;
	margin-top: 0;
	font-size: 1.125rem;
	line-height: 1.16;
}

.cgreen-portfolio-card--compact .cgreen-portfolio-card__meta {
	gap: 18px;
}

.cgreen-testimonial {
	grid-area: 1 / 1;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition:
		opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 420ms;
	pointer-events: none;
}

.cgreen-testimonial.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0s;
	pointer-events: auto;
}

.cgreen-testimonial--static {
	opacity: 1;
	visibility: visible;
	transform: none;
	pointer-events: auto;
	transition: none;
}

.cgreen-testimonial p {
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 27.5px;
	letter-spacing: -0.02em;
}

.cgreen-testimonial footer {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.cgreen-testimonial footer::before {
	content: "";
	display: block;
	width: var(--cgreen-rule-width);
	height: 1px;
	background: var(--cgreen-rule-color);
	margin-bottom: 12px;
}

.cgreen-testimonial__name,
.cgreen-testimonial__role {
	display: block;
	font-family: "Inter", sans-serif;
	text-transform: uppercase;
}

.cgreen-testimonial__name {
	color: var(--cgreen-text);
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.12em;
}

.cgreen-testimonial__role {
	color: var(--cgreen-muted);
	font-size: 10px;
	font-weight: 400;
	line-height: 15px;
	letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
	.cgreen-testimonial {
		transition: none;
	}
}

.cgreen-client-strip {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 16px;
	align-items: center;
}

.cgreen-client-strip span {
	display: grid;
	place-items: center;
	justify-self: center;
	width: 100%;
	min-height: 42px;
	padding: 10px 14px;
	background: var(--cgreen-surface);
	color: rgba(84, 95, 114, 0.58);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.12em;
	opacity: 1;
	text-transform: uppercase;
}

.cgreen-client-marquee {
	--cgreen-client-marquee-duration: 28s;
	position: relative;
	width: 100%;
}

.cgreen-client-marquee__viewport {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.cgreen-client-marquee__track {
	display: flex;
	width: max-content;
	animation: cgreen-client-marquee var(--cgreen-client-marquee-duration) linear infinite;
	animation-play-state: paused;
	will-change: transform;
}

.cgreen-client-marquee.is-ready .cgreen-client-marquee__track {
	animation-play-state: running;
}

.cgreen-client-marquee__lane {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 24px;
	padding-right: 24px;
}

.cgreen-client-marquee__item {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 164px;
	min-height: 72px;
	padding: 18px 24px;

	border: none;
	border-radius: 3px;
}

.cgreen-client-marquee__image {
	display: block;

	max-height: 76px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1) contrast(1.02) opacity(0.78);
}

@keyframes cgreen-client-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.cgreen-skip-link,
	.site-header__theme-toggle-track,
	.site-header__theme-thumb,
	.site-header__toggle span,
	.cgreen-button,
	.cgreen-portfolio-filters__link,
	.cgreen-faq-item__icon::before,
	.cgreen-faq-item__icon::after {
		transition: none;
	}

	.cgreen-client-marquee__viewport {
		mask-image: none;
		overflow: visible;
	}

	.cgreen-client-marquee__track {
		display: block;
		width: 100%;
		animation: none;
	}

	.cgreen-client-marquee__lane {
		flex-wrap: wrap;
		padding-right: 0;
	}

	.cgreen-client-marquee__lane[aria-hidden="true"] {
		display: none;
	}
}

.cgreen-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	text-align: center;
}

.cgreen-cta__title {
	max-width: 10.5ch;
	font-size: clamp(3rem, 5vw, 3.75rem);
	line-height: 1;
	letter-spacing: -0.05em;
	font-weight: 800;
}

.cgreen-cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.cgreen-page__header,
.cgreen-page-hero,
.cgreen-project__hero,
.cgreen-contact-hero {
	padding-top: 128px;
}

.cgreen-page__title,
.cgreen-project__title {
	margin-top: 0.75rem;
	font-size: clamp(2.75rem, 6vw, 5.5rem);
	line-height: 0.95;
	font-weight: 800;
}

.cgreen-page__content {
	max-width: calc(var(--cgreen-content) + 96px);
	padding-top: 56px;
}

.cgreen-page__content>* {
	max-width: var(--cgreen-content);
}

.cgreen-page__content .alignwide,
.cgreen-page__content .alignfull {
	max-width: 100%;
}

.site-main--projects {
	background:
		radial-gradient(circle at 14% 0%, rgba(126, 194, 136, 0.12), transparent 34%),
		linear-gradient(180deg, #fbfcfa 0%, #f8faf7 100%);
}

.cgreen-projects-hero {
	padding: 128px 0 52px;
	border-bottom: 1px solid rgba(193, 200, 199, 0.24);
}

.cgreen-projects-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 348px);
	gap: clamp(36px, 5vw, 88px);
	align-items: start;
}

.cgreen-projects-hero__copy {
	max-width: 48rem;
}

.cgreen-projects-hero__title {
	max-width: 11.5ch;
	margin: 0.72rem 0 0;
	font-size: clamp(3rem, 6vw, 5.2rem);
	line-height: 0.94;
	font-weight: 800;
	letter-spacing: -0.06em;
}

.cgreen-projects-hero__description {
	max-width: 34rem;
	margin: 22px 0 0;
	color: var(--cgreen-muted);
	font-size: 17px;
	line-height: 1.7;
}

.cgreen-projects-hero__meta {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-self: end;
	padding-top: 14px;
	border-top: 1px solid rgba(193, 200, 199, 0.28);
}

.cgreen-projects-hero__meta-label {
	margin: 0;
	color: var(--cgreen-accent);
	font-size: 10px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cgreen-projects-hero__meta-text {
	margin: 0;
	color: var(--cgreen-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.01em;
}

.cgreen-projects-hero__filters {
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid rgba(193, 200, 199, 0.24);
}

.cgreen-projects-hero .cgreen-portfolio-filters__list {
	flex-wrap: wrap;
	gap: 10px;
}

.cgreen-projects-hero .cgreen-portfolio-filters__link {
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(193, 200, 199, 0.42);
}

.cgreen-projects-hero .cgreen-portfolio-filters__link:hover,
.cgreen-projects-hero .cgreen-portfolio-filters__link:focus-visible {
	border-color: rgba(73, 162, 88, 0.34);
	background: rgba(255, 255, 255, 0.92);
}

.site-main--projects .cgreen-portfolio-grid--archive {
	padding-top: 64px;
}

.cgreen-page__content h2,
.cgreen-page__content h3,
.cgreen-page__content h4 {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.site-main--contact {
	background:
		radial-gradient(circle at 18% 8%, rgba(126, 194, 136, 0.16), transparent 34%),
		linear-gradient(180deg, #fbfcfa 0%, #f7faf7 100%);
}

.cgreen-contact-hero {
	padding-bottom: 88px;
}

.cgreen-contact-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(344px, 420px);
	gap: clamp(40px, 5vw, 88px);
	align-items: start;
}

.cgreen-contact-heading {
	max-width: 42rem;
}

.cgreen-contact-heading__title {
	max-width: 11ch;
	margin: 0;
	font-size: clamp(3.45rem, 7vw, 5.4rem);
	line-height: 0.94;
	font-weight: 800;
	letter-spacing: -0.06em;
}

.cgreen-contact-heading__title-accent {
	color: var(--cgreen-accent);
}

.cgreen-contact-heading__description {
	max-width: 35rem;
	margin-top: 22px;
	color: var(--cgreen-muted);
	font-size: 17px;
	line-height: 1.68;
}

.cgreen-contact-heading__description p {
	margin: 0;
}

.cgreen-contact-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px 32px;
	max-width: 46rem;
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid rgba(193, 200, 199, 0.3);
}

.cgreen-contact-point {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 14rem;
}

.cgreen-contact-point::before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: var(--cgreen-rule-color);
}

.cgreen-contact-point p {
	margin: 0;
	color: var(--cgreen-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.01em;
}

.cgreen-contact-card {
	display: flex;
	flex-direction: column;
	align-self: start;
	justify-self: end;
	width: 100%;
	gap: 18px;
	padding: 32px 32px 34px;
	background: var(--cgreen-elevated-strong);
	box-shadow:
		0 24px 56px rgba(26, 28, 30, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.65) inset;
	backdrop-filter: blur(6px);
}

.cgreen-contact-card__eyebrow {
	margin: 0;
	color: var(--cgreen-accent);
	font-size: 10px;
	font-weight: 500;
	line-height: 15px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cgreen-contact-card__title {
	margin: 0;
	max-width: 10ch;
	font-size: 32px;
	line-height: 0.98;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.cgreen-contact-card__description {
	margin: 0;
	color: var(--cgreen-muted);
	font-size: 15px;
	line-height: 1.65;
}

.cgreen-contact-methods {
	display: grid;
	gap: 10px;
	margin-top: 6px;
}

.cgreen-contact-method {
	display: flex;
	flex-direction: column;
	gap: 6px;

	padding: 18px 20px 20px;
	background: var(--cgreen-input-bg);
	box-shadow: inset 0 0 0 1px rgba(193, 200, 199, 0.32);
	text-decoration: none !important;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cgreen-contact-method,
.cgreen-contact-method:visited,
.cgreen-contact-method:hover,
.cgreen-contact-method:focus-visible,
.cgreen-contact-method * {
	text-decoration: none;
}

.cgreen-contact-method:hover,
.cgreen-contact-method:focus-visible {
	transform: translateY(-1px);
	background: var(--cgreen-elevated-strong);
	box-shadow:
		inset 0 0 0 1px rgba(73, 162, 88, 0.22),
		0 14px 24px rgba(26, 28, 30, 0.06);
}

.cgreen-contact-method__label {
	color: var(--cgreen-accent);
	font-size: 10px;
	font-weight: 500;
	line-height: 15px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cgreen-contact-method__value {
	color: var(--cgreen-text);
	font-family: "Manrope", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.04em;
	word-break: normal;
	white-space: nowrap;
}

.cgreen-contact-card__note {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 4px 0 0;
	color: var(--cgreen-muted);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cgreen-contact-card__note::before {
	content: "";
	display: block;
	width: 28px;
	height: 1px;
	background: var(--cgreen-rule-color);
}

.cgreen-contact-form-section {
	padding: 0 0 120px;
}

.cgreen-contact-form-layout {
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.cgreen-contact-form-section .cgreen-section-heading {
	position: sticky;
	top: 120px;
	max-width: none;
}

.cgreen-contact-form-section .cgreen-section-heading__title {
	max-width: 10ch;
	font-size: 34px;
	line-height: 0.98;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.cgreen-contact-form-section .cgreen-section-heading__description {
	max-width: 18rem;
	font-size: 15px;
	line-height: 1.65;
}

.cgreen-contact-form-card {
	padding: 40px;
	background: var(--cgreen-elevated-strong);
	box-shadow: var(--cgreen-shadow);
}

.cgreen-contact-form-card .gform_wrapper {
	margin: 0;
}

.cgreen-contact-form-card .gform_heading,
.cgreen-contact-form-card .gform_required_legend {
	display: none;
}

.cgreen-contact-form-card .gform_fields {
	row-gap: 18px;
}

.cgreen-contact-form-card .gfield_label {
	margin-bottom: 8px;
	color: var(--cgreen-accent);
	font-size: 10px;
	font-weight: 500;
	line-height: 15px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cgreen-contact-form-card .gfield input:not([type="checkbox"]):not([type="radio"]),
.cgreen-contact-form-card .gfield select,
.cgreen-contact-form-card .gfield textarea {
	width: 100%;
	padding: 15px 16px;
	border: 0;
	border-radius: 0;
	background: var(--cgreen-input-bg);
	box-shadow: inset 0 0 0 1px rgba(193, 200, 199, 0.32);
	color: var(--cgreen-text);
	font-size: 15px;
	line-height: 1.5;
	transition: box-shadow 180ms ease, background-color 180ms ease;
}

.cgreen-contact-form-card .gfield textarea {
	min-height: 180px;
	resize: vertical;
}

.cgreen-contact-form-card .gfield input:focus,
.cgreen-contact-form-card .gfield select:focus,
.cgreen-contact-form-card .gfield textarea:focus {
	background: var(--cgreen-input-focus-bg);
}

.cgreen-contact-form-card .gfield input:focus-visible,
.cgreen-contact-form-card .gfield select:focus-visible,
.cgreen-contact-form-card .gfield textarea:focus-visible {
	outline: none;
	box-shadow:
		inset 0 0 0 1px rgba(73, 162, 88, 0.4),
		0 0 0 3px var(--cgreen-focus-ring);
}

.cgreen-contact-form-card .gform_footer,
.cgreen-contact-form-card .gform_page_footer {
	margin-top: 24px;
	padding: 0;
}

.cgreen-contact-form-card .gform_button,
.cgreen-contact-form-card button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 28px;
	border: 0;
	border-radius: 0;
	background: var(--cgreen-button-bg);
	color: var(--cgreen-button-text);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.cgreen-contact-form-card .gform_button:hover,
.cgreen-contact-form-card .gform_button:focus-visible,
.cgreen-contact-form-card button[type="submit"]:hover,
.cgreen-contact-form-card button[type="submit"]:focus-visible {
	background: var(--cgreen-button-hover-bg);
	color: var(--cgreen-button-hover-text);
	transform: translateY(-1px);
}

.cgreen-contact-form-card .validation_message,
.cgreen-contact-form-card .gform_validation_errors,
.cgreen-contact-form-card .gfield_description {
	font-size: 13px;
	line-height: 1.5;
}

.cgreen-contact-body {
	padding: 0 0 120px;
}

.site-main--faq {
	background: linear-gradient(180deg, #fbfcfa 0%, #f7faf7 100%);
}

.cgreen-faq-hero {
	padding-bottom: 88px;
}

.cgreen-faq-hero .cgreen-two-column {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 332px);
	gap: clamp(40px, 5vw, 88px);
	align-items: start;
}

.cgreen-faq-hero .cgreen-section-heading {
	max-width: 38rem;
}

.cgreen-faq-hero .cgreen-section-heading__title {
	max-width: 10ch;
	font-size: clamp(3.35rem, 7vw, 5.2rem);
	line-height: 0.94;
	font-weight: 800;
	letter-spacing: -0.06em;
}

.cgreen-faq-hero .cgreen-section-heading__description {
	max-width: 34rem;
	font-size: 17px;
	line-height: 1.68;
}

.cgreen-faq-heading__description {
	max-width: 34rem;
	color: var(--cgreen-muted);
	font-size: 17px;
	line-height: 1.68;
}

.cgreen-faq-heading__description p {
	margin: 0 0 1rem;
}

.cgreen-faq-heading__description p:last-child {
	margin-bottom: 0;
}

.cgreen-faq-card {
	display: flex;
	flex-direction: column;
	align-self: start;
	justify-self: end;
	width: 100%;
	max-width: 332px;
	gap: 16px;
	margin-top: 18px;
	padding: 28px 28px 30px;
	background: var(--cgreen-elevated-strong);
	box-shadow: var(--cgreen-shadow);
}

.cgreen-faq-card__title {
	color: var(--cgreen-text);
	font-size: 24px;
	line-height: 1.06;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.cgreen-faq-card p:not(.cgreen-faq-card__title) {
	color: var(--cgreen-muted);
	font-size: 15px;
	line-height: 1.65;
}

.cgreen-faq-list-section {
	padding: 0 0 128px;
}

.cgreen-faq-layout {
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.cgreen-faq-aside {
	position: sticky;
	top: 120px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cgreen-faq-aside__title {
	max-width: 12ch;
	font-size: 30px;
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.cgreen-faq-aside__description {
	max-width: 18rem;
	color: var(--cgreen-muted);
	font-size: 15px;
	line-height: 1.65;
}

.cgreen-faq-list {
	border-top: 1px solid rgba(193, 200, 199, 0.32);
}

.cgreen-faq-item {
	border-bottom: 1px solid rgba(193, 200, 199, 0.32);
}

.cgreen-faq-item__summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: start;
	padding: 28px 0;
	cursor: pointer;
	list-style: none;
}

.cgreen-faq-item__summary:focus-visible {
	border-radius: 4px;
}

.cgreen-faq-item__summary::-webkit-details-marker {
	display: none;
}

.cgreen-faq-item__question {
	max-width: 26ch;
	font-size: clamp(1.45rem, 2.2vw, 1.8rem);
	line-height: 1.12;
	font-weight: 600;
	letter-spacing: -0.035em;
}

.cgreen-faq-item__icon {
	position: relative;
	width: 18px;
	height: 18px;
	margin-top: 4px;
}

.cgreen-faq-item__icon::before,
.cgreen-faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 1.5px;
	background: var(--cgreen-text);
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.cgreen-faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.cgreen-faq-item[open] .cgreen-faq-item__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.cgreen-faq-item__answer {
	max-width: 46rem;
	padding: 0 56px 32px 0;
	color: var(--cgreen-muted);
	font-size: 16px;
	line-height: 1.72;
}

.cgreen-faq-item__answer p {
	margin: 0 0 1rem;
}

.cgreen-faq-item__answer p:last-child {
	margin-bottom: 0;
}

.cgreen-faq-item__answer blockquote {
	margin: 1.5rem 0;
	padding: 24px 24px 24px 20px;
	border-left: 3px solid var(--cgreen-accent);
	background: var(--cgreen-elevated);
	color: var(--cgreen-text);
	font-size: 15px;
	line-height: 1.7;
}

.cgreen-faq-item__answer a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cgreen-project__hero {
	padding-bottom: 80px;
}

.cgreen-project__hero-stack {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cgreen-project__case-label,
.cgreen-project__section-label,
.cgreen-project__next-label {
	margin: 0;
	color: var(--cgreen-accent);
	font-size: 12px;
	font-family: "Manrope", sans-serif;
	font-weight: 400;
	letter-spacing: 0.28em;
	line-height: 1.333;
	text-transform: uppercase;
}

.cgreen-project__title {
	max-width: 9ch;
	font-size: clamp(4.5rem, 10vw, 8rem);
	line-height: 0.94;
	letter-spacing: -0.06em;
}

.cgreen-project__hero-media {
	margin-top: 8px;

	background: var(--cgreen-elevated);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cgreen-project__hero-media img {
	display: block;
	width: 100%;
	border-radius: var(--cgreen-radius);
}

.cgreen-project__details {
	padding: 80px 0 0;
}

.cgreen-project__details-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 64px;
	align-items: start;
}

.cgreen-project__overview {
	grid-column: 1 / span 8;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.cgreen-project__overview-copy {
	max-width: 840px;
	color: var(--cgreen-text);
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 300;
	line-height: 1.6;
}

.cgreen-project__overview-copy p {
	margin-bottom: 1.25rem;
}

.cgreen-project__overview-copy p:last-child {
	margin-bottom: 0;
}

.cgreen-project__sidebar {
	grid-column: 9 / span 4;
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding-left: 32px;
	border-left: 1px solid rgba(193, 200, 199, 0.3);
}

.cgreen-project__sidebar-group {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cgreen-project__sidebar-group--meta {
	gap: 16px;
}

.cgreen-project__service-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
}

.cgreen-project__service-list li,
.cgreen-project__meta-row {
	color: var(--cgreen-text);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.45;
}

.cgreen-project__meta-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cgreen-project__meta-label {
	display: inline-block;
	margin: 0;
	color: var(--cgreen-muted);
	font-size: 11px;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.cgreen-project__gallery-section {
	padding: 56px 0 0;
}

.cgreen-project__gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
}

.cgreen-project__gallery-card {
	margin: 0;
	background: var(--cgreen-surface);
	border-radius: var(--cgreen-radius);
	overflow: hidden;
}

.cgreen-project__gallery-card--wide {
	grid-column: 1 / -1;
}

.cgreen-project__gallery-card img {
	width: 100%;
}

.cgreen-project__outcome {
	margin-top: 96px;
	padding: 128px 0;
	background: var(--cgreen-surface);
}

.cgreen-project__outcome-inner {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 920px;
}

.cgreen-project__outcome-copy {
	max-width: 820px;
	font-family: "Manrope", sans-serif;
	font-size: clamp(2.6rem, 4.6vw, 4.4rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.cgreen-project__outcome-copy p {
	margin-bottom: 0.35em;
}

.cgreen-project__outcome-copy p:last-child {
	margin-bottom: 0;
}

.cgreen-project__next {
	padding: 160px 0;
}

.cgreen-project__next-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	text-align: center;
}

.cgreen-project__next-label {
	color: var(--cgreen-muted);
}

.cgreen-project__next-title {
	max-width: 11ch;
	font-size: clamp(3rem, 6vw, 4.5rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
}

html[data-cgreen-theme="dark"] .site-header__brand-mark {
	box-shadow:
		0 14px 28px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-cgreen-theme="dark"] .site-header__theme-toggle-track {
	border-color: rgba(193, 200, 199, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-cgreen-theme="dark"] .site-header__theme-icon {
	color: rgba(237, 242, 238, 0.82);
}

html[data-cgreen-theme="dark"] .site-footer {
	background: #1a2021;
}

html[data-cgreen-theme="dark"] .site-main--projects {
	background:
		radial-gradient(circle at 14% 0%, rgba(99, 176, 111, 0.14), transparent 34%),
		linear-gradient(180deg, #1b2223 0%, #151a1b 100%);
}

html[data-cgreen-theme="dark"] .site-main--contact {
	background:
		radial-gradient(circle at 18% 8%, rgba(99, 176, 111, 0.15), transparent 34%),
		linear-gradient(180deg, #1b2223 0%, #151a1b 100%);
}

html[data-cgreen-theme="dark"] .site-main--faq {
	background: linear-gradient(180deg, #1b2223 0%, #151a1b 100%);
}

html[data-cgreen-theme="dark"] .site-main--services {
	background: linear-gradient(180deg, #1b2223 0%, #151a1b 100%);
}

html[data-cgreen-theme="dark"] .cgreen-section--hero::before {
	background:
		radial-gradient(circle at 12% 38%, rgb(99 176 111 / 0.14), transparent 26%),
		radial-gradient(circle at 88% 26%, rgb(99 176 111 / 0.1), transparent 22%),
		linear-gradient(180deg, rgba(28, 35, 36, 0.98), rgba(20, 26, 27, 0.94));
}

html[data-cgreen-theme="dark"] .cgreen-section--hero::after {
	background:
		radial-gradient(circle at var(--cgreen-hero-glow-x) var(--cgreen-hero-glow-y), rgb(99 176 111 / 0.2), transparent 23%),
		radial-gradient(circle at var(--cgreen-hero-glow-x-2) var(--cgreen-hero-glow-y-2), rgb(99 176 111 / 0.12), transparent 19%),
		radial-gradient(circle at 44% 52%, rgb(99 176 111 / 0.1), transparent 38%);
}

html[data-cgreen-theme="dark"] .cgreen-projects-hero,
html[data-cgreen-theme="dark"] .cgreen-section--services-hero,
html[data-cgreen-theme="dark"] .cgreen-section--services-grid,
html[data-cgreen-theme="dark"] .cgreen-section--logo-showcase,
html[data-cgreen-theme="dark"] .cgreen-section--testimonials,
html[data-cgreen-theme="dark"] .cgreen-section--clients,
html[data-cgreen-theme="dark"] .cgreen-faq-list,
html[data-cgreen-theme="dark"] .cgreen-faq-item,
html[data-cgreen-theme="dark"] .cgreen-project__sidebar {
	border-color: rgba(193, 200, 199, 0.18);
}

html[data-cgreen-theme="dark"] .cgreen-section--services-hero::before {
	background:
		radial-gradient(circle at 8% 30%, rgb(99 176 111 / 0.1), transparent 24%),
		radial-gradient(circle at 84% 16%, rgb(99 176 111 / 0.07), transparent 20%),
		linear-gradient(180deg, rgba(28, 35, 36, 0.98), rgba(21, 27, 28, 0.94));
}

html[data-cgreen-theme="dark"] .cgreen-section--services-grid {
	background: linear-gradient(180deg, #202829 0%, #1a2021 100%);
}

html[data-cgreen-theme="dark"] .cgreen-section--services-methodology {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
}

html[data-cgreen-theme="dark"] .cgreen-projects-hero .cgreen-portfolio-filters__link {
	background: rgba(255, 255, 255, 0.035);
	border-color: rgba(193, 200, 199, 0.16);
}

html[data-cgreen-theme="dark"] .cgreen-projects-hero .cgreen-portfolio-filters__link:hover,
html[data-cgreen-theme="dark"] .cgreen-projects-hero .cgreen-portfolio-filters__link:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(99, 176, 111, 0.28);
}

html[data-cgreen-theme="dark"] .cgreen-about-hero__philosophy,
html[data-cgreen-theme="dark"] .cgreen-service-panel,
html[data-cgreen-theme="dark"] .cgreen-contact-card,
html[data-cgreen-theme="dark"] .cgreen-contact-method,
html[data-cgreen-theme="dark"] .cgreen-contact-form-card,
html[data-cgreen-theme="dark"] .cgreen-faq-card,
html[data-cgreen-theme="dark"] .cgreen-faq-item__answer blockquote,
html[data-cgreen-theme="dark"] .cgreen-portfolio-rail__control,
html[data-cgreen-theme="dark"] .cgreen-project__gallery-card {
	box-shadow:
		inset 0 0 0 1px rgba(193, 200, 199, 0.08),
		0 14px 34px rgba(0, 0, 0, 0.18);
}

html[data-cgreen-theme="dark"] .cgreen-about-hero__philosophy {
	background: var(--cgreen-elevated);
}

html[data-cgreen-theme="dark"] .cgreen-project__gallery-card {
	background: var(--cgreen-surface-strong);
}

html[data-cgreen-theme="dark"] .cgreen-services-methodology__image-frame {
	background:
		radial-gradient(circle at 22% 18%, rgba(99, 176, 111, 0.12), transparent 34%),
		linear-gradient(180deg, #303936, #202627);
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

html[data-cgreen-theme="dark"] .cgreen-contact-form-card .gfield input:not([type="checkbox"]):not([type="radio"]),
html[data-cgreen-theme="dark"] .cgreen-contact-form-card .gfield select,
html[data-cgreen-theme="dark"] .cgreen-contact-form-card .gfield textarea {
	box-shadow: inset 0 0 0 1px rgba(193, 200, 199, 0.12);
}

.cgreen-post-card+.cgreen-post-card {
	margin-top: 48px;
}

.cgreen-post-card__title {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.cgreen-empty-state {
	color: var(--cgreen-muted);
}

input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(26, 28, 30, 0.12);
	border-radius: 0;
	background: var(--cgreen-input-bg);
	color: var(--cgreen-text);
	font: inherit;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

button,
input[type="submit"],
input[type="button"] {
	font: inherit;
}

.gform_wrapper input[type="submit"],
.gform_wrapper button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	border: 0;
	border-radius: 0;
	background: var(--cgreen-accent);
	color: white;
	cursor: pointer;
}

@media (max-width: 960px) {
	.cgreen-shell {
		padding-inline: 24px;
	}

	.site-header__inner {
		min-height: 72px;
		gap: 24px;
	}

	.site-header__controls {
		gap: 12px;
	}

	.site-header__brand-link {
		gap: 12px;
	}

	.site-header__brand-mark {
		width: 46px;
		height: 26px;
	}

	.site-header__brand-mark img {
		height: 20px;
	}

	.site-header__brand-label {
		font-size: 20px;
	}

	.site-header__brand-link--custom .site-header__brand-image,
	.site-header__brand-link--themed .site-header__brand-image {
		height: 59px;
		max-width: min(416px, calc(100vw - 148px));
	}

	.site-header__toggle {
		display: inline-flex;
		flex-direction: column;
	}

	.site-header__theme-toggle-track {
		width: 52px;
		height: 30px;
	}

	.site-header__theme-thumb {
		width: 22px;
		height: 22px;
	}

	html[data-cgreen-theme="dark"] .site-header__theme-thumb {
		transform: translateX(22px);
	}

	.site-header__nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: 0 24px 20px;
		background: var(--cgreen-header-panel-bg);
		backdrop-filter: blur(18px);
		border-bottom: 1px solid rgba(193, 200, 199, 0.25);
		box-shadow: 0 22px 40px rgba(16, 24, 22, 0.14);
	}

	.is-menu-open .site-header__nav {
		display: block;
	}

	.site-header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 20px 0 0;
	}

	.cgreen-hero,
	.cgreen-two-column,
	.cgreen-projects-hero__grid,
	.cgreen-contact-hero__grid,
	.cgreen-contact-form-layout,
	.cgreen-project__details-grid,
	.cgreen-about-hero__grid,
	.cgreen-process-grid,
	.cgreen-faq-layout {
		grid-template-columns: 1fr;
	}

	.cgreen-hero__content,
	.cgreen-hero__aside,
	.cgreen-about-hero__copy,
	.cgreen-about-hero__media {
		grid-column: auto;
	}

	.cgreen-hero {
		min-height: auto;
		padding: 72px 0 48px;
		gap: 28px;
	}

	.cgreen-hero__aside {
		justify-content: flex-start;
		padding-bottom: 0;
	}

	.cgreen-availability {
		transform: none;
	}

	.cgreen-contact-hero {
		padding: 96px 0 72px;
	}

	.cgreen-projects-hero {
		padding: 104px 0 44px;
	}

	.cgreen-projects-hero__grid,
	.cgreen-contact-hero__grid,
	.cgreen-contact-form-layout {
		gap: 32px;
	}

	.cgreen-projects-hero__meta {
		max-width: 34rem;
		padding-top: 20px;
	}

	.cgreen-projects-hero__filters {
		margin-top: 36px;
		padding-top: 20px;
	}

	.cgreen-contact-card {
		justify-self: stretch;
		padding: 28px 28px 30px;
	}

	.cgreen-contact-points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 28px;
	}

	.cgreen-contact-form-section .cgreen-section-heading {
		position: static;
	}

	.cgreen-contact-form-card {
		padding: 32px;
	}

	.cgreen-section--about-hero {
		padding: 104px 0 72px;
	}

	.cgreen-about-hero {
		gap: 44px;
	}

	.cgreen-about-hero__media {
		align-items: flex-start;
		padding-top: 0;
	}

	.cgreen-about-hero__portrait-stage,
	.cgreen-about-hero__proof {
		max-width: 460px;
	}

	.cgreen-about-hero__badge {
		left: 16px;
		bottom: -16px;
	}

	.cgreen-section--process .cgreen-section-heading {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.cgreen-section--process .cgreen-section-heading__title,
	.cgreen-section--process .cgreen-section-heading__description {
		grid-column: auto;
		max-width: 34rem;
	}

	.cgreen-section--process .cgreen-section-heading__description {
		font-size: 12px;
		line-height: 1.7;
	}

	.cgreen-services-hero,
	.cgreen-services-methodology {
		grid-template-columns: 1fr;
		gap: 32px;
		min-height: auto;
	}

	.cgreen-services-hero__content,
	.cgreen-services-hero__aside,
	.cgreen-services-methodology__copy,
	.cgreen-services-methodology__visual {
		grid-column: auto;
	}

	.cgreen-section--services-hero {
		padding: 92px 0 72px;
	}

	.cgreen-services-hero__aside {
		justify-content: flex-start;
		padding-top: 0;
	}

	.cgreen-section--services-grid {
		padding: 88px 0 96px;
	}

	.cgreen-faq-hero {
		padding-bottom: 72px;
	}

	.cgreen-faq-card {
		justify-self: stretch;
		max-width: none;
		margin-top: 0;
	}

	.cgreen-faq-aside {
		position: static;
		gap: 14px;
	}

	.cgreen-faq-aside__title,
	.cgreen-faq-aside__description {
		max-width: 34rem;
	}

	.cgreen-section--services-grid .cgreen-section-heading {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.cgreen-section--services-grid .cgreen-section-heading__title,
	.cgreen-section--services-grid .cgreen-section-heading__description {
		grid-column: auto;
		max-width: 34rem;
	}

	.cgreen-section--services-grid .cgreen-section-heading__description {
		font-size: 12px;
		line-height: 1.7;
	}

	.cgreen-service-panel-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cgreen-section--services-methodology {
		padding: 96px 0 112px;
	}

	.cgreen-services-methodology__visual {
		padding-top: 8px;
	}

	.cgreen-services-methodology__quote {
		left: 24px;
		bottom: 24px;
		max-width: min(26rem, calc(100% - 48px));
	}

	.cgreen-section--process {
		padding: 104px 0 96px;
	}

	.cgreen-process-grid {
		gap: 32px;
	}

	.cgreen-section--logo-showcase {
		padding-top: 96px;
	}

	.cgreen-section--testimonial-spotlight {
		padding-top: 96px;
	}

	.cgreen-service-grid,
	.cgreen-testimonial-grid,
	.cgreen-portfolio-grid__items,
	.cgreen-portfolio-grid__featured {
		grid-template-columns: 1fr;
	}

	.cgreen-page-filters {
		padding-top: 28px;
	}

	.cgreen-portfolio-grid__secondary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-main--home .cgreen-portfolio-grid {
		padding: 120px 0 112px;
	}

	.site-main--home .cgreen-portfolio-grid__featured {
		gap: 56px;
	}

	.site-main--home .cgreen-portfolio-card--featured .cgreen-portfolio-card__title {
		max-width: 16ch;
		font-size: clamp(1.6rem, 3vw, 2.1rem);
	}

	.cgreen-portfolio-grid__secondary {
		margin-top: 72px;
		padding-top: 28px;
	}

	.cgreen-portfolio-rail__track {
		padding-right: 16px;
	}

	.cgreen-portfolio-card--compact {
		flex-basis: min(380px, calc((100vw - 132px) / 2.15));
	}

	.cgreen-client-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.cgreen-client-marquee__lane {
		gap: 18px;
		padding-right: 18px;
	}

	.cgreen-client-marquee__item {
		min-width: 144px;
		min-height: 64px;
		padding: 16px 20px;
	}

	.cgreen-client-marquee__image {
		max-width: 108px;
		max-height: 26px;
	}

	.cgreen-proof__rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cgreen-portfolio-grid {
		padding-left: 0;
	}

	.cgreen-page__header,
	.cgreen-page-hero,
	.cgreen-project__hero,
	.cgreen-contact-hero,
	.cgreen-projects-hero {
		padding-top: 96px;
	}

	.cgreen-project__title {
		max-width: 10ch;
		font-size: clamp(3.75rem, 9vw, 6.5rem);
	}

	.cgreen-project__details {
		padding-top: 64px;
	}

	.cgreen-project__sidebar {
		grid-column: auto;
		padding-left: 0;
		padding-top: 28px;
		border-left: 0;
		border-top: 1px solid rgba(193, 200, 199, 0.3);
	}

	.cgreen-project__gallery-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.cgreen-project__gallery-card--wide {
		grid-column: auto;
	}

	.cgreen-project__outcome {
		margin-top: 72px;
		padding: 96px 0;
	}

	.cgreen-project__next {
		padding: 120px 0;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.site-footer__menu {
		flex-wrap: wrap;
		row-gap: 12px;
	}
}

@media (max-width: 640px) {
	.cgreen-shell {
		padding-inline: 20px;
	}

	.cgreen-portfolio-filters__list {
		gap: 10px;
		padding-bottom: 2px;
	}

	.cgreen-portfolio-filters__link {
		min-height: 40px;
		padding-inline: 16px;
	}

	.cgreen-section {
		padding-top: 72px;
	}

	.cgreen-section--hero {
		padding-top: 28px;
	}

	.cgreen-section--about-hero {
		padding: 84px 0 56px;
	}

	.cgreen-about-hero {
		gap: 36px;
	}

	.cgreen-about-hero__title {
		max-width: none;
		font-size: clamp(3rem, 15vw, 4.85rem);
	}

	.cgreen-about-hero__intro {
		font-size: 16px;
		line-height: 1.65;
	}

	.cgreen-about-hero__philosophy {
		padding: 24px;
	}

	.cgreen-about-hero__philosophy-quote {
		font-size: 18px;
	}

	.cgreen-about-hero__media {
		display: flex;
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	.cgreen-section--services-hero {
		padding: 76px 0 56px;
	}

	.cgreen-projects-hero {
		padding: 84px 0 36px;
	}

	.cgreen-projects-hero__title {
		max-width: none;
		font-size: clamp(2.8rem, 13vw, 4.6rem);
	}

	.cgreen-projects-hero__description {
		font-size: 16px;
		line-height: 1.65;
	}

	.cgreen-projects-hero__meta {
		gap: 12px;
		padding-top: 16px;
	}

	.cgreen-projects-hero__filters {
		margin-top: 28px;
	}

	.cgreen-contact-heading__title {
		font-size: clamp(3rem, 14vw, 4.8rem);
	}

	.cgreen-contact-heading__description {
		font-size: 16px;
		line-height: 1.65;
	}

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

	.cgreen-contact-card__title {
		font-size: 28px;
	}

	.cgreen-contact-method__value {
		font-size: 21px;
		white-space: normal;
	}

	.cgreen-contact-form-card {
		padding: 24px;
	}

	.cgreen-faq-hero .cgreen-section-heading__title {
		max-width: none;
		font-size: clamp(3rem, 14vw, 4.8rem);
	}

	.cgreen-faq-hero .cgreen-section-heading__description {
		font-size: 16px;
		line-height: 1.65;
	}

	.cgreen-faq-heading__description {
		font-size: 16px;
		line-height: 1.65;
	}

	.cgreen-faq-list-section {
		padding-bottom: 104px;
	}

	.cgreen-faq-item__summary {
		gap: 16px;
		padding: 24px 0;
	}

	.cgreen-faq-item__question {
		max-width: none;
		font-size: 1.35rem;
		line-height: 1.18;
	}

	.cgreen-faq-item__answer {
		padding: 0 0 28px;
		font-size: 15px;
	}

	.cgreen-section--services-hero::before {
		inset: -64px -12% 0;
	}

	.cgreen-services-hero__title {
		max-width: none;
		font-size: clamp(3.1rem, 15vw, 4.85rem);
	}

	.cgreen-services-hero__description {
		font-size: 16px;
		line-height: 1.65;
	}

	.cgreen-section--services-grid {
		padding: 72px 0 80px;
	}

	.cgreen-section--services-grid .cgreen-section-stack {
		gap: 36px;
	}

	.cgreen-section--services-grid .cgreen-section-heading__description {
		max-width: 22rem;
	}

	.cgreen-section--services-grid .cgreen-section-heading__title,
	.cgreen-services-methodology__title {
		font-size: clamp(2.6rem, 11vw, 3.4rem);
	}

	.cgreen-service-panel-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cgreen-service-panel {
		padding: 24px;
	}

	.cgreen-service-panel__body {
		gap: 16px;
		padding-top: 24px;
	}

	.cgreen-service-panel__title {
		font-size: 24px;
	}

	.cgreen-section--services-methodology {
		padding: 80px 0 104px;
	}

	.cgreen-services-methodology__description,
	.cgreen-services-methodology__step-description {
		font-size: 14px;
	}

	.cgreen-services-methodology__image,
	.cgreen-services-methodology__image-placeholder {
		min-height: 420px;
	}

	.cgreen-services-methodology__quote {
		position: static;
		max-width: none;
		margin-top: 16px;
		padding: 24px;
	}

	.cgreen-services-methodology__quote p {
		font-size: 20px;
	}

	.cgreen-about-hero__portrait-stage,
	.cgreen-about-hero__proof {
		max-width: none;
		width: 100%;
	}

	.cgreen-about-hero__badge {
		position: static;
		padding: 24px 26px;
	}

	.cgreen-about-hero__badge-value {
		font-size: 36px;
	}

	.cgreen-section--process {
		padding: 88px 0 80px;
	}

	.cgreen-section--testimonial-spotlight {
		padding-top: 88px;
	}

	.cgreen-section--process .cgreen-section-stack {
		gap: 48px;
	}

	.cgreen-section--process .cgreen-section-heading__title {
		font-size: 32px;
	}

	.cgreen-process-step {
		gap: 14px;
	}

	.cgreen-process-step__number {
		font-size: 42px;
	}

	.cgreen-section--logo-showcase {
		padding-top: 72px;
	}

	.cgreen-hero__content {
		gap: 32px;
	}

	.cgreen-section--hero::before {
		inset: -120px -10% -40px;
	}

	.cgreen-section--hero::after {
		inset: -24% -16% -16%;
		filter: blur(36px);
	}

	.cgreen-hero__title {
		font-size: clamp(3rem, 16vw, 4.5rem);
		max-width: 9ch;
	}

	.cgreen-hero__description {
		font-size: 16px;
		line-height: 26px;
	}

	.cgreen-hero__proof {
		margin-top: 4px;
		padding-bottom: 36px;
	}

	.cgreen-portfolio-grid__header,
	.cgreen-portfolio-rail__header,
	.cgreen-portfolio-card__meta,
	.cgreen-cta__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.cgreen-portfolio-rail {
		margin-top: 48px;
	}

	.site-main--home .cgreen-portfolio-grid {
		margin-top: 40px;
		padding: 104px 0 96px;
	}

	.site-main--home .cgreen-portfolio-grid__title {
		max-width: none;
	}

	.cgreen-project__hero {
		padding-bottom: 56px;
	}

	.cgreen-project__title {
		max-width: none;
		font-size: clamp(2.85rem, 16vw, 4.5rem);
	}

	.cgreen-project__hero-media {
		padding-top: 20px;
	}

	.cgreen-project__details {
		padding-top: 48px;
	}

	.cgreen-project__overview-copy {
		font-size: 1.05rem;
		line-height: 1.75;
	}

	.cgreen-project__gallery-section {
		padding-top: 40px;
	}

	.cgreen-project__outcome {
		margin-top: 56px;
		padding: 72px 0;
	}

	.cgreen-project__outcome-copy {
		font-size: clamp(2rem, 10vw, 2.75rem);
		line-height: 1.02;
	}

	.cgreen-project__next {
		padding: 88px 0 96px;
	}

	.cgreen-project__next-title {
		font-size: clamp(2.2rem, 12vw, 3rem);
	}

	.site-main--home .cgreen-portfolio-card--featured .cgreen-portfolio-card__image {
		aspect-ratio: 4 / 3;
	}

	.site-main--home .cgreen-portfolio-card--featured .cgreen-portfolio-card__title {
		max-width: 15ch;
		font-size: 1.75rem;
		line-height: 1.06;
	}

	.site-main--home .cgreen-portfolio-rail__viewport {
		margin-inline: -20px;
		padding-inline: 20px;
		mask-image: none;
	}

	.cgreen-portfolio-rail__track {
		padding-right: 0;
	}

	.cgreen-portfolio-card--compact {
		flex-basis: min(84vw, 320px);
	}

	.cgreen-portfolio-grid__secondary {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 56px;
		padding-top: 24px;
	}

	.cgreen-cta {
		align-items: flex-start;
		text-align: left;
	}

	.cgreen-cta__title {
		max-width: 9ch;
	}

	.cgreen-proof__rail {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cgreen-hero__proof {
		padding-bottom: 28px;
	}

	.cgreen-client-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.cgreen-client-marquee__lane {
		gap: 14px;
		padding-right: 14px;
	}

	.cgreen-client-marquee__item {
		min-width: 128px;
		min-height: 56px;
		padding: 14px 18px;
	}

	.cgreen-client-marquee__image {
		max-width: 94px;
		max-height: 22px;
	}

	.cgreen-contact-card {
		padding: 28px;
	}
}