/**
 * GreenyFox base styles.
 *
 * Local Manrope and Inter font files will be added under assets/fonts/ after
 * file formats and licensing are verified. System fallbacks are active now.
 */

:root {
	--greenyfox-header-height: 5.5rem;
	--greenyfox-focus-ring: 0 0 0 3px rgba(145, 223, 40, 0.4);
	--greenyfox-transition: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
}

html.has-mobile-menu,
body.menu-open {
	overflow: hidden;
}

body {
	margin: 0;
	overflow-x: clip;
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
	color: var(--wp--preset--color--body-dark, #203129);
	font-family: var(--wp--preset--font-family--inter, Inter, Arial, sans-serif);
	font-size: 1rem;
	line-height: 1.6;
}

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

a {
	color: var(--wp--preset--color--deep-green, #052d22);
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--wp--preset--color--darkest-green, #021b15);
}

button,
a {
	transition: color var(--greenyfox-transition), background-color var(--greenyfox-transition), border-color var(--greenyfox-transition), opacity var(--greenyfox-transition);
}

:focus-visible {
	outline: 2px solid var(--wp--preset--color--grass-green, #91df28);
	outline-offset: 3px;
	box-shadow: var(--greenyfox-focus-ring);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	line-height: 1.15;
}

.site-container {
	width: min(calc(100% - 2rem), var(--wp--style--global--wide-size, 1280px));
	margin-inline: auto;
}

.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;
}

.screen-reader-text:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--wp--preset--color--white, #fff);
	color: var(--wp--preset--color--darkest-green, #021b15);
	font-weight: 700;
	white-space: normal;
}

/* Header and desktop navigation. */
.site-header {
	position: fixed;
	top: var(--greenyfox-admin-bar-offset, 0px);
	right: 0;
	left: 0;
	z-index: 9000;
	width: 100%;
	min-height: var(--greenyfox-header-height);
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
	transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header--home {
	background: linear-gradient(180deg, rgba(2, 27, 21, 0.82) 0%, rgba(2, 27, 21, 0) 100%);
}

.site-header--home.is-scrolled {
	background: rgba(5, 45, 34, 0.98);
	box-shadow: 0 0.5rem 2rem rgba(2, 27, 21, 0.18);
}

.admin-bar .site-header {
	top: var(--greenyfox-admin-bar-offset, 32px);
}

.site-header-spacer {
	height: var(--greenyfox-header-height);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--greenyfox-header-height);
	gap: 2rem;
}

.site-branding--header {
	display: flex;
	align-items: center;
	min-width: clamp(9.75rem, 13vw, 11.25rem);
}

.brand-mark,
.brand-mark__link {
	display: inline-flex;
	align-items: center;
}

.brand-mark__link {
	border-radius: 0.25rem;
	line-height: 0;
}

.brand-logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}

.brand-logo--horizontal {
	aspect-ratio: 1814 / 867;
	object-fit: contain;
}

.brand-mark--header .brand-logo {
	width: clamp(9.75rem, 12vw, 11.25rem);
}

.brand-mark--mobile .brand-logo {
	width: 11rem;
}

.brand-mark--footer .brand-logo {
	width: clamp(12rem, 15vw, 14rem);
}

.site-header__desktop-controls {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
}

.site-navigation__menu,
.footer-navigation__menu,
.mobile-navigation__menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-navigation__menu {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.75rem);
}

.site-navigation a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	color: var(--wp--preset--color--white, #fff);
	font-size: 0.875rem;
	font-weight: 650;
	text-decoration: none;
}

.site-navigation a::after {
	position: absolute;
	right: 50%;
	bottom: 0.25rem;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--wp--preset--color--grass-green, #91df28);
	content: "";
	transform: translateX(50%);
	transition: width var(--greenyfox-transition);
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation .current-menu-item > a,
.site-navigation .current_page_item > a {
	color: var(--wp--preset--color--grass-green-highlight, #a8eb32);
}

.site-navigation .current-menu-item > a::after,
.site-navigation .current_page_item > a::after,
.site-navigation a[aria-current="page"]::after {
	width: 1.35rem;
}

.site-navigation-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.875rem;
	height: 2.875rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: transparent;
	color: var(--wp--preset--color--white, #fff);
	cursor: pointer;
}

.site-navigation-toggle__lines {
	display: grid;
	width: 1.1rem;
	gap: 0.25rem;
}

.site-navigation-toggle__lines span {
	display: block;
	height: 1px;
	background: currentcolor;
}

/* Language switchers. */
.language-switcher {
	position: relative;
}

.language-switcher__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4rem;
	min-height: 2.75rem;
	gap: 0.55rem;
	padding: 0.35rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 999px;
	background: rgba(2, 27, 21, 0.18);
	color: var(--wp--preset--color--white, #fff);
	font: inherit;
	font-size: 0.8rem;
	font-weight: 750;
	cursor: pointer;
}

.language-switcher__trigger--static {
	cursor: default;
}

.language-switcher__trigger[aria-expanded="true"] {
	border-color: var(--wp--preset--color--grass-green, #91df28);
	background: var(--wp--preset--color--darkest-green, #021b15);
}

.language-switcher__arrow {
	width: 0.4rem;
	height: 0.4rem;
	border-right: 1px solid currentcolor;
	border-bottom: 1px solid currentcolor;
	transform: rotate(45deg) translateY(-0.15rem);
	transition: transform var(--greenyfox-transition);
}

.language-switcher__trigger[aria-expanded="true"] .language-switcher__arrow {
	transform: rotate(225deg) translate(-0.1rem, -0.1rem);
}

.language-switcher__panel {
	position: absolute;
	top: calc(100% + 0.75rem);
	right: 0;
	z-index: 20;
	width: min(24rem, calc(100vw - 2rem));
	padding: 1.25rem;
	border: 1px solid rgba(145, 223, 40, 0.24);
	border-radius: 1rem;
	background: var(--wp--preset--color--darkest-green, #021b15);
	box-shadow: 0 1rem 3rem rgba(2, 27, 21, 0.32);
	color: var(--wp--preset--color--white, #fff);
}

.language-switcher__panel[hidden] {
	display: none;
}

.language-switcher__title {
	margin: 0 0 0.8rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.language-switcher__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.25rem 0.75rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.language-switcher__list button {
	width: 100%;
	padding: 0.5rem 0.6rem;
	border: 0;
	border-radius: 0.4rem;
	background: transparent;
	color: var(--wp--preset--color--white, #fff);
	font: inherit;
	font-size: 0.875rem;
	text-align: left;
	cursor: pointer;
}

.language-switcher__list button:hover,
.language-switcher__list button:focus-visible,
.language-switcher__list button[aria-current="true"] {
	background: rgba(145, 223, 40, 0.13);
	color: var(--wp--preset--color--grass-green-highlight, #a8eb32);
}

/* Mobile navigation overlay. */
.mobile-menu[hidden] {
	display: none;
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 11000;
}

.mobile-menu__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 27, 21, 0.78);
	opacity: 0;
	transition: opacity var(--greenyfox-transition);
}

.mobile-menu__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	height: 100svh;
	padding: max(1rem, env(safe-area-inset-top)) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
	opacity: 0;
	transform: translateY(-0.5rem);
	transition: opacity var(--greenyfox-transition), transform var(--greenyfox-transition);
}

.mobile-menu.is-open .mobile-menu__backdrop,
.mobile-menu.is-open .mobile-menu__panel {
	opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
	transform: translateY(0);
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 3.5rem;
}

.mobile-menu__close {
	position: relative;
	width: 2.875rem;
	height: 2.875rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: transparent;
	color: var(--wp--preset--color--white, #fff);
	cursor: pointer;
}

.mobile-menu__close span::before,
.mobile-menu__close span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.15rem;
	height: 1px;
	background: currentcolor;
	content: "";
}

.mobile-menu__close span::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-navigation {
	display: flex;
	align-items: center;
	flex: 1;
	padding-block: 2rem;
}

.mobile-navigation__menu {
	display: grid;
	width: 100%;
	gap: 0.35rem;
}

.mobile-navigation a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 0.55rem;
	color: var(--wp--preset--color--white, #fff);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: clamp(1.7rem, 8vw, 2.6rem);
	font-weight: 700;
	line-height: 1.12;
	text-decoration: none;
}

.mobile-navigation .current-menu-item > a,
.mobile-navigation .current_page_item > a,
.mobile-navigation a[aria-current="page"] {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.mobile-menu__language {
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* Shared interior page foundations. */
.site-main {
	min-height: calc(100vh - 13rem);
	padding-block: clamp(3rem, 8vw, 7rem);
}

.site-main--front-page {
	min-height: 0;
	padding: 0;
}

.site-main--front-page [id] {
	scroll-margin-top: calc(var(--greenyfox-header-height) + var(--greenyfox-admin-bar-offset, 0px) + 1.5rem);
}

body.admin-bar .site-main [id] {
	scroll-margin-top: calc(var(--greenyfox-header-height) + var(--greenyfox-admin-bar-offset, 32px) + 1.5rem);
}

.page-header,
.development-placeholder,
.error-404 {
	max-width: var(--wp--style--global--content-size, 760px);
}

.page-title {
	margin: 0;
	font-size: clamp(2.25rem, 6vw, 4.5rem);
}

.development-placeholder,
.error-404 {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	margin-top: 2rem;
	border: 1px dashed var(--wp--preset--color--muted, #6e7b74);
	border-radius: 1rem;
	background: var(--wp--preset--color--white, #fff);
}

.development-placeholder h2 {
	margin-top: 0;
	font-size: 1.25rem;
}

.development-placeholder p,
.error-404 p {
	color: var(--wp--preset--color--muted, #6e7b74);
}

.error-404 {
	margin-top: 0;
}

.error-404__code {
	margin: 0;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: clamp(3rem, 10vw, 7rem);
	font-weight: 800;
	line-height: 1;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0.8rem 1.5rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--darkest-green, #021b15);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.button:hover {
	background: var(--wp--preset--color--grass-green-highlight, #a8eb32);
	color: var(--wp--preset--color--darkest-green, #021b15);
}

.button--secondary {
	border-color: rgba(255, 255, 255, 0.62);
	background: rgba(2, 27, 21, 0.2);
	color: var(--wp--preset--color--white, #fff);
}

.button--secondary:hover {
	border-color: var(--wp--preset--color--white, #fff);
	background: rgba(255, 255, 255, 0.1);
	color: var(--wp--preset--color--white, #fff);
}

/* Home Hero. */
.home-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: max(42rem, 100vh);
	min-height: max(42rem, 100svh);
	overflow: hidden;
	background: var(--wp--preset--color--darkest-green, #021b15);
	color: var(--wp--preset--color--white, #fff);
}

.home-hero__media,
.home-hero__scrim {
	position: absolute;
	inset: 0;
}

.home-hero__media {
	z-index: -3;
	background:
		radial-gradient(circle at 78% 45%, rgba(145, 223, 40, 0.12), transparent 28%),
		linear-gradient(115deg, #052d22 0%, #06382a 42%, #021b15 100%);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.home-hero--has-desktop-media .home-hero__media {
		background-image: linear-gradient(90deg, rgba(2, 27, 21, 0.88) 0%, rgba(2, 27, 21, 0.48) 48%, rgba(2, 27, 21, 0.16) 100%), var(--greenyfox-hero-desktop);
	}
}

.home-hero__scrim {
	z-index: -2;
	background: linear-gradient(180deg, rgba(2, 27, 21, 0.12) 55%, rgba(2, 27, 21, 0.72) 100%);
}

.home-hero__inner {
	display: flex;
	align-items: center;
	padding-top: calc(var(--greenyfox-header-height) + 3.5rem);
	padding-bottom: 6rem;
}

.home-hero__content {
	width: min(58%, 46rem);
}

.home-hero__eyebrow {
	margin: 0 0 1.25rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.home-hero__title {
	margin: 0;
	color: var(--wp--preset--color--white, #fff);
	font-size: clamp(3rem, 5.5vw, 5.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.home-hero__title-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.08em;
}

.home-hero__title-line > span {
	display: block;
}

.home-hero__title strong {
	color: var(--wp--preset--color--grass-green, #91df28);
	font-weight: inherit;
}

.home-hero__copy {
	max-width: 42.5rem;
	margin: 1.75rem 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
	line-height: 1.55;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.home-hero__replay {
	padding: 0.35rem 0;
	margin-top: 1.65rem;
	margin-left: clamp(1.5rem, 2.5vw, 2.5rem);
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: rgba(255, 255, 255, 0.58);
	font: inherit;
	font-size: 0.72rem;
	cursor: pointer;
}

.home-hero__replay:hover {
	color: var(--wp--preset--color--white, #fff);
}

.home-hero__scroll-cue {
	position: absolute;
	right: clamp(1rem, 4vw, 3rem);
	bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.65rem;
	font-weight: 750;
	letter-spacing: 0.14em;
}

.home-hero__scroll-line {
	display: block;
	width: 2.5rem;
	height: 1px;
	background: var(--wp--preset--color--grass-green, #91df28);
}

/* First-session sonar identity reveal, approximately 2.8 seconds. */
.gf-intro {
	position: fixed;
	inset: 0;
	z-index: 100000;
	width: 100%;
	height: 100vh;
	height: 100svh;
	min-height: 100dvh;
	overflow: hidden;
	overflow: clip;
	background: var(--wp--preset--color--darkest-green, #021b15);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.gf-intro::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse at 50% 48%, rgba(10, 66, 50, 0.72) 0%, rgba(5, 45, 34, 0.68) 45%, rgba(2, 27, 21, 0.38) 76%, rgba(1, 20, 15, 0.58) 100%),
		linear-gradient(180deg, #03271e 0%, #052d22 52%, #021b15 100%);
	content: "";
	opacity: 0;
}

.gf-intro[hidden] {
	display: none;
}

.gf-intro.is-complete {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.greenyfox-intro-pending .gf-intro {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	animation: gf-intro-failsafe 1ms linear 3s forwards;
}

.gf-intro__composition {
	position: absolute;
	top: 48.5%;
	left: 50%;
	z-index: 1;
	width: clamp(17.5rem, 34vw, 31.25rem);
	aspect-ratio: 1814 / 867;
	transform: translate3d(-50%, -50%, 0);
}

.gf-intro__brand {
	position: relative;
	z-index: 3;
	width: 100%;
	clip-path: ellipse(0% 0% at 50% 90%);
}

.gf-intro__brand .brand-logo {
	display: block;
	width: 100%;
	height: auto;
}

.gf-intro__sonar {
	position: absolute;
	top: 90%;
	left: 50%;
	z-index: 1;
	display: block;
	width: clamp(42rem, 62vw, 72rem);
	height: auto;
	overflow: visible;
	transform: translate3d(-50%, -92.857%, 0);
	pointer-events: none;
}

.gf-intro__arc {
	--gf-intro-arc-opacity: 0.15;

	fill: none;
	stroke: var(--wp--preset--color--grass-green, #91df28);
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	stroke-linecap: round;
	stroke-width: 1px;
	transform: scale(0.02);
	transform-box: view-box;
	transform-origin: 50% 92.857%;
	vector-effect: non-scaling-stroke;
	opacity: 0;
}

.gf-intro__arc--middle {
	--gf-intro-arc-opacity: 0.24;

	stroke-width: 1.1px;
}

.gf-intro__arc--outer {
	--gf-intro-arc-opacity: 0.92;

	stroke-width: 1.35px;
	filter: drop-shadow(0 0 0.18rem rgba(145, 223, 40, 0.2));
}

.gf-intro__origin {
	position: absolute;
	top: 90%;
	left: 50%;
	z-index: 4;
	width: 0.3125rem;
	height: 0.3125rem;
	border-radius: 50%;
	background: var(--wp--preset--color--grass-green, #91df28);
	box-shadow: 0 0 0.5rem rgba(145, 223, 40, 0.28);
	transform: translate3d(-50%, -50%, 0) scale(0.2);
	opacity: 0;
}

.greenyfox-intro-playing .gf-intro {
	animation:
		gf-intro-layer-out 620ms ease 2180ms forwards,
		gf-intro-failsafe 1ms linear 3s forwards;
	will-change: opacity;
}

.greenyfox-intro-playing .gf-intro::before {
	animation: gf-intro-background-in 250ms ease-out forwards;
}

.greenyfox-intro-playing .gf-intro__brand {
	animation: gf-intro-logo-scan 1050ms linear 550ms forwards;
	will-change: clip-path;
}

.greenyfox-intro-playing .gf-intro__arc--inner {
	animation: gf-intro-arc-expand 600ms cubic-bezier(0.33, 0, 0.2, 1) 400ms forwards;
}

.greenyfox-intro-playing .gf-intro__arc--middle {
	animation: gf-intro-arc-expand 750ms cubic-bezier(0.33, 0, 0.2, 1) 500ms forwards;
}

.greenyfox-intro-playing .gf-intro__arc--outer {
	animation: gf-intro-arc-expand 930ms cubic-bezier(0.33, 0, 0.2, 1) 620ms forwards;
}

.greenyfox-intro-playing .gf-intro__sonar {
	animation: gf-intro-signal-out 240ms ease 2100ms forwards;
}

.greenyfox-intro-playing .gf-intro__origin {
	animation:
		gf-intro-origin-in 250ms ease-out 250ms forwards,
		gf-intro-signal-out 240ms ease 2100ms forwards;
}

html.greenyfox-intro-active,
body.greenyfox-intro-active {
	overflow: hidden;
	animation: gf-intro-scroll-failsafe 1ms linear 3s forwards;
}

body.greenyfox-intro-active {
	padding-right: var(--greenyfox-intro-scrollbar, 0px);
}

@keyframes gf-intro-background-in {
	to {
		opacity: 1;
	}
}

@keyframes gf-intro-origin-in {
	to {
		transform: translate3d(-50%, -50%, 0) scale(1);
		opacity: 1;
	}
}

@keyframes gf-intro-arc-expand {
	to {
		stroke-dashoffset: 0;
		transform: scale(1);
		opacity: var(--gf-intro-arc-opacity);
	}
}

@keyframes gf-intro-logo-scan {
	to {
		clip-path: ellipse(90% 130% at 50% 90%);
	}
}

@keyframes gf-intro-signal-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes gf-intro-layer-out {
	to {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

@keyframes gf-intro-failsafe {
	to {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

@keyframes gf-intro-scroll-failsafe {
	to {
		overflow-x: clip;
		overflow-y: auto;
		padding-right: 0;
	}
}

/* Home content sections. */
.home-section {
	padding-block: clamp(5rem, 8.5vw, 8.5rem);
}

.home-section__eyebrow {
	margin: 0 0 1.15rem;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.home-section__title {
	max-width: 15ch;
	margin: 0;
	font-size: clamp(2.5rem, 5vw, 5rem);
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.home-section p {
	font-size: clamp(1rem, 1.25vw, 1.125rem);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.48);
	background: transparent;
	color: var(--wp--preset--color--white, #fff);
}

.button--outline:hover {
	border-color: var(--wp--preset--color--grass-green, #91df28);
	background: var(--wp--preset--color--grass-green, #91df28);
}

.button--dark {
	border-color: var(--wp--preset--color--darkest-green, #021b15);
	background: var(--wp--preset--color--darkest-green, #021b15);
	color: var(--wp--preset--color--white, #fff);
}

.button--dark:hover {
	border-color: var(--wp--preset--color--deep-green, #052d22);
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--grass-green-highlight, #a8eb32);
}

.has-js [data-reveal] {
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 600ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-js [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Brand positioning. */
.home-brand-intro {
	background: #f2ede3;
}

.home-brand-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
	align-items: center;
	gap: clamp(3rem, 6vw, 6rem);
}

.home-brand-intro__copy > p:not(.home-section__eyebrow) {
	max-width: 35rem;
	margin: 1.75rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.home-brand-intro__copy .home-brand-intro__statement {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(5, 45, 34, 0.18);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-weight: 750;
}

.home-brand-intro__visual {
	min-width: 0;
	background: transparent;
}

.home-brand-intro__visual.is-placeholder {
	min-height: clamp(25rem, 45vw, 39rem);
	background: #f2ede3;
}

.home-brand-intro__three-view {
	display: block;
	width: 100%;
}

.home-brand-intro__three-view img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* Design principles. */
.home-design-principles {
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.home-design-principles__header {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
	align-items: end;
	gap: clamp(2rem, 8vw, 8rem);
}

.home-design-principles .home-section__title {
	color: var(--wp--preset--color--white, #fff);
}

.home-design-principles__header p {
	max-width: 35rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
}

.home-design-principles__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.75rem, 4vw, 4rem);
	padding: clamp(3.5rem, 5vw, 5rem) 0 0;
	margin: 0;
	list-style: none;
}

.home-design-principles__list li {
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.home-design-principles__list li:nth-child(2) {
	transition-delay: 90ms;
}

.home-design-principles__list li:nth-child(3) {
	transition-delay: 180ms;
}

.home-design-principles__number {
	display: block;
	margin-bottom: clamp(2.5rem, 4vw, 4rem);
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.15em;
}

.home-design-principles__list h3 {
	margin: 0 0 1rem;
	color: var(--wp--preset--color--white, #fff);
	font-size: clamp(1.4rem, 2vw, 2rem);
}

.home-design-principles__list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 1rem;
}

/* Product film. */
.home-product-film {
	background: var(--wp--preset--color--white, #fff);
}

.home-product-film__header {
	display: grid;
	grid-template-columns: minmax(0, 1.38fr) minmax(18rem, 1fr);
	align-items: end;
	gap: clamp(2rem, 5vw, 5rem);
	margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.home-product-film__header p {
	position: relative;
	max-width: 26.875rem;
	padding-top: 1.25rem;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.home-product-film__header p::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 3rem;
	height: 2px;
	background: var(--wp--preset--color--grass-green, #91df28);
	content: "";
}

.home-product-film__frame {
	position: relative;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	border-radius: 0.35rem;
	background-color: var(--wp--preset--color--deep-green, #052d22);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (min-width: 768px) {
	.home-product-film__frame--has-desktop-poster {
		background-image: var(--greenyfox-home-motion-desktop-poster);
	}
}

.home-product-film__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}

.home-product-film__frame.is-playing .home-product-film__video {
	opacity: 1;
}

/* Product platform preview. */
.home-platform-preview {
	background: var(--wp--preset--color--darkest-green, #021b15);
	color: var(--wp--preset--color--white, #fff);
}

.home-platform-preview .home-section__eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.home-platform-preview .home-section__title {
	max-width: 18ch;
	color: var(--wp--preset--color--white, #fff);
}

.home-platform-preview__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: clamp(4rem, 5vw, 5rem) 0 0;
	margin: 0;
	list-style: none;
}

.home-platform-preview__list li {
	min-height: 20rem;
	padding: 1.5rem clamp(1.25rem, 2.4vw, 2.5rem);
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-platform-preview__list li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.home-platform-preview__list li:nth-child(2) {
	transition-delay: 70ms;
}

.home-platform-preview__list li:nth-child(3) {
	transition-delay: 140ms;
}

.home-platform-preview__list li:nth-child(4) {
	transition-delay: 210ms;
}

.home-platform-preview__number {
	display: block;
	margin-bottom: clamp(3.5rem, 5vw, 5rem);
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.home-platform-preview__list h3 {
	margin: 0 0 0.9rem;
	color: var(--wp--preset--color--white, #fff);
	font-size: clamp(1.25rem, 1.7vw, 1.75rem);
}

.home-platform-preview__list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.95rem;
}

.home-platform-preview__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-top: 2rem;
}

.home-platform-preview__note {
	max-width: 46rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.82rem;
}

/* Co-creation preview. */
.home-co-creation-preview {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.home-co-creation-preview__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
	align-items: center;
	gap: clamp(4rem, 7vw, 7rem);
}

.home-co-creation-preview__copy > p:not(.home-section__eyebrow) {
	max-width: 42rem;
	margin: 1.75rem 0 2.25rem;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.home-co-creation-preview__values {
	padding: 0;
	margin: 0;
	list-style: none;
}

.home-co-creation-preview__values li {
	display: grid;
	grid-template-columns: 3rem 1fr;
	align-items: start;
	gap: 1rem;
	padding: clamp(1.75rem, 2.5vw, 2.25rem) 0;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
}

.home-co-creation-preview__values li:last-child {
	border-bottom: 1px solid rgba(5, 45, 34, 0.2);
}

.home-co-creation-preview__values li:nth-child(2) {
	transition-delay: 90ms;
}

.home-co-creation-preview__values li:nth-child(3) {
	transition-delay: 180ms;
}

.home-co-creation-preview__values span {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.home-co-creation-preview__values h3 {
	margin: 0;
	font-size: clamp(1.625rem, 2vw, 1.875rem);
}

.home-co-creation-preview__values p {
	max-width: 42rem;
	margin: 0.7rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: clamp(0.875rem, 1vw, 0.9375rem);
	line-height: 1.56;
}

/* Closing contact strip. */
.home-contact-strip {
	padding-block: clamp(3.5rem, 5vw, 5rem);
	background: var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--darkest-green, #021b15);
}

.home-contact-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(2rem, 7vw, 7rem);
}

.home-contact-strip h2 {
	margin: 0;
	font-size: clamp(2.5rem, 5.5vw, 5.5rem);
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.home-contact-strip p {
	max-width: 40rem;
	margin: 1.25rem 0 0;
	font-size: clamp(1rem, 1.25vw, 1.125rem);
}

.home-contact-strip__actions {
	display: grid;
	flex: 0 0 auto;
	min-width: clamp(15rem, 20vw, 18rem);
	gap: 1rem;
	justify-items: stretch;
	margin-left: auto;
}

.home-contact-strip__actions .button {
	width: 100%;
}

.home-contact-strip__email {
	display: block;
	width: 100%;
	color: var(--wp--preset--color--darkest-green, #021b15);
	font-size: 0.9rem;
	font-weight: 750;
	text-align: center;
}

/* Products concept page. */
.site-main--products {
	min-height: 0;
	padding: 0;
}

[data-products-section] {
	scroll-margin-top: calc(var(--greenyfox-header-height) + 1.5rem);
}

.products-section {
	padding-block: clamp(5.5rem, 9vw, 9rem);
}

.products-section__eyebrow {
	margin: 0 0 1.15rem;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.products-section__title {
	max-width: 15ch;
	margin: 0;
	font-size: clamp(2.65rem, 5.2vw, 5.25rem);
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.products-section p {
	font-size: clamp(1rem, 1.2vw, 1.125rem);
}

/* Products Hero. */
.products-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: calc(100vh - var(--greenyfox-header-height));
	min-height: calc(100svh - var(--greenyfox-header-height));
	overflow: hidden;
	background: var(--wp--preset--color--darkest-green, #021b15);
	color: var(--wp--preset--color--white, #fff);
}

.products-hero__media,
.products-hero__scrim {
	position: absolute;
	inset: 0;
}

.products-hero__media {
	z-index: -2;
	overflow: hidden;
	background:
		radial-gradient(circle at 76% 36%, rgba(145, 223, 40, 0.17), transparent 23%),
		linear-gradient(132deg, #052d22 0%, #073a2d 44%, #021b15 100%);
	background-position: center;
	background-size: cover;
}

.products-hero__media picture,
.products-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
}

.products-hero__media img {
	object-fit: cover;
	object-position: center right;
}

.products-hero__scrim {
	z-index: -1;
	background: linear-gradient(90deg, rgba(2, 27, 21, 0.96) 0%, rgba(2, 27, 21, 0.76) 44%, rgba(2, 27, 21, 0.16) 76%, rgba(2, 27, 21, 0.36) 100%);
}

.products-hero__waterline {
	position: absolute;
	right: -8%;
	left: 34%;
	height: 8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
}

.products-hero__waterline--one {
	top: 54%;
	transform: rotate(-2deg);
}

.products-hero__waterline--two {
	top: 66%;
	opacity: 0.72;
	transform: rotate(2deg);
}

.products-hero__waterline--three {
	top: 78%;
	opacity: 0.42;
	transform: rotate(-1deg);
}

.products-hero--has-desktop-media .products-hero__waterline,
.products-hero--has-mobile-media .products-hero__waterline {
	display: none;
}

.products-hero__inner {
	display: flex;
	align-items: center;
	padding-block: clamp(5rem, 10vh, 8rem);
}

.products-hero__content {
	width: min(54%, 43rem);
}

.products-hero .products-section__eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.products-hero__title {
	margin: 0;
	color: var(--wp--preset--color--white, #fff);
	font-size: clamp(3.5rem, 6.3vw, 6.6rem);
	letter-spacing: -0.06em;
	line-height: 0.92;
}

.products-hero__title span {
	display: block;
}

.products-hero__copy {
	max-width: 39rem;
	margin: 1.75rem 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.products-hero__status {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 1.4rem 0 2rem;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.products-hero__status span {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--wp--preset--color--grass-green, #91df28);
}

/* Concept overview. */
.products-concept-overview {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.products-concept-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
	align-items: start;
	gap: clamp(4rem, 10vw, 10rem);
}

.products-concept-overview__header > p:not(.products-section__eyebrow) {
	max-width: 43rem;
	margin: 1.75rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.products-concept-overview__header .products-concept-overview__note {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.88rem;
}

.products-concept-overview__list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.products-concept-overview__list li {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 1.25rem;
	padding: clamp(1.5rem, 2.7vw, 2.25rem) 0;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
}

.products-concept-overview__list li:last-child {
	border-bottom: 1px solid rgba(5, 45, 34, 0.2);
}

.products-concept-overview__list > li > span {
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.13em;
}

.products-concept-overview__list h3 {
	margin: 0 0 0.6rem;
	font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.products-concept-overview__list p {
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.98rem;
}

/* Concept gallery. */
.products-concept-gallery {
	background: var(--wp--preset--color--white, #fff);
}

.products-concept-gallery__header {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
	align-items: end;
	gap: clamp(2rem, 7vw, 7rem);
	margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.products-concept-gallery__header .products-section__eyebrow,
.products-concept-gallery__header .products-section__title {
	grid-column: 1;
}

.products-concept-gallery__header .products-section__title {
	margin-top: -0.25rem;
}

.products-concept-gallery__header > p:last-child {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.products-concept-gallery figure {
	margin: 0;
}

.products-concept-gallery__main {
	margin-left: 0;
}

.products-concept-gallery__media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		linear-gradient(rgba(5, 45, 34, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(5, 45, 34, 0.06) 1px, transparent 1px),
		var(--wp--preset--color--warm-beige, #f4f1e8);
	background-size: 4rem 4rem;
}

.products-concept-gallery__media--main {
	aspect-ratio: 16 / 9;
}

.products-concept-gallery__media img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: contain;
}

.products-concept-gallery__outline {
	position: relative;
	width: 58%;
	height: 18%;
	border: 1px solid rgba(5, 45, 34, 0.32);
	border-radius: 65% 44% 34% 46%;
	transform: skewX(-8deg);
}

.products-concept-gallery__outline::before {
	position: absolute;
	top: -58%;
	left: 34%;
	width: 30%;
	height: 65%;
	border: 1px solid rgba(5, 45, 34, 0.26);
	border-bottom: 0;
	border-radius: 55% 55% 0 0;
	content: "";
}

.products-concept-gallery__outline::after {
	position: absolute;
	right: -14%;
	bottom: -62%;
	left: -14%;
	height: 70%;
	border-top: 1px solid rgba(145, 223, 40, 0.75);
	border-radius: 50%;
	content: "";
}

.products-concept-gallery figcaption {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.9rem;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.products-concept-gallery figcaption span {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.products-concept-gallery__views {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	margin-top: clamp(2rem, 4vw, 3rem);
}

/* Click-to-load concept film. */
.products-film {
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.products-film .products-section__eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.products-film .products-section__title {
	max-width: 18ch;
	color: var(--wp--preset--color--white, #fff);
}

.products-film__header {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.6fr);
	align-items: end;
	gap: 2rem 5rem;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.products-film__header .products-section__eyebrow,
.products-film__header .products-section__title {
	grid-column: 1;
}

.products-film__header > p:last-child {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
}

.products-film__player {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--wp--preset--color--darkest-green, #021b15);
}

.products-film__poster,
.products-film__player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.products-film__poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.products-film__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 27, 21, 0.12), rgba(2, 27, 21, 0.56));
}

.products-film__fallback {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 68% 30%, rgba(145, 223, 40, 0.15), transparent 22%), linear-gradient(145deg, #063c2e, #021b15);
}

.products-film__fallback span {
	position: absolute;
	right: -8%;
	left: -8%;
	height: 8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
}

.products-film__fallback span:first-child {
	top: 50%;
}

.products-film__fallback span:nth-child(2) {
	top: 63%;
	transform: rotate(2deg);
}

.products-film__fallback span:nth-child(3) {
	top: 76%;
	opacity: 0.55;
	transform: rotate(-2deg);
}

.products-film__play-group,
.products-film__pending {
	position: relative;
	z-index: 1;
}

.products-film__play-group {
	display: grid;
	place-items: center;
	gap: 1rem;
	max-width: min(90%, 28rem);
	text-align: center;
}

.products-film__play {
	display: grid;
	place-items: center;
	gap: 1rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--wp--preset--color--white, #fff);
	font: inherit;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.products-film__play-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 5rem;
	height: 5rem;
	border: 1px solid rgba(145, 223, 40, 0.72);
	border-radius: 50%;
	background: rgba(2, 27, 21, 0.76);
	transition: transform var(--greenyfox-transition), background-color var(--greenyfox-transition);
}

.products-film__play-icon::after {
	width: 0;
	height: 0;
	margin-left: 0.25rem;
	border-top: 0.55rem solid transparent;
	border-bottom: 0.55rem solid transparent;
	border-left: 0.85rem solid var(--wp--preset--color--grass-green, #91df28);
	content: "";
}

.products-film__play:hover .products-film__play-icon {
	background: rgba(2, 27, 21, 0.9);
	transform: scale(1.04);
}

.products-film__pending {
	display: grid;
	gap: 0.45rem;
	color: var(--wp--preset--color--white, #fff);
	text-align: center;
}

.products-film__pending strong {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
}

.products-film__pending span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.products-film__privacy-note {
	max-width: 32ch;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.75rem;
	line-height: 1.55;
}

.products-film__player.is-playing .products-film__overlay,
.products-film__player.is-playing .products-film__poster,
.products-film__player.is-playing .products-film__fallback,
.products-film__player.is-playing .products-film__play-group {
	display: none;
}

/* Planned configurations. */
.products-configurations {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.products-configurations__header {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.65fr);
	align-items: end;
	gap: 2rem 6rem;
}

.products-configurations__header .products-section__eyebrow,
.products-configurations__header .products-section__title {
	grid-column: 1;
}

.products-configurations__header .products-section__title {
	max-width: 18ch;
}

.products-configurations__header > p:last-child {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.products-configurations__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: clamp(4rem, 7vw, 7rem) 0 0;
	margin: 0;
	list-style: none;
}

.products-configurations__list li {
	display: flex;
	min-height: 23rem;
	padding: 1.5rem clamp(1.25rem, 2.3vw, 2.5rem) 2rem;
	border-top: 1px solid rgba(5, 45, 34, 0.28);
	border-left: 1px solid rgba(5, 45, 34, 0.14);
	flex-direction: column;
}

.products-configurations__list li:last-child {
	border-right: 1px solid rgba(5, 45, 34, 0.14);
}

.products-configurations__identity {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: clamp(4rem, 7vw, 7rem);
}

.products-configurations__identity span {
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.products-configurations__identity strong {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.products-configurations__list h3 {
	margin: 0 0 0.9rem;
	font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}

.products-configurations__list p {
	margin: 0 0 2rem;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.95rem;
}

.products-configurations__list small {
	margin-top: auto;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.products-configurations__note {
	max-width: 55rem;
	padding-top: 2rem;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.82rem;
}

/* Shared direction lists. */
.products-direction-list {
	padding: 0;
	margin: clamp(3rem, 6vw, 5.5rem) 0 0;
	list-style: none;
}

.products-direction-list li {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 1rem;
	padding: 1.6rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.products-direction-list li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.products-direction-list > li > span {
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.products-direction-list h3 {
	margin: 0 0 0.55rem;
	font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.site-main--products .products-controller .products-direction-list h3 {
	color: #d7e5df;
}

.products-direction-list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

/* Controller direction. */
.products-controller {
	background: var(--wp--preset--color--darkest-green, #021b15);
	color: var(--wp--preset--color--white, #fff);
}

.products-controller__grid {
	display: grid;
	grid-template-columns: minmax(24rem, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(4rem, 9vw, 9rem);
}

.products-controller__content .products-section__eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.products-controller__content .products-section__title {
	color: var(--wp--preset--color--white, #fff);
}

.products-controller__content header > p:last-child {
	max-width: 39rem;
	margin: 1.75rem 0 0;
	color: rgba(255, 255, 255, 0.64);
}

.products-controller__visuals {
	position: relative;
	min-height: clamp(38rem, 55vw, 48rem);
}

.products-controller__figure {
	position: absolute;
	margin: 0;
}

.products-controller__figure--1 {
	top: 0;
	right: 8%;
	left: 0;
}

.products-controller__figure--2 {
	right: 0;
	bottom: 0;
	width: 62%;
}

.products-controller__media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(145deg, #073a2d, #031f18);
}

.products-controller__media img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: contain;
}

.products-controller__figure figcaption,
.products-fish-finder figcaption {
	padding-top: 0.8rem;
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.products-controller__outline {
	position: relative;
	width: 45%;
	aspect-ratio: 0.85;
	border: 1px solid rgba(145, 223, 40, 0.45);
	border-radius: 42% 42% 30% 30%;
	transform: perspective(18rem) rotateX(7deg);
}

.products-controller__outline span {
	position: absolute;
	top: 15%;
	left: 50%;
	width: 56%;
	height: 28%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transform: translateX(-50%);
}

.products-controller__outline i,
.products-controller__outline b {
	position: absolute;
	top: 56%;
	width: 18%;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 50%;
}

.products-controller__outline i {
	left: 19%;
}

.products-controller__outline b {
	right: 19%;
}

/* Fish finder direction. */
.products-fish-finder {
	background: var(--wp--preset--color--white, #fff);
}

.products-fish-finder__header {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
	align-items: end;
	gap: 2rem 6rem;
	margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.products-fish-finder__header .products-section__eyebrow,
.products-fish-finder__header .products-section__title {
	grid-column: 1;
}

.products-fish-finder__header > p:last-child {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.products-fish-finder__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.65fr);
	align-items: end;
	gap: clamp(1.5rem, 4vw, 4rem);
}

.products-fish-finder figure {
	margin: 0;
}

.products-fish-finder__sonar {
	margin-bottom: clamp(2rem, 6vw, 6rem) !important;
}

.products-fish-finder__media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.products-fish-finder__display .products-fish-finder__media {
	aspect-ratio: 16 / 10;
}

.products-fish-finder__media img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: cover;
}

.products-fish-finder figcaption {
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.products-fish-finder__screen {
	position: relative;
	width: 64%;
	aspect-ratio: 16 / 10;
	border: 1px solid rgba(5, 45, 34, 0.42);
	border-radius: 0.75rem;
	background: rgba(5, 45, 34, 0.03);
}

.products-fish-finder__screen::before {
	position: absolute;
	inset: 8%;
	border: 1px solid rgba(5, 45, 34, 0.2);
	content: "";
}

.products-fish-finder__screen span {
	position: absolute;
	right: 10%;
	left: 10%;
	height: 4rem;
	border-top: 1px solid rgba(145, 223, 40, 0.9);
	border-radius: 50%;
}

.products-fish-finder__screen span:first-child {
	top: 43%;
}

.products-fish-finder__screen span:nth-child(2) {
	top: 56%;
	opacity: 0.65;
}

.products-fish-finder__screen span:nth-child(3) {
	top: 69%;
	opacity: 0.35;
}

.products-fish-finder__waves {
	position: relative;
	width: 62%;
	aspect-ratio: 1;
}

.products-fish-finder__waves span {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(5, 45, 34, 0.28);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.products-fish-finder__waves span:first-child {
	width: 36%;
	height: 36%;
}

.products-fish-finder__waves span:nth-child(2) {
	width: 66%;
	height: 66%;
}

.products-fish-finder__waves span:nth-child(3) {
	width: 96%;
	height: 96%;
}

.products-fish-finder__waves i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 50%;
	background: var(--wp--preset--color--grass-green, #91df28);
	transform: translate(-50%, -50%);
}

.products-direction-list--light {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 4vw, 4rem);
	margin-top: clamp(4rem, 7vw, 7rem);
}

.products-direction-list--light li {
	grid-template-columns: 2.5rem 1fr;
	border-color: rgba(5, 45, 34, 0.2);
}

.products-direction-list--light li:last-child {
	border-bottom: 0;
}

.products-direction-list--light p {
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

/* Development path. */
.products-development-status {
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.products-development-status .products-section__eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.products-development-status .products-section__title {
	max-width: 18ch;
	color: var(--wp--preset--color--white, #fff);
}

.products-development-status__header {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.7fr);
	align-items: end;
	gap: 2rem 6rem;
}

.products-development-status__header .products-section__eyebrow,
.products-development-status__header .products-section__title {
	grid-column: 1;
}

.products-development-status__header > p:last-child {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
}

.products-development-status__path {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: clamp(4.5rem, 8vw, 8rem) 0 0;
	margin: 0;
	list-style: none;
}

.products-development-status__path::before {
	position: absolute;
	top: calc(clamp(4.5rem, 8vw, 8rem) + 1rem);
	right: 0;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.22);
	content: "";
}

.products-development-status__path li {
	position: relative;
	padding: 3.25rem clamp(1.25rem, 2.6vw, 2.75rem) 0 0;
}

.products-development-status__marker {
	position: absolute;
	top: 0.65rem;
	left: 0;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 0.75rem;
	height: 0.75rem;
	overflow: visible;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: var(--wp--preset--color--deep-green, #052d22);
	color: transparent;
	font-size: 0;
}

.products-development-status__path .is-current .products-development-status__marker {
	border-color: var(--wp--preset--color--grass-green, #91df28);
	background: var(--wp--preset--color--grass-green, #91df28);
}

.products-development-status__path small {
	color: rgba(255, 255, 255, 0.46);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.products-development-status__path .is-current small {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.products-development-status__path h3 {
	margin: 1rem 0 0.85rem;
	color: var(--wp--preset--color--white, #fff);
	font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

.products-development-status__path p {
	margin: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.94rem;
}

/* Products closing CTA. */
.products-contact {
	padding-block: clamp(3.75rem, 6vw, 6rem);
	background: var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--darkest-green, #021b15);
	scroll-margin-top: calc(var(--greenyfox-header-height) + 1.5rem);
}

.products-contact__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(2rem, 7vw, 7rem);
}

.products-contact h2 {
	max-width: 16ch;
	margin: 0;
	font-size: clamp(2.5rem, 5vw, 5rem);
	letter-spacing: -0.05em;
	line-height: 0.96;
}

.products-contact p {
	max-width: 43rem;
	margin: 1.25rem 0 0;
	font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.products-contact__actions {
	display: grid;
	flex: 0 0 auto;
	gap: 1rem;
	justify-items: start;
}

.products-contact__secondary {
	color: var(--wp--preset--color--darkest-green, #021b15);
	font-size: 0.85rem;
	font-weight: 800;
}

/* Co-Creation editorial partnership dossier. */
.site-main--co-creation {
	--co-creation-grid-gap: clamp(1rem, 2.2vw, 2rem);
	min-height: 0;
	padding: 0;
	overflow: clip;
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.site-main--co-creation [data-co-creation-section] {
	scroll-margin-top: calc(var(--greenyfox-header-height) + var(--wp--preset--spacing--40, 1.5rem));
}

.co-creation-editorial-section {
	padding-block: clamp(5.5rem, 9vw, 9rem);
}

.co-creation-editorial-label,
.co-creation-editorial-eyebrow {
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

/* Editorial intro: deliberately not a full-screen Hero. */
.co-creation-editorial-intro {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4.5rem, 6vw, 6.5rem);
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.co-creation-editorial-intro__layout {
	position: relative;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--co-creation-grid-gap);
}

.co-creation-editorial-intro__layout::before {
	position: absolute;
	top: calc(-1 * clamp(4.5rem, 6vw, 6.5rem));
	bottom: 0;
	left: calc(66.666% + (var(--co-creation-grid-gap) / 2));
	width: 1px;
	background: var(--wp--preset--color--grass-green, #91df28);
	content: "";
}

.co-creation-editorial-intro .co-creation-editorial-label {
	grid-column: 1 / span 4;
	position: relative;
	z-index: 1;
}

.co-creation-editorial-intro__number {
	position: absolute;
	top: -3rem;
	right: -1rem;
	color: rgba(5, 45, 34, 0.055);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: clamp(13rem, 25vw, 24rem);
	font-weight: 800;
	letter-spacing: -0.1em;
	line-height: 0.8;
	pointer-events: none;
}

.co-creation-editorial-intro__title {
	position: relative;
	z-index: 1;
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--co-creation-grid-gap);
	margin: clamp(2.5rem, 4vw, 4rem) 0 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: clamp(4rem, 7vw, 6.5rem);
	letter-spacing: -0.07em;
	line-height: 0.88;
}

.co-creation-editorial-intro__title-group {
	display: grid;
	grid-column: 1 / span 6;
}

.co-creation-editorial-intro__title-group > span {
	display: block;
}

.co-creation-editorial-intro__title-group strong {
	color: var(--wp--preset--color--grass-green, #91df28);
	font-weight: inherit;
}

.co-creation-editorial-intro__title-group--shifted {
	grid-column: 6 / span 7;
	margin-top: clamp(2.5rem, 4vw, 4rem);
}

.co-creation-editorial-intro__aside {
	position: relative;
	z-index: 1;
	grid-column: 9 / span 4;
	padding-top: clamp(2rem, 4vw, 3.5rem);
}

.co-creation-editorial-intro__aside > p {
	margin: 0;
	color: var(--wp--preset--color--body-dark, #203129);
	font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.co-creation-editorial-intro__aside .co-creation-editorial-intro__supporting {
	padding-top: 1.25rem;
	margin-top: 1.25rem;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9rem;
}

.co-creation-editorial-intro__aside .co-creation-editorial-intro__status {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-top: 1.5rem;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.co-creation-editorial-intro__status span {
	flex: 0 0 auto;
	width: 0.48rem;
	height: 0.48rem;
	border-radius: 50%;
	background: var(--wp--preset--color--grass-green, #91df28);
}

/* Shared perspective. */
.co-creation-shared-perspective {
	background: linear-gradient(180deg, rgba(244, 241, 232, 0.74), var(--wp--preset--color--white, #fff) 32%);
}

.co-creation-shared-perspective__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: start;
	column-gap: var(--co-creation-grid-gap);
}

.co-creation-shared-perspective__statement {
	grid-column: 1 / span 8;
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: clamp(3.25rem, 5.5vw, 6.25rem);
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.co-creation-shared-perspective__statement span {
	position: relative;
	display: inline;
	color: var(--wp--preset--color--deep-green, #052d22);
	background-image: linear-gradient(transparent 78%, rgba(145, 223, 40, 0.72) 78%, rgba(145, 223, 40, 0.72) 92%, transparent 92%);
}

.co-creation-shared-perspective__copy {
	grid-column: 9 / span 4;
	padding-top: 0.65rem;
}

.co-creation-shared-perspective__copy > p:not(.co-creation-editorial-eyebrow) {
	max-width: 31rem;
	margin: 1.5rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: clamp(1rem, 1.15vw, 1.08rem);
}

.co-creation-shared-perspective__copy .co-creation-shared-perspective__formula {
	padding-top: 1.25rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

/* Contribution map. */
.co-creation-contribution-map {
	padding-top: clamp(2rem, 4vw, 4rem);
	background: var(--wp--preset--color--white, #fff);
}

.co-creation-contribution-map__header {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: end;
	column-gap: var(--co-creation-grid-gap);
}

.co-creation-contribution-map__header .co-creation-editorial-label {
	grid-column: 1 / span 4;
}

.co-creation-contribution-map__header h2 {
	grid-column: 1 / span 8;
	margin: 1.5rem 0 0;
	font-size: clamp(2.75rem, 5vw, 5.25rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.co-creation-contribution-map__path {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	padding: 0;
	margin: clamp(5rem, 8vw, 8rem) 0 clamp(5rem, 8vw, 8rem);
	list-style: none;
}

.co-creation-contribution-map__path li {
	--connection-angle: 14deg;
	position: relative;
	min-width: 0;
	padding-right: clamp(1.25rem, 2.4vw, 2.25rem);
}

.co-creation-contribution-map__path li:nth-child(2) {
	--connection-angle: -8deg;
	margin-top: 4rem;
}

.co-creation-contribution-map__path li:nth-child(3) {
	--connection-angle: 12deg;
	margin-top: 1.75rem;
}

.co-creation-contribution-map__path li:nth-child(4) {
	--connection-angle: -10deg;
	margin-top: 5rem;
}

.co-creation-contribution-map__path li:nth-child(5) {
	margin-top: 2rem;
}

.co-creation-contribution-map__path li::after {
	position: absolute;
	top: 0.7rem;
	left: 0.85rem;
	z-index: 0;
	width: calc(100% - 0.1rem);
	height: 2px;
	background: var(--wp--preset--color--grass-green, #91df28);
	content: "";
	transform: rotate(var(--connection-angle));
	transform-origin: left center;
}

.co-creation-contribution-map__path li:last-child::after {
	display: none;
}

.has-js .co-creation-contribution-map__path[data-reveal] li::after {
	transform: rotate(var(--connection-angle)) scaleX(0);
	transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-js .co-creation-contribution-map__path[data-reveal].is-visible li::after {
	transform: rotate(var(--connection-angle)) scaleX(1);
}

.co-creation-contribution-map__marker {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--darkest-green, #021b15);
	font-size: 0.56rem;
	font-weight: 850;
	letter-spacing: 0.05em;
}

.co-creation-contribution-map__path li > div {
	padding-top: 2rem;
}

.co-creation-contribution-map__path h3 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.15rem, 1.6vw, 1.5rem);
}

.co-creation-contribution-map__path p {
	max-width: 14rem;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9rem;
}

.co-creation-contribution-map__note {
	max-width: 58rem;
	padding-top: 1.5rem;
	margin: 0;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.82rem;
}

/* Roles connection. */
.co-creation-roles {
	background: var(--wp--preset--color--white, #fff);
}

.co-creation-roles__panel {
	display: grid;
	width: 90%;
	grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.42fr) minmax(0, 1.15fr);
	margin-left: auto;
	padding: clamp(3rem, 6vw, 6rem);
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.co-creation-roles__party h3 {
	margin: 0 0 2.25rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.68rem;
	letter-spacing: 0.15em;
}

.co-creation-roles__party ul {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.co-creation-roles__party li {
	padding: 0.8rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.co-creation-roles__party--greenyfox li {
	color: var(--wp--preset--color--white, #fff);
	font-weight: 650;
}

.co-creation-roles__connection {
	display: grid;
	align-content: center;
	justify-items: center;
	padding-inline: clamp(1rem, 2vw, 2rem);
	text-align: center;
}

.co-creation-roles__connection span {
	display: grid;
	place-items: center;
	width: 4.5rem;
	height: 4.5rem;
	border: 1px solid var(--wp--preset--color--grass-green, #91df28);
	border-radius: 50%;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: 2rem;
	line-height: 1;
}

.co-creation-roles__connection p {
	max-width: 9rem;
	margin: 1.25rem 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.co-creation-roles__summary {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--co-creation-grid-gap);
	margin-top: clamp(3.5rem, 6vw, 6rem);
}

.co-creation-roles__summary h2 {
	grid-column: 4 / span 5;
	margin: 0;
	font-size: clamp(2.5rem, 4.5vw, 4.75rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.co-creation-roles__summary p {
	grid-column: 9 / span 4;
	align-self: end;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: clamp(1rem, 1.15vw, 1.08rem);
}

/* Development sequence. */
.co-creation-development-sequence {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.co-creation-development-sequence__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: start;
	column-gap: var(--co-creation-grid-gap);
}

.co-creation-development-sequence__header {
	position: relative;
	grid-column: 1 / span 4;
}

.co-creation-development-sequence__header h2 {
	margin: 1.5rem 0 0;
	font-size: clamp(3rem, 5.2vw, 5.25rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.co-creation-development-sequence__header > p:not(.co-creation-editorial-label) {
	max-width: 25rem;
	margin: 1.5rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.94rem;
}

.co-creation-development-sequence__catalogue {
	display: grid;
	gap: 0;
	margin-top: 3rem;
	color: rgba(5, 45, 34, 0.075);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: clamp(4rem, 7vw, 7rem);
	font-weight: 800;
	letter-spacing: -0.06em;
	line-height: 0.82;
}

.co-creation-development-sequence__list {
	grid-column: 6 / span 7;
	padding: 0;
	margin: 0;
	list-style: none;
}

.co-creation-development-sequence__list li {
	display: grid;
	grid-template-columns: 4rem minmax(0, 1fr) minmax(8rem, 0.45fr);
	align-items: start;
	gap: clamp(1rem, 2vw, 2rem);
	padding: clamp(2rem, 3.5vw, 3.25rem) 0;
	border-top: 1px solid rgba(5, 45, 34, 0.22);
}

.co-creation-development-sequence__list li:last-child {
	border-bottom: 1px solid rgba(5, 45, 34, 0.22);
}

.co-creation-development-sequence__number {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: clamp(1.5rem, 2.6vw, 2.5rem);
	font-weight: 750;
	letter-spacing: -0.04em;
}

.co-creation-development-sequence__list h3 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3vw, 3rem);
	letter-spacing: -0.04em;
}

.co-creation-development-sequence__list p {
	max-width: 34rem;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.94rem;
}

.co-creation-development-sequence__list small {
	padding-top: 0.65rem;
	color: rgba(5, 45, 34, 0.42);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-align: right;
}

.co-creation-development-sequence__list small.is-current {
	color: var(--wp--preset--color--grass-green, #91df28);
}

/* Production window. */
.co-creation-production-window {
	position: relative;
	padding-bottom: clamp(7rem, 11vw, 11rem);
	background: linear-gradient(180deg, var(--wp--preset--color--warm-beige, #f4f1e8) 0%, var(--wp--preset--color--warm-beige, #f4f1e8) 76%, var(--wp--preset--color--darkest-green, #021b15) 76%, var(--wp--preset--color--darkest-green, #021b15) 100%);
}

.co-creation-production-window__composition {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	column-gap: var(--co-creation-grid-gap);
}

.co-creation-production-window__figure {
	grid-column: 1 / span 9;
	margin: 0;
}

.co-creation-production-window__media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid rgba(5, 45, 34, 0.16);
	background:
		linear-gradient(rgba(5, 45, 34, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(5, 45, 34, 0.08) 1px, transparent 1px),
		var(--wp--preset--color--white, #fff);
	background-size: 4rem 4rem;
}

.co-creation-production-window__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.co-creation-production-window__media > p {
	position: relative;
	z-index: 1;
	padding: 0.75rem 1rem;
	margin: 0;
	border: 1px solid rgba(5, 45, 34, 0.18);
	background: rgba(244, 241, 232, 0.9);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.co-creation-production-window__coordinate {
	position: absolute;
	top: 20%;
	right: 16%;
	width: 34%;
	aspect-ratio: 1;
	border: 1px solid rgba(145, 223, 40, 0.55);
}

.co-creation-production-window__coordinate::before,
.co-creation-production-window__coordinate::after {
	position: absolute;
	background: rgba(5, 45, 34, 0.22);
	content: "";
}

.co-creation-production-window__coordinate::before {
	top: 50%;
	right: -40%;
	left: -40%;
	height: 1px;
}

.co-creation-production-window__coordinate::after {
	top: -40%;
	bottom: -40%;
	left: 50%;
	width: 1px;
}

.co-creation-production-window__copy {
	position: relative;
	z-index: 1;
	grid-column: 8 / span 5;
	padding: clamp(2.5rem, 5vw, 5rem);
	margin-left: calc(-1 * var(--co-creation-grid-gap));
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
	border-top: 2px solid var(--wp--preset--color--grass-green, #91df28);
}

.co-creation-production-window__copy h2 {
	margin: 1.5rem 0 0;
	font-size: clamp(2.5rem, 4.6vw, 4.75rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.co-creation-production-window__copy > p:not(.co-creation-editorial-eyebrow):not(.co-creation-production-window__about-note) {
	margin: 1.35rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.96rem;
}

.co-creation-production-window__keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	padding: 1.5rem 0 0;
	margin: 1.5rem 0 0;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
	list-style: none;
}

.co-creation-production-window__keywords li {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.co-creation-production-window__keywords li:not(:last-child)::after {
	width: 0.3rem;
	height: 0.3rem;
	border-radius: 50%;
	background: var(--wp--preset--color--grass-green, #91df28);
	content: "";
}

.co-creation-production-window__copy .co-creation-production-window__about-note {
	padding-top: 1.25rem;
	margin: 1.5rem 0 0;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.78rem;
}

/* Co-Creation content-depth refresh. */
.co-creation-rich-section {
	padding-block: clamp(4rem, 6vw, 6rem);
}

.co-creation-rich-grid,
.co-creation-section-heading {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--co-creation-grid-gap);
	align-items: start;
}

.co-creation-copy h1,
.co-creation-copy h2,
.co-creation-section-heading h2 {
	max-width: 13ch;
	margin: 1.25rem 0 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	letter-spacing: -0.045em;
	line-height: 1;
}

.co-creation-copy h1 {
	font-size: clamp(3.5rem, 5vw, 4.5rem);
}

.co-creation-copy h2,
.co-creation-section-heading h2 {
	font-size: clamp(2.5rem, 3.6vw, 3.375rem);
}

.co-creation-copy > p:not(.co-creation-editorial-eyebrow):not(.co-creation-summary):not(.co-creation-responsibility):not(.co-creation-status),
.co-creation-section-heading > p:not(.co-creation-editorial-eyebrow),
.co-creation-section-heading > div p {
	max-width: 44rem;
	margin: 1.35rem 0 0;
	color: var(--wp--preset--color--body-dark, #203129);
	font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
	line-height: 1.62;
}

.co-creation-editorial-eyebrow {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: clamp(0.75rem, 0.85vw, 0.875rem);
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.45;
}

.co-creation-summary,
.co-creation-responsibility {
	max-width: 44rem;
	padding: 1rem 0 0 1.25rem;
	margin: 1.5rem 0 0;
	border-left: 2px solid var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.62;
}

.co-creation-responsibility {
	border-left-color: rgba(5, 45, 34, 0.34);
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9375rem;
	font-weight: 550;
}

.co-creation-status {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 1.5rem 0 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.45;
}

.co-creation-status span {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--wp--preset--color--grass-green, #91df28);
}

.co-creation-media-figure {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	min-width: 0;
	margin: 0;
}

.co-creation-media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(5, 45, 34, 0.16);
	background:
		linear-gradient(rgba(5, 45, 34, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(5, 45, 34, 0.08) 1px, transparent 1px),
		var(--wp--preset--color--warm-beige, #f4f1e8);
	background-size: 4rem 4rem;
}

.co-creation-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.co-creation-media > p {
	position: relative;
	z-index: 1;
	max-width: 18rem;
	padding: 0.8rem 1rem;
	margin: 0;
	border: 1px solid rgba(5, 45, 34, 0.2);
	background: rgba(244, 241, 232, 0.92);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.45;
	text-align: center;
}

.co-creation-media__graphic {
	position: absolute;
	width: 54%;
	aspect-ratio: 1;
	border: 1px solid rgba(145, 223, 40, 0.72);
	border-radius: 50%;
}

.co-creation-media__graphic::before,
.co-creation-media__graphic::after {
	position: absolute;
	background: rgba(5, 45, 34, 0.22);
	content: "";
}

.co-creation-media__graphic::before {
	top: 50%;
	right: -45%;
	left: -45%;
	height: 1px;
}

.co-creation-media__graphic::after {
	top: -45%;
	bottom: -45%;
	left: 50%;
	width: 1px;
}

.co-creation-media-figure figcaption {
	padding-top: 0.8rem;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.8125rem;
	line-height: 1.55;
}

.co-creation-section-heading {
	margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.co-creation-section-heading .co-creation-editorial-eyebrow {
	grid-column: 1 / span 5;
}

.co-creation-section-heading h2 {
	grid-column: 1 / span 6;
}

.co-creation-section-heading > p:not(.co-creation-editorial-eyebrow) {
	grid-column: 7 / span 6;
	grid-row: 1 / span 2;
	margin-top: 0;
}

.co-creation-section-heading--wide h2 {
	grid-column: 1 / span 5;
}

.co-creation-section-heading--wide > div {
	grid-column: 7 / span 6;
	grid-row: 1 / span 2;
}

.co-creation-section-heading--wide > div p:first-child {
	margin-top: 0;
}

/* Partnership introduction. */
.co-creation-partnership-intro {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.co-creation-partnership-intro__grid {
	align-items: center;
}

.co-creation-partnership-intro__copy {
	grid-column: 1 / span 6;
	padding-right: clamp(1rem, 2vw, 2rem);
}

.co-creation-partnership-intro__figure {
	grid-column: 7 / span 6;
}

/* Why work together. */
.co-creation-why-together {
	background: var(--wp--preset--color--white, #fff);
}

.co-creation-why-together__grid {
	align-items: center;
}

.co-creation-why-together__figure {
	grid-column: 1 / span 6;
}

.co-creation-why-together__copy {
	grid-column: 7 / span 6;
	padding-left: clamp(1rem, 2vw, 2rem);
}

/* Shared contribution. */
.co-creation-shared-contribution {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.co-creation-contribution-panel {
	display: grid;
	width: 90%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-left: auto;
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.co-creation-contribution-panel article {
	padding: clamp(2rem, 3.5vw, 3.5rem);
}

.co-creation-contribution-panel article + article {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.co-creation-contribution-panel__number {
	margin: 0 0 2rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.co-creation-contribution-panel h3,
.co-creation-value-list h3,
.co-creation-working-process__list h3,
.co-creation-capability-list h3 {
	margin: 0;
	font-size: clamp(1.375rem, 1.8vw, 1.75rem);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.co-creation-contribution-panel article > p:last-child {
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
	line-height: 1.62;
}

.co-creation-contribution-notes {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--co-creation-grid-gap);
	margin-top: 2.5rem;
}

.co-creation-contribution-notes .co-creation-summary {
	grid-column: 3 / span 5;
}

.co-creation-contribution-notes .co-creation-responsibility {
	grid-column: 8 / span 5;
}

/* Shared value. */
.co-creation-shared-value {
	background: var(--wp--preset--color--white, #fff);
}

.co-creation-shared-value__grid {
	align-items: stretch;
	margin-top: clamp(2.5rem, 4vw, 4rem);
}

.co-creation-shared-value__figure {
	grid-column: 1 / span 5;
	align-self: stretch;
}

.co-creation-shared-value__figure .co-creation-media {
	height: 100%;
	aspect-ratio: auto;
	min-height: 32rem;
}

.co-creation-value-list {
	display: grid;
	grid-column: 6 / span 7;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(5, 45, 34, 0.2);
}

.co-creation-value-list article {
	padding: clamp(1.5rem, 2.5vw, 2.5rem);
	border-bottom: 1px solid rgba(5, 45, 34, 0.2);
}

.co-creation-value-list article:nth-child(odd) {
	border-right: 1px solid rgba(5, 45, 34, 0.2);
}

.co-creation-value-list__number {
	margin: 0 0 1.25rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.co-creation-value-list article > p:last-child {
	margin: 0.9rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9375rem;
	line-height: 1.62;
}

.co-creation-shared-value__summary {
	max-width: 56rem;
	margin-top: 2.5rem;
	margin-left: auto;
}

/* Working process. */
.co-creation-working-process {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.co-creation-working-process__header {
	grid-column: 1 / span 5;
	padding-right: clamp(1rem, 2vw, 2rem);
}

.co-creation-working-process__list {
	grid-column: 6 / span 7;
	padding: 0;
	margin: 0;
	list-style: none;
}

.co-creation-working-process__list li {
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr);
	gap: 1.25rem;
	padding: clamp(1.5rem, 2.6vw, 2.5rem) 0;
	border-top: 1px solid rgba(5, 45, 34, 0.22);
}

.co-creation-working-process__list li:last-child {
	border-bottom: 1px solid rgba(5, 45, 34, 0.22);
}

.co-creation-working-process__number {
	margin: 0;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.8125rem;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.co-creation-working-process__list li > div > p {
	max-width: 42rem;
	margin: 0.85rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 1rem;
	line-height: 1.62;
}

/* Future vision. */
.co-creation-future-vision {
	background: var(--wp--preset--color--white, #fff);
}

.co-creation-future-vision__grid {
	align-items: center;
}

.co-creation-future-vision__copy {
	grid-column: 1 / span 6;
	padding-right: clamp(1rem, 2vw, 2rem);
}

.co-creation-future-vision__figure {
	grid-column: 7 / span 6;
}

/* Capability preview. */
.co-creation-capability-preview {
	padding-bottom: clamp(4rem, 6vw, 6rem);
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.co-creation-capability-preview__grid {
	align-items: stretch;
}

.co-creation-capability-preview__media-grid {
	display: grid;
	grid-column: 1 / span 5;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: minmax(0, 1.45fr) minmax(0, 1fr);
	gap: 1.5rem;
	min-height: 0;
}

.co-creation-capability-preview__media-grid .is-primary {
	grid-column: 1 / -1;
}

.co-creation-capability-preview__media-grid .co-creation-media {
	height: 100%;
	aspect-ratio: auto;
	min-height: 11rem;
}

.co-creation-capability-preview__copy {
	grid-column: 6 / span 7;
	padding-left: clamp(1rem, 2vw, 2rem);
}

.co-creation-capability-list {
	display: grid;
	margin-top: 2rem;
	border-top: 1px solid rgba(5, 45, 34, 0.22);
}

.co-creation-capability-list article {
	display: grid;
	grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1fr);
	gap: 1.5rem;
	padding: 1.35rem 0;
	border-bottom: 1px solid rgba(5, 45, 34, 0.22);
}

.co-creation-capability-list article > p {
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9375rem;
	line-height: 1.62;
}

/* About: Technical Capability Ledger. */
.site-main--about {
	--about-grid-gap: clamp(1rem, 2.2vw, 2rem);
	min-height: 0;
	padding: 0;
	overflow: clip;
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.site-main--about [data-about-section] {
	scroll-margin-top: calc(var(--greenyfox-header-height) + var(--wp--preset--spacing--40, 1.5rem));
}

.about-section {
	padding-block: clamp(5rem, 7vw, 7.5rem);
}

.about-grid,
.about-heading {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--about-grid-gap);
	align-items: start;
}

.about-eyebrow {
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: clamp(0.75rem, 0.85vw, 0.875rem);
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.45;
	text-transform: uppercase;
}

.about-copy h1,
.about-copy h2,
.about-heading h2,
.about-working-principle h2 {
	max-width: 14ch;
	margin: 1.25rem 0 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	letter-spacing: -0.045em;
	line-height: 1;
}

.about-copy h1 {
	font-size: clamp(3.5rem, 5vw, 4.5rem);
}

.about-copy h1 span {
	display: block;
}

.about-copy h2,
.about-heading h2,
.about-working-principle h2 {
	font-size: clamp(2.5rem, 3.6vw, 3.375rem);
}

.about-copy > p:not(.about-eyebrow):not(.about-summary),
.about-heading > p:not(.about-eyebrow),
.about-heading__copy p,
.about-working-principle__copy p {
	max-width: 44rem;
	margin: 1.35rem 0 0;
	color: var(--wp--preset--color--body-dark, #203129);
	font-size: clamp(1.0625rem, 1.18vw, 1.1875rem);
	line-height: 1.62;
}

.about-summary,
.about-responsibility {
	max-width: 50rem;
	padding: 1rem 0 0 1.25rem;
	margin: 1.5rem 0 0;
	border-left: 2px solid var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.62;
}

.about-responsibility {
	margin-top: 2.5rem;
	margin-left: auto;
	border-left-color: rgba(5, 45, 34, 0.35);
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9375rem;
	font-weight: 550;
}

.about-heading {
	margin-bottom: clamp(3rem, 5vw, 5rem);
}

.about-heading > .about-eyebrow {
	grid-column: 1 / span 5;
}

.about-heading > h2 {
	grid-column: 1 / span 6;
	margin-top: 1.25rem;
}

.about-heading > p:not(.about-eyebrow) {
	grid-column: 7 / span 6;
	grid-row: 1 / span 2;
	margin-top: 0;
}

.about-heading--split > div:first-child {
	grid-column: 1 / span 5;
}

.about-heading--split .about-heading__copy {
	grid-column: 7 / span 6;
}

.about-heading__copy p:first-child {
	margin-top: 0;
}

.about-figure {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	min-width: 0;
	margin: 0;
}

.about-media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(5, 45, 34, 0.16);
	background:
		linear-gradient(rgba(5, 45, 34, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(5, 45, 34, 0.08) 1px, transparent 1px),
		var(--wp--preset--color--white, #fff);
	background-size: 4rem 4rem;
}

.about-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-media > p {
	position: relative;
	z-index: 1;
	max-width: 18rem;
	padding: 0.8rem 1rem;
	margin: 0;
	border: 1px solid rgba(5, 45, 34, 0.2);
	background: rgba(244, 241, 232, 0.92);
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.45;
	text-align: center;
}

.about-media__diagram {
	position: absolute;
	width: 48%;
	aspect-ratio: 1;
	border: 1px solid rgba(145, 223, 40, 0.72);
	transform: rotate(12deg);
}

.about-media__diagram::before,
.about-media__diagram::after {
	position: absolute;
	background: rgba(5, 45, 34, 0.22);
	content: "";
}

.about-media__diagram::before {
	top: 50%;
	right: -45%;
	left: -45%;
	height: 1px;
}

.about-media__diagram::after {
	top: -45%;
	bottom: -45%;
	left: 50%;
	width: 1px;
}

.about-figure figcaption {
	padding-top: 0.75rem;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.8125rem;
	line-height: 1.55;
}

.about-ledger-points,
.about-electronics-in-house__capabilities,
.about-working-principle__principles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(3rem, 5vw, 5rem);
	border-top: 1px solid rgba(5, 45, 34, 0.22);
}

.about-ledger-points article,
.about-electronics-in-house__capabilities article,
.about-working-principle__principles article {
	padding: clamp(1.5rem, 2.6vw, 2.5rem);
	border-bottom: 1px solid rgba(5, 45, 34, 0.22);
}

.about-ledger-points article + article,
.about-electronics-in-house__capabilities article + article,
.about-working-principle__principles article + article {
	border-left: 1px solid rgba(5, 45, 34, 0.22);
}

.about-ledger-points__number,
.about-system-integration__number,
.about-production-readiness__number,
.about-working-principle__number {
	margin: 0 0 1.25rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.about-ledger-points h3,
.about-electronics-in-house__capabilities h3,
.about-system-integration__list h3,
.about-production-readiness__step h3,
.about-working-principle__principles h3 {
	margin: 0;
	font-size: clamp(1.375rem, 1.8vw, 1.75rem);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.about-ledger-points article > p:last-child,
.about-electronics-in-house__capabilities article > p:last-child,
.about-working-principle__principles article > p:last-child {
	margin: 0.9rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9375rem;
	line-height: 1.62;
}

/* Capability introduction. */
.about-capability-intro {
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.about-capability-intro__grid {
	align-items: center;
}

.about-capability-intro__copy {
	grid-column: 1 / span 5;
	padding-right: clamp(1rem, 2vw, 2rem);
}

.about-capability-intro__copy .about-eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.about-capability-intro__copy h1 {
	color: var(--wp--preset--color--white, #fff);
}

.about-capability-intro__copy > p:not(.about-eyebrow):not(.about-summary) {
	color: rgba(255, 255, 255, 0.78);
}

.about-capability-intro__copy .about-summary {
	color: var(--wp--preset--color--white, #fff);
}

.about-capability-intro__media {
	display: grid;
	grid-column: 6 / span 7;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	align-items: end;
	gap: var(--about-grid-gap);
}

.about-capability-intro__media .about-figure--primary .about-media {
	aspect-ratio: 4 / 3;
}

.about-capability-intro__media .about-figure:not(.about-figure--primary) .about-media {
	aspect-ratio: 4 / 5;
}

.about-capability-intro .about-media {
	border-color: rgba(255, 255, 255, 0.2);
	background:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		var(--wp--preset--color--darkest-green, #021b15);
	background-size: 4rem 4rem;
}

.about-capability-intro .about-media > p {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(2, 27, 21, 0.9);
	color: var(--wp--preset--color--white, #fff);
}

.about-capability-intro .about-media__diagram {
	border-color: rgba(145, 223, 40, 0.72);
}

.about-capability-intro .about-media__diagram::before,
.about-capability-intro .about-media__diagram::after {
	background: rgba(255, 255, 255, 0.18);
}

.about-capability-intro .about-figure figcaption {
	color: rgba(255, 255, 255, 0.62);
}

/* Manufacturing foundation. */
.about-manufacturing-foundation {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.about-manufacturing-foundation__grid {
	align-items: center;
}

.about-manufacturing-foundation__media {
	display: grid;
	grid-column: 1 / span 7;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--about-grid-gap);
}

.about-manufacturing-foundation__media .about-figure--primary {
	grid-column: 1 / -1;
}

.about-manufacturing-foundation__media .about-figure--primary .about-media {
	aspect-ratio: 16 / 9;
}

.about-manufacturing-foundation__copy {
	grid-column: 8 / span 5;
	padding-left: clamp(1rem, 2vw, 2rem);
}

/* Electronics in-house. */
.about-electronics-in-house {
	background: var(--wp--preset--color--white, #fff);
}

.about-electronics-in-house__media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--about-grid-gap);
}

.about-electronics-in-house__media .about-figure--wide {
	grid-column: 1 / -1;
}

.about-electronics-in-house__media .about-figure--wide .about-media {
	aspect-ratio: 16 / 6;
}

.about-electronics-in-house__capabilities {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-electronics-in-house__capabilities article {
	padding-inline: clamp(1.25rem, 2vw, 2rem);
}

/* System integration. */
.about-system-integration {
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.about-system-integration .about-eyebrow,
.about-system-integration__number {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.about-system-integration .about-heading h2 {
	color: var(--wp--preset--color--white, #fff);
}

.about-system-integration .about-heading > p:not(.about-eyebrow) {
	color: rgba(255, 255, 255, 0.76);
}

.about-system-integration__grid {
	align-items: stretch;
}

.about-system-integration__figure {
	grid-column: 1 / span 7;
}

.about-system-integration__figure .about-media {
	height: 100%;
	aspect-ratio: auto;
	min-height: 34rem;
	border-color: rgba(255, 255, 255, 0.2);
	background:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		var(--wp--preset--color--darkest-green, #021b15);
	background-size: 4rem 4rem;
}

.about-system-integration__figure .about-media > p {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(2, 27, 21, 0.9);
	color: var(--wp--preset--color--white, #fff);
}

.about-system-integration__figure figcaption {
	color: rgba(255, 255, 255, 0.6);
}

.about-system-integration__list {
	grid-column: 8 / span 5;
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-system-integration__list li {
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr);
	gap: 1rem;
	padding: 1.4rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-system-integration__list li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-system-integration__list h3 {
	color: var(--wp--preset--color--white, #fff);
}

.about-system-integration__list li > div > p {
	margin: 0.65rem 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9375rem;
	line-height: 1.62;
}

.about-system-integration__summary {
	margin-top: 2.5rem;
	margin-left: auto;
	color: var(--wp--preset--color--white, #fff);
}

/* Production readiness. */
.about-production-readiness {
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.about-production-readiness__ledger {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(5, 45, 34, 0.22);
	border-left: 1px solid rgba(5, 45, 34, 0.22);
}

.about-production-readiness__step,
.about-production-readiness__figure {
	min-width: 0;
	border-right: 1px solid rgba(5, 45, 34, 0.22);
	border-bottom: 1px solid rgba(5, 45, 34, 0.22);
}

.about-production-readiness__step {
	padding: clamp(1.5rem, 2.6vw, 2.5rem);
}

.about-production-readiness__step > p:last-child {
	margin: 0.9rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9375rem;
	line-height: 1.62;
}

.about-production-readiness__figure {
	padding: 1rem;
}

.about-production-readiness__figure .about-media {
	aspect-ratio: 3 / 2;
}

/* Owned direction. */
.about-owned-direction {
	background: var(--wp--preset--color--white, #fff);
}

.about-owned-direction__grid {
	align-items: center;
}

.about-owned-direction__figure {
	grid-column: 1 / span 7;
}

.about-owned-direction__figure .about-media {
	aspect-ratio: 16 / 10;
}

.about-owned-direction__copy {
	grid-column: 8 / span 5;
	padding-left: clamp(1rem, 2vw, 2rem);
}

/* Working principle. */
.about-working-principle {
	padding-bottom: clamp(5rem, 7vw, 7.5rem);
	background: var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--darkest-green, #021b15);
}

.about-working-principle__grid > header {
	grid-column: 1 / span 5;
}

.about-working-principle__copy {
	grid-column: 7 / span 6;
}

.about-working-principle__copy p {
	color: var(--wp--preset--color--darkest-green, #021b15);
}

.about-working-principle__principles {
	border-color: rgba(2, 27, 21, 0.35);
}

.about-working-principle__principles article {
	border-color: rgba(2, 27, 21, 0.35);
}

.about-working-principle__principles article + article {
	border-left-color: rgba(2, 27, 21, 0.35);
}

.about-working-principle__number {
	color: var(--wp--preset--color--deep-green, #052d22);
}

.about-working-principle__principles article > p:last-child {
	color: rgba(2, 27, 21, 0.76);
}

.about-working-principle__closing {
	max-width: 62rem;
	padding-top: 2rem;
	margin: clamp(2.5rem, 4vw, 4rem) 0 0 auto;
	border-top: 1px solid rgba(2, 27, 21, 0.35);
	color: var(--wp--preset--color--darkest-green, #021b15);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: clamp(1.5rem, 2.4vw, 2.25rem);
	font-weight: 750;
	letter-spacing: -0.03em;
	line-height: 1.2;
	text-align: right;
}

/* Contact: compact directory and native enquiry form. */
.site-main--contact {
	--contact-grid-gap: clamp(1rem, 2.2vw, 2rem);
	--contact-column-padding: clamp(1.75rem, 2.5vw, 2.25rem);
	min-height: 0;
	padding: 0;
	overflow: clip;
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.site-main--contact [data-contact-section],
.site-main--contact [data-contact-form-region] {
	scroll-margin-top: calc(var(--greenyfox-header-height) + var(--wp--preset--spacing--40, 1.5rem));
}

.contact-section {
	padding-block: clamp(4.5rem, 6vw, 6.5rem);
}

.contact-eyebrow {
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.45;
	text-transform: uppercase;
}

.contact-intro {
	position: relative;
	isolation: isolate;
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
	background-image: var(--contact-hero-image, none);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.contact-intro::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(90deg, rgba(0, 48, 38, 0.92) 0%, rgba(0, 48, 38, 0.78) 48%, rgba(0, 48, 38, 0.58) 100%);
	content: "";
	pointer-events: none;
}

.contact-intro::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	height: 1px;
	background: rgba(255, 255, 255, 0.18);
	content: "";
}

.contact-intro__grid {
	position: relative;
	z-index: 1;
}

.contact-intro__grid,
.contact-enquiry-note__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--contact-grid-gap);
	align-items: start;
}

.contact-intro__heading {
	grid-column: 1 / span 5;
}

.contact-intro__heading h1 {
	max-width: 10ch;
	margin: 1.1rem 0 0;
	color: var(--wp--preset--color--white, #fff);
	font-size: clamp(3.25rem, 5vw, 4.75rem);
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.contact-intro__index {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 2rem 0 0;
	color: rgba(244, 241, 232, 0.78);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.12em;
}

.contact-intro__index::before {
	width: 2.5rem;
	height: 2px;
	background: var(--wp--preset--color--grass-green, #91df28);
	content: "";
}

.contact-intro__copy {
	grid-column: 7 / span 6;
	padding-top: 1.75rem;
}

.contact-intro__copy p,
.contact-directory__header > p:last-child,
.contact-enquiry__header > p:last-child {
	margin: 0;
	color: var(--wp--preset--color--body-dark, #203129);
	font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
	line-height: 1.65;
}

.contact-intro__copy p + p,
.contact-enquiry-note__copy p + p {
	margin-top: 1.25rem;
}

.contact-intro .contact-eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.contact-intro .contact-intro__copy p {
	color: rgba(244, 241, 232, 0.9);
}

.contact-main {
	padding-block: clamp(6rem, 8vw, 8rem);
	background: var(--wp--preset--color--white, #fff);
}

.contact-main__grid {
	display: grid;
	grid-template-columns: minmax(0, 36fr) minmax(0, 64fr);
	align-items: stretch;
}

.contact-directory {
	display: flex;
	grid-column: 1;
	flex-direction: column;
	min-width: 0;
	padding-right: var(--contact-column-padding);
	border-right: 1px solid rgba(5, 45, 34, 0.18);
}

.contact-directory__header h2,
.contact-enquiry__header h2 {
	margin: 1rem 0 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: clamp(2.375rem, 3.1vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.contact-directory__header h2 {
	max-width: 11ch;
}

.contact-directory__header > p:last-child,
.contact-enquiry__header > p:last-child {
	margin-top: clamp(1.5rem, 2vw, 2rem);
	font-size: 1rem;
}

.contact-directory__list {
	display: grid;
	flex: 1;
	grid-template-rows: repeat(3, minmax(max-content, 1fr));
	margin-top: clamp(2rem, 2.5vw, 2.5rem);
	border-top: 1px solid rgba(5, 45, 34, 0.2);
}

.contact-directory__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 2.6vw, 2.5rem) 0;
	border-bottom: 1px solid rgba(5, 45, 34, 0.2);
}

.contact-directory__label {
	margin: 0 0 0.55rem;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.contact-directory__primary-link,
.contact-directory__value {
	display: inline-block;
	max-width: 100%;
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-family: var(--wp--preset--font-family--manrope, Manrope, Arial, sans-serif);
	font-size: clamp(1.05rem, 1.35vw, 1.25rem);
	font-weight: 750;
	line-height: 1.35;
	overflow-wrap: anywhere;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
}

.contact-directory__primary-link {
	min-height: 2.75rem;
	padding-block: 0.45rem;
}

.contact-directory__primary-link:hover,
.contact-directory__primary-link:focus-visible,
.contact-directory__action:hover,
.contact-directory__action:focus-visible {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.contact-directory__description {
	margin: 0.45rem 0 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.9rem;
	line-height: 1.55;
}

.contact-directory__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin-top: 1rem;
}

.contact-directory__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.55rem 0.95rem;
	border: 1px solid rgba(5, 45, 34, 0.28);
	border-radius: 999px;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.contact-enquiry {
	display: flex;
	grid-column: 2;
	flex-direction: column;
	min-width: 0;
	padding-left: var(--contact-column-padding);
}

.contact-enquiry__header {
	max-width: 48rem;
}

.contact-enquiry__header h2 {
	max-width: 17ch;
}

.contact-form__result {
	padding: 1rem 1.15rem;
	margin-top: 2rem;
	border-left: 3px solid var(--wp--preset--color--deep-green, #052d22);
	background: rgba(5, 45, 34, 0.07);
	color: var(--wp--preset--color--deep-green, #052d22);
}

.contact-form__result--success {
	border-left-color: var(--wp--preset--color--grass-green, #91df28);
}

.contact-form__result--validation,
.contact-form__result--mail,
.contact-form__result--rate,
.contact-form__result--expired,
.contact-form__result--duplicate {
	border-left-color: #9c3f2f;
	background: #fff3ef;
	color: #6f2b20;
}

.contact-form__result:focus-visible {
	outline: 3px solid var(--wp--preset--color--grass-green, #91df28);
	outline-offset: 0.25rem;
}

.contact-form__result p {
	margin: 0;
	font-weight: 700;
	line-height: 1.55;
}

.contact-form {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(2.25rem, 3vw, 3rem);
	margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
	border-top: 3px solid var(--wp--preset--color--grass-green, #91df28);
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.contact-form__trap {
	position: absolute !important;
	top: auto !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.contact-form__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.75rem, 2.4vw, 2.25rem) clamp(1.5rem, 2vw, 2rem);
}

.contact-field {
	min-width: 0;
}

.contact-field--wide {
	grid-column: 1 / -1;
}

.contact-field label {
	display: block;
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.9rem;
	font-weight: 750;
	line-height: 1.4;
}

.contact-field__optional {
	margin-left: 0.35rem;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.contact-field__help,
.contact-field__error {
	margin: 0.4rem 0 0;
	font-size: 0.8rem;
	line-height: 1.5;
}

.contact-field__help {
	color: var(--wp--preset--color--secondary-text, #6e7b74);
}

.contact-field__error {
	color: #8a3023;
	font-weight: 700;
}

.contact-field input,
.contact-field textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.8rem 0;
	margin-top: 0.65rem;
	border: 0;
	border-bottom: 1px solid rgba(5, 45, 34, 0.42);
	border-radius: 0;
	background: transparent;
	color: var(--wp--preset--color--body-dark, #203129);
	font: inherit;
	font-size: 1rem;
	line-height: 1.5;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field input {
	min-height: 3.25rem;
}

.contact-field textarea {
	min-height: 10.5rem;
	resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
	border-bottom-color: var(--wp--preset--color--deep-green, #052d22);
	outline: 0;
	box-shadow: 0 3px 0 var(--wp--preset--color--grass-green, #91df28);
}

.contact-field [aria-invalid="true"] {
	border-bottom-color: #8a3023;
	box-shadow: 0 2px 0 #8a3023;
}

.contact-field__label-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
}

.contact-field__counter {
	flex: 0 0 auto;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.75rem;
	font-variant-numeric: tabular-nums;
}

.contact-form__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(1.75rem, 2.5vw, 2.5rem);
	padding-top: clamp(1.75rem, 2.5vw, 2.25rem);
	margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
	padding-bottom: 0.125rem;
	border-top: 1px solid rgba(5, 45, 34, 0.18);
}

.contact-form__privacy {
	max-width: 38rem;
	margin: 0;
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: clamp(0.875rem, 1vw, 0.9375rem);
	line-height: 1.6;
}

.contact-form__privacy a {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-weight: 700;
}

.contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 10rem;
	min-height: 3.25rem;
	padding: 0.85rem 1.5rem;
	border: 1px solid var(--wp--preset--color--grass-green, #91df28);
	border-radius: 0;
	background: var(--wp--preset--color--grass-green, #91df28);
	color: var(--wp--preset--color--darkest-green, #021b15);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
	border-color: var(--wp--preset--color--deep-green, #052d22);
	background: var(--wp--preset--color--grass-green-highlight, #a8eb32);
}

.contact-form__submit:focus-visible {
	outline: 3px solid var(--wp--preset--color--deep-green, #052d22);
	outline-offset: 0.2rem;
}

.contact-form__submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.contact-enquiry-note {
	padding-block: clamp(5.5rem, 7vw, 7rem);
	background: var(--wp--preset--color--deep-green, #052d22);
	color: var(--wp--preset--color--white, #fff);
}

.contact-enquiry-note__grid > header {
	grid-column: 1 / span 5;
}

.contact-enquiry-note .contact-eyebrow {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.contact-enquiry-note h2 {
	max-width: 14ch;
	margin: 1rem 0 0;
	color: var(--wp--preset--color--white, #fff);
	font-size: clamp(2rem, 2.8vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.04;
}

.contact-enquiry-note__copy {
	grid-column: 6 / span 7;
	max-width: 68ch;
	padding-left: clamp(1rem, 2vw, 2rem);
}

.contact-enquiry-note__copy p {
	margin: 0;
	color: rgba(244, 241, 232, 0.72);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.contact-enquiry-note__copy p:first-child {
	color: rgba(244, 241, 232, 0.82);
	font-size: 1rem;
}

.contact-enquiry-note__copy p + p {
	padding-top: 1.125rem;
	margin-top: 1.125rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* Legal dossier pages. */
.site-main--legal {
	padding: 0;
	overflow: clip;
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.site-main--legal [id] {
	scroll-margin-top: calc(var(--greenyfox-header-height) + 2rem);
}

.legal-container {
	max-width: 73.75rem;
}

.legal-intro {
	padding-block: calc(var(--greenyfox-header-height) + clamp(4rem, 7vw, 6.5rem)) clamp(4.5rem, 7vw, 6.5rem);
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
}

.legal-intro__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: end;
	gap: 2rem;
}

.legal-intro__heading {
	grid-column: 1 / span 7;
}

.legal-eyebrow,
.legal-navigation__label {
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.5;
	text-transform: uppercase;
}

.legal-eyebrow::before {
	display: inline-block;
	width: 2.75rem;
	height: 2px;
	margin-right: 0.85rem;
	background: var(--wp--preset--color--grass-green, #91df28);
	vertical-align: 0.22em;
	content: "";
}

.legal-intro h1 {
	max-width: 12ch;
	margin: 1.25rem 0 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: clamp(3rem, 5vw, 4rem);
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.legal-intro__summary {
	grid-column: 8 / span 5;
	max-width: 38rem;
}

.legal-intro__summary > p:first-child {
	margin: 0;
	color: var(--wp--preset--color--body-dark, #203129);
	font-size: clamp(1rem, 1.25vw, 1.125rem);
	line-height: 1.68;
}

.legal-intro__updated {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.65rem 1rem;
	padding-top: 1.5rem;
	margin: 1.5rem 0 0;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.82rem;
}

.legal-intro__updated span {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.legal-document {
	padding-block: clamp(6rem, 8vw, 8rem);
	background: var(--wp--preset--color--white, #fff);
}

.legal-document__grid {
	display: grid;
	grid-template-columns: minmax(13.5rem, 0.34fr) minmax(0, 0.66fr);
	align-items: start;
	gap: clamp(3.5rem, 7vw, 6.5rem);
}

.legal-navigation {
	position: sticky;
	top: calc(var(--greenyfox-header-height) + 2rem);
	max-height: calc(100svh - var(--greenyfox-header-height) - 4rem);
	padding: 1.25rem 1.25rem 1.25rem 0;
	overflow-y: auto;
	border-top: 2px solid var(--wp--preset--color--grass-green, #91df28);
	overscroll-behavior: contain;
	scrollbar-width: thin;
}

.legal-navigation ol {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 1.25rem 0 0;
	list-style: none;
}

.legal-navigation li {
	border-top: 1px solid rgba(5, 45, 34, 0.14);
}

.legal-navigation li:last-child {
	border-bottom: 1px solid rgba(5, 45, 34, 0.14);
}

.legal-navigation a {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	align-items: center;
	gap: 0.6rem;
	min-height: 2.75rem;
	padding-block: 0.55rem;
	color: var(--wp--preset--color--body-dark, #203129);
	font-size: 0.78rem;
	line-height: 1.35;
	text-decoration: none;
}

.legal-navigation a > span {
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.legal-navigation a:hover,
.legal-navigation a:focus-visible {
	color: var(--wp--preset--color--deep-green, #052d22);
}

.legal-navigation a:focus-visible {
	outline: 2px solid var(--wp--preset--color--grass-green, #91df28);
	outline-offset: 0.2rem;
}

.legal-document__content {
	min-width: 0;
	max-width: 48rem;
}

.legal-section {
	padding-bottom: clamp(3.5rem, 5vw, 4.75rem);
}

.legal-section + .legal-section {
	padding-top: clamp(3.5rem, 5vw, 4.75rem);
	border-top: 1px solid rgba(5, 45, 34, 0.16);
}

.legal-section:target .legal-section__heading h2 {
	color: var(--wp--preset--color--deep-green, #052d22);
	text-decoration-color: var(--wp--preset--color--grass-green, #91df28);
	text-decoration-line: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.3em;
}

.legal-section__heading {
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	align-items: start;
	gap: 1.25rem;
}

.legal-section__heading > span {
	padding-top: 0.45rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.12em;
}

.legal-section__heading h2 {
	max-width: 24ch;
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: clamp(1.625rem, 2.5vw, 2.125rem);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.legal-section__body {
	max-width: 68ch;
	margin: 1.75rem 0 0 4.25rem;
}

.legal-section__body p,
.legal-section__body li,
.legal-address,
.legal-details dd,
.legal-details dt,
.legal-table-wrap {
	font-size: 1rem;
	line-height: 1.68;
}

.legal-section__body p {
	margin: 0;
	color: var(--wp--preset--color--body-dark, #203129);
}

.legal-section__body p + p,
.legal-section__body ul + p,
.legal-section__body .legal-details + p,
.legal-section__body .legal-address + p,
.legal-section__body .legal-table-wrap + p {
	margin-top: 1.25rem;
}

.legal-section__body ul {
	display: grid;
	gap: 0.75rem;
	padding: 0 0 0 1.25rem;
	margin: 1.25rem 0 0;
	color: var(--wp--preset--color--body-dark, #203129);
}

.legal-section__body li::marker {
	color: var(--wp--preset--color--grass-green, #91df28);
}

.legal-section__body a,
.legal-address a,
.legal-details a {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-weight: 700;
	text-decoration-color: rgba(5, 45, 34, 0.42);
	text-underline-offset: 0.22em;
}

.legal-section__body a:hover,
.legal-section__body a:focus-visible,
.legal-address a:hover,
.legal-address a:focus-visible,
.legal-details a:hover,
.legal-details a:focus-visible {
	color: #477f09;
	text-decoration-color: var(--wp--preset--color--grass-green, #91df28);
}

.legal-address {
	display: grid;
	gap: 0.35rem;
	padding: 1.5rem;
	margin: 1.25rem 0 0;
	border-left: 2px solid var(--wp--preset--color--grass-green, #91df28);
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
	color: var(--wp--preset--color--body-dark, #203129);
	font-style: normal;
}

.legal-address strong {
	color: var(--wp--preset--color--deep-green, #052d22);
}

.legal-details {
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(5, 45, 34, 0.2);
}

.legal-details > div {
	display: grid;
	grid-template-columns: minmax(9rem, 0.34fr) minmax(0, 0.66fr);
	gap: 1.25rem;
	padding-block: 1rem;
	border-bottom: 1px solid rgba(5, 45, 34, 0.2);
}

.legal-details dt {
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.legal-details dd {
	min-width: 0;
	margin: 0;
	color: var(--wp--preset--color--deep-green, #052d22);
	overflow-wrap: anywhere;
}

.legal-table-wrap {
	max-width: 100%;
	margin-top: 1.5rem;
	overflow-x: auto;
	border-block: 1px solid rgba(5, 45, 34, 0.2);
}

.legal-table-wrap:focus-visible {
	outline: 3px solid var(--wp--preset--color--grass-green, #91df28);
	outline-offset: 0.25rem;
}

.legal-table-wrap table {
	width: 100%;
	min-width: 42rem;
	border-collapse: collapse;
	color: var(--wp--preset--color--body-dark, #203129);
}

.legal-table-wrap th,
.legal-table-wrap td {
	padding: 1rem;
	border-bottom: 1px solid rgba(5, 45, 34, 0.14);
	text-align: left;
	vertical-align: top;
}

.legal-table-wrap thead th {
	color: var(--wp--preset--color--deep-green, #052d22);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.legal-table-wrap tbody th {
	width: 28%;
	color: var(--wp--preset--color--deep-green, #052d22);
	font-weight: 750;
}

.legal-document__notice {
	max-width: 68ch;
	padding: 1.25rem 1.5rem;
	margin: 0 0 0 4.25rem;
	border-left: 2px solid var(--wp--preset--color--grass-green, #91df28);
	background: var(--wp--preset--color--warm-beige, #f4f1e8);
	color: var(--wp--preset--color--secondary-text, #6e7b74);
	font-size: 0.875rem;
	line-height: 1.65;
}

/* Footer. */
.site-footer {
	padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
	background: var(--wp--preset--color--darkest-green, #021b15);
	color: var(--wp--preset--color--white, #fff);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(15rem, 1.5fr) repeat(3, minmax(8rem, 1fr));
	gap: clamp(2rem, 5vw, 5rem);
}

.site-footer__brand .brand-mark {
	margin-bottom: 1.25rem;
}

.site-footer__tagline {
	max-width: 22rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__heading {
	margin: 0 0 1rem;
	color: var(--wp--preset--color--grass-green, #91df28);
	font-size: 0.75rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-navigation__menu,
.site-footer__contact-list {
	display: grid;
	gap: 0.6rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-navigation a,
.site-footer__contact-list a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.site-footer__contact-list li {
	display: grid;
	gap: 0.1rem;
}

.site-footer__contact-list span {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__contact-list .site-footer__address {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	letter-spacing: 0;
	line-height: 1.5;
	text-transform: none;
}

.footer-navigation a:hover,
.site-footer__contact-list a:hover {
	color: var(--wp--preset--color--grass-green-highlight, #a8eb32);
}

.language-switcher--footer .language-switcher__panel {
	top: auto;
	right: auto;
	bottom: calc(100% + 0.75rem);
	left: 0;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 2rem;
	margin-top: clamp(3rem, 6vw, 5rem);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__legal {
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.75rem;
}

.site-footer__legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__legal a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 2.75rem;
	color: inherit;
	text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible,
.site-footer__legal a[aria-current="page"] {
	color: var(--wp--preset--color--grass-green-highlight, #a8eb32);
}

.site-footer__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.75rem;
	text-align: right;
}

.floating-whatsapp {
	display: none;
}
