:root {
	--color-bg: #f7f9f8;
	--color-bg-elevated: #ffffff;
	--color-surface: #ffffff;
	--color-surface-strong: #0c1714;
	--color-surface-soft: #f1f5f3;
	--color-border: rgba(10, 24, 20, 0.1);
	--color-border-strong: rgba(47, 182, 112, 0.28);
	--color-text: #101816;
	--color-text-muted: #5f7069;
	--color-accent: #3fd487;
	--color-accent-strong: #2fb670;
	--color-accent-soft: rgba(63, 212, 135, 0.13);
	--color-white: #ffffff;
	--shadow-soft: 0 24px 70px rgba(12, 23, 20, 0.08);
	--shadow-card: 0 18px 46px rgba(12, 23, 20, 0.08);
	--shadow-card-hover: 0 26px 70px rgba(12, 23, 20, 0.12);
	--radius-sm: 0.875rem;
	--radius-md: 1.25rem;
	--radius-lg: 1.75rem;
	--radius-xl: 2.25rem;
	--container-width: 76rem;
	--space-2xs: 0.5rem;
	--space-xs: 0.75rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 4.5rem;
	--space-3xl: 6rem;
	--font-body: "Sora", "IBM Plex Sans", "Segoe UI", sans-serif;
	--font-heading: "Space Grotesk", "Sora", "IBM Plex Sans", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 20rem;
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.08) 0%, rgba(255, 255, 255, 0) 28rem),
		linear-gradient(180deg, #ffffff 0%, #f7f9f8 34rem),
		var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

:where(a, button, input, select, textarea, summary, [tabindex]:not([tabindex="-1"])):focus-visible {
	outline: 2px solid transparent;
	box-shadow: 0 0 0 0.15rem #ffffff, 0 0 0 0.35rem rgba(47, 182, 112, 0.36);
	border-radius: var(--radius-sm);
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

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

p,
h1,
h2,
h3 {
	margin: 0;
}

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

.skip-link {
	position: absolute;
	top: var(--space-sm);
	left: var(--space-sm);
	z-index: 1000;
	padding: 0.875rem 1rem;
	background-color: var(--color-accent);
	color: #071711;
	border-radius: var(--radius-sm);
	transform: translateY(-200%);
}

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

.site-main > section,
.service-page,
.page-content,
.post-listing {
	padding: var(--space-2xl) var(--space-md);
}

.hero__inner,
.highlight-panel__inner,
.value-proposition__inner,
.specialties__inner,
.projects-preview__inner,
.clients__inner,
.contact-block__inner,
.final-cta__inner,
.site-topbar__inner,
.site-header__inner,
.site-footer__inner,
.page-content > article,
.post-listing,
.service-page__container,
.architecture-hub__inner {
	width: min(100%, var(--container-width));
	margin-inline: auto;
}

.site-topbar {
	position: relative;
	z-index: 19;
	padding: 0 var(--space-md);
	background-color: rgba(247, 249, 248, 0.92);
	border-bottom: 1px solid rgba(10, 24, 20, 0.06);
	color: var(--color-text-muted);
}

.site-topbar--desktop-only {
	display: none;
}

.site-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: min(100%, 96rem);
	min-height: 2.125rem;
}

.site-topbar__contact,
.site-topbar__socials {
	display: flex;
	align-items: center;
	gap: clamp(0.85rem, 2vw, 1.4rem);
}

.site-topbar__link,
.site-topbar__social-link {
	display: inline-flex;
	align-items: center;
	color: inherit;
	transition:
		color 180ms ease,
		transform 180ms ease;
}

.site-topbar__link {
	gap: 0.4rem;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

.site-topbar__icon,
.site-topbar__social-link svg {
	display: inline-flex;
	width: 0.95rem;
	height: 0.95rem;
	color: var(--color-accent-strong);
}

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

.site-topbar__socials {
	display: none;
}

.site-topbar__link--email {
	display: none;
}

.site-topbar__link:hover,
.site-topbar__link:focus-visible,
.site-topbar__social-link:hover,
.site-topbar__social-link:focus-visible {
	color: var(--color-accent-strong);
}

.site-topbar__social-link:hover {
	transform: translateY(-1px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: var(--space-sm) var(--space-md);
	background-color: rgba(255, 255, 255, 0.86);
	border-bottom: 1px solid rgba(10, 24, 20, 0.06);
	transition:
		background-color 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: var(--space-md);
	width: min(100%, 96rem);
	min-height: 4rem;
	padding: var(--space-xs) 0;
	transition:
		background-color 220ms ease,
		box-shadow 220ms ease,
		transform 220ms ease;
}

.site-header--scrolled {
	background-color: rgba(255, 255, 255, 0.94);
	border-bottom-color: rgba(10, 24, 20, 0.08);
	box-shadow: 0 10px 28px rgba(12, 23, 20, 0.05);
}

.site-header--scrolled .site-header__inner {
	background-color: transparent;
	box-shadow: none;
}

.site-header__branding {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	max-width: min(16rem, calc(100vw - 7rem));
	overflow: hidden;
	min-width: 0;
}

.site-header__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.05rem, 4vw, 1.2rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	max-width: 100%;
	min-width: 0;
}

.site-header__brand-link {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-width: 0;
	color: var(--color-text);
}

.site-header__title {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-header__logo img,
.site-header .custom-logo {
	display: block;
	width: auto;
	max-width: min(13rem, calc(100vw - 7rem));
	height: auto;
	max-height: 2.625rem;
	object-fit: contain;
}

.site-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	background-color: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: 999px;
}

.site-menu-toggle__bars {
	display: grid;
	gap: 0.3rem;
}

.site-menu-toggle__line {
	display: block;
	width: 1.15rem;
	height: 2px;
	background-color: currentColor;
	border-radius: 999px;
}

.site-header__panel {
	grid-column: 1 / -1;
	display: grid;
	gap: var(--space-md);
}

.site-header__panel .site-navigation__menu {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.site-header__panel .site-navigation__menu a {
	padding: 0.15rem 0;
}

.site-navigation__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	list-style: none;
}

.site-navigation__menu a {
	display: inline-flex;
	padding: 0.35rem 0;
	color: var(--color-text-muted);
	font-size: 0.95rem;
	font-weight: 500;
	transition:
		color 180ms ease,
		transform 180ms ease;
}

.site-navigation__menu .current_page_item > a,
.site-navigation__menu .current-menu-item > a,
.site-navigation__menu a:hover,
.site-navigation__menu a:focus-visible {
	color: var(--color-text);
}

.site-navigation__menu a:hover {
	transform: translateY(-1px);
}

.site-header__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.site-header__actions .site-header__cta {
	width: 100%;
}

.site-header__mobile-socials {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.25rem;
}

.site-header__mobile-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: var(--color-text-muted);
	border: 1px solid rgba(10, 24, 20, 0.1);
	border-radius: 999px;
	transition:
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.site-header__mobile-social-link svg {
	display: block;
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-header__mobile-social-link:hover,
.site-header__mobile-social-link:focus-visible {
	color: var(--color-accent-strong);
	border-color: rgba(47, 182, 112, 0.36);
	transform: translateY(-1px);
}

.site-header__cta,
.hero__cta,
.highlight-panel__cta,
.project-card__link,
.contact-form__submit,
.final-cta__button,
.service-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3.25rem;
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	overflow-wrap: anywhere;
}

.site-header__cta,
.hero__cta--primary,
.highlight-panel__cta,
.contact-form__submit,
.final-cta__button,
.service-cta__button {
	background-color: var(--color-accent);
	color: #071711;
	box-shadow: 0 16px 32px rgba(47, 182, 112, 0.2);
}

.site-header__cta--secondary {
	background-color: rgba(63, 212, 135, 0.12);
	border-color: rgba(47, 182, 112, 0.36);
	color: #12613e;
	box-shadow: none;
}

.hero__cta--secondary,
.project-card__link,
.service-cta__button--secondary {
	background-color: var(--color-surface);
	border-color: var(--color-border);
	color: var(--color-text);
	box-shadow: none;
}

.site-header__cta,
.hero__cta,
.highlight-panel__cta,
.project-card__link,
.contact-form__submit,
.final-cta__button,
.service-cta__button {
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.site-header__cta:hover,
.hero__cta:hover,
.highlight-panel__cta:hover,
.project-card__link:hover,
.contact-form__submit:hover,
.final-cta__button:hover,
.service-cta__button:hover {
	transform: translateY(-2px);
}

.site-header__cta:hover,
.hero__cta--primary:hover,
.highlight-panel__cta:hover,
.contact-form__submit:hover,
.final-cta__button:hover,
.service-cta__button:hover {
	background-color: var(--color-accent-strong);
	box-shadow: 0 20px 42px rgba(47, 182, 112, 0.24);
}

.site-header__cta--secondary:hover {
	background-color: rgba(63, 212, 135, 0.18);
	border-color: rgba(47, 182, 112, 0.5);
	box-shadow: 0 14px 30px rgba(47, 182, 112, 0.12);
	color: #0d5133;
}

.hero__cta--secondary:hover,
.project-card__link:hover,
.service-cta__button--secondary:hover {
	background-color: var(--color-surface);
	border-color: rgba(47, 182, 112, 0.34);
	box-shadow: 0 14px 32px rgba(12, 23, 20, 0.07);
	color: var(--color-text);
}

.hero {
	padding-top: clamp(4.5rem, 9vw, 7rem);
	padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hero--front-page {
	position: relative;
	isolation: isolate;
	padding-top: clamp(2rem, 4vw, 3.25rem);
	padding-bottom: clamp(3rem, 5vw, 5rem);
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(63, 212, 135, 0.08) 0%, rgba(255, 255, 255, 0) 32%),
		linear-gradient(135deg, #ffffff 0%, #f8faf9 54%, #f1f5f3 100%);
}

.site-main > section.hero--front-page {
	padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

.hero--front-page .hero__inner {
	display: grid;
	gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
	align-items: center;
}

.hero__content {
	max-width: 58rem;
}

.hero__title,
.value-proposition__title,
.highlight-panel__title,
.specialties__title,
.projects-preview__title,
.clients__title,
.contact-block__title,
.final-cta__title,
.service-hero__title,
.service-section__title,
.service-cta__title,
.architecture-hub__title,
.architecture-hub__section-title,
.architecture-card__title,
.entry-title {
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.05;
}

.hero__title {
	font-size: clamp(2.45rem, 7vw, 4.6rem);
	max-width: 17ch;
}

.hero__body {
	margin-top: var(--space-md);
	max-width: 40rem;
}

.specialties__intro,
.projects-preview__intro {
	margin-top: var(--space-sm);
	max-width: 48rem;
}

.hero__subtitle,
.value-proposition__text,
.highlight-panel__text,
.specialties__intro,
.projects-preview__intro,
.final-cta__text,
.site-footer__text,
.site-footer__address,
.project-card__excerpt,
.contact-block__item,
.service-hero__lead,
.service-section__content,
.service-section__intro,
.service-cta__text,
.service-page__placeholder,
.architecture-hub__intro,
.architecture-card__excerpt,
.entry-content {
	color: var(--color-text-muted);
	font-size: 1.05rem;
}

.hero__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.hero__metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem 1rem;
	margin: var(--space-lg) 0 0;
}

.hero__metric {
	min-width: 0;
	padding: 0.35rem 0 0.35rem 0.9rem;
	background-color: transparent;
	border-left: 2px solid rgba(47, 182, 112, 0.34);
}

.hero__metric-value {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: clamp(0.98rem, 2.8vw, 1.24rem);
	font-weight: 700;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.hero__metric-label {
	margin: 0.25rem 0 0;
	color: var(--color-text-muted);
	font-size: 0.82rem;
	line-height: 1.35;
}

.hero__media {
	position: relative;
	min-height: clamp(17rem, 42vw, 29rem);
	margin: 0;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.1), rgba(16, 24, 22, 0.03)),
		var(--color-surface-soft);
	border: 0;
	border-radius: clamp(1rem, 2.5vw, 1.75rem);
	box-shadow: none;
}

.hero__media::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(248, 250, 249, 0.96) 0%, rgba(248, 250, 249, 0.48) 16%, rgba(248, 250, 249, 0) 44%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 38%, rgba(241, 245, 243, 0.28) 100%);
	content: "";
	pointer-events: none;
}

.hero__media::after {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(270deg, rgba(241, 245, 243, 0.78) 0%, rgba(241, 245, 243, 0) 16%),
		linear-gradient(0deg, rgba(241, 245, 243, 0.58) 0%, rgba(241, 245, 243, 0) 22%);
	content: "";
	pointer-events: none;
}

.hero__image,
.hero__media-fallback {
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.hero__image {
	object-fit: cover;
	object-position: center;
	transition: transform 260ms ease;
}

.hero__media-fallback,
.specialty-card__media-fallback {
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.1), rgba(255, 255, 255, 0.82)),
		linear-gradient(45deg, rgba(10, 24, 20, 0.05) 0 1px, transparent 1px 22px),
		var(--color-surface-soft);
}

@media (max-width: 63.9375rem) {
	.site-main > section.hero--front-page {
		padding-top: clamp(1.5rem, 4vw, 2.25rem);
	}

	.hero--front-page .hero__inner {
		position: relative;
	}

	.hero--front-page .hero__content {
		position: relative;
		z-index: 3;
	}

	.hero--front-page .hero__media {
		position: absolute;
		inset: -0.75rem calc(-1 * var(--space-md)) 0;
		z-index: 0;
		min-height: 0;
		height: calc(100% + 1.5rem);
		margin: 0;
		opacity: 0.36;
		border-radius: 0;
		pointer-events: none;
		-webkit-mask-image:
			radial-gradient(ellipse at 60% 42%, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 62%, transparent 86%),
			linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
		-webkit-mask-composite: source-in;
		mask-image:
			radial-gradient(ellipse at 60% 42%, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 62%, transparent 86%),
			linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
		mask-composite: intersect;
	}

	.hero__media {
		min-height: clamp(15rem, 48vw, 24rem);
		border-radius: var(--radius-xl);
		-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
		mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
	}

	.hero--front-page .hero__image,
	.hero--front-page .hero__media-fallback {
		min-height: 100%;
	}

	.hero__media::before {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(247, 249, 248, 0.46) 100%),
			linear-gradient(90deg, rgba(247, 249, 248, 0.18), rgba(247, 249, 248, 0));
	}

	.hero--front-page .hero__media::before {
		background:
			linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.38) 46%, rgba(255, 255, 255, 0.12) 100%),
			linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.28) 48%, rgba(247, 249, 248, 0.68) 100%);
	}

	.hero__media::after {
		background: linear-gradient(0deg, rgba(247, 249, 248, 0.48), rgba(247, 249, 248, 0) 38%);
	}

	.hero--front-page .hero__media::after {
		background:
			linear-gradient(0deg, rgba(247, 249, 248, 0.72) 0%, rgba(247, 249, 248, 0.16) 46%, rgba(247, 249, 248, 0) 100%),
			linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 36%);
	}
}

.highlight-panel__inner,
.value-proposition__inner,
.contact-block__layout,
.final-cta__inner,
.page-content > article,
.post-card,
.service-cta__inner {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 248, 0.78)),
		var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-soft);
}

.value-proposition--problem,
.home-authority {
	background:
		linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%),
		var(--color-bg);
}

.specialties--divisions,
.projects-preview {
	background-color: #ffffff;
}

.home-sectors {
	background:
		linear-gradient(120deg, rgba(63, 212, 135, 0.08) 0%, rgba(255, 255, 255, 0) 30rem),
		linear-gradient(180deg, #f7f9f8 0%, #ffffff 100%);
}

.home-sectors .service-section__header {
	margin-bottom: var(--space-lg);
}

.home-sectors .service-page__container {
	position: relative;
}

.home-sector-carousel {
	position: relative;
	margin-inline: calc(var(--space-md) * -1);
	overflow: hidden;
}

.home-sector-carousel::before,
.home-sector-carousel::after {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: clamp(2rem, 9vw, 5rem);
	content: "";
	pointer-events: none;
}

.home-sector-carousel::before {
	left: 0;
	background: linear-gradient(90deg, #f7f9f8, rgba(247, 249, 248, 0));
}

.home-sector-carousel::after {
	right: 0;
	background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.home-sector-rail {
	display: flex;
	gap: var(--space-md);
	margin: 0;
	padding: 0 var(--space-md) var(--space-sm);
	overflow-x: auto;
	overflow-y: hidden;
	list-style: none;
	scroll-behavior: smooth;
	scroll-padding-inline: var(--space-md);
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.home-sector-rail::-webkit-scrollbar {
	display: none;
}

.home-sector-card {
	flex: 0 0 min(86vw, 30rem);
	min-width: 0;
	scroll-snap-align: start;
}

.home-sector-card--clone {
	display: none;
}

.home-sector-card__link {
	position: relative;
	display: grid;
	align-items: end;
	height: 100%;
	min-height: 18rem;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.12), rgba(255, 255, 255, 0.2)),
		var(--color-surface-soft);
	border: 1px solid rgba(10, 24, 20, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: 0 18px 44px rgba(12, 23, 20, 0.06);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
	will-change: transform;
}

.home-sector-card__link::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(5, 14, 12, 0) 26%, rgba(5, 14, 12, 0.38) 62%, rgba(5, 14, 12, 0.78) 100%),
		linear-gradient(90deg, rgba(5, 14, 12, 0.36), rgba(5, 14, 12, 0.04) 58%);
	content: "";
	pointer-events: none;
}

.home-sector-card--has-image .home-sector-card__link {
	min-height: 24rem;
}

.home-sector-card--no-image .home-sector-card__link {
	align-content: end;
	background:
		radial-gradient(circle at 18% 22%, rgba(63, 212, 135, 0.28), transparent 34%),
		linear-gradient(135deg, rgba(9, 45, 31, 0.86), rgba(16, 24, 22, 0.7)),
		linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px),
		var(--color-surface-strong);
}

.home-sector-card__link:hover,
.home-sector-card__link:focus-visible {
	border-color: rgba(47, 182, 112, 0.24);
	box-shadow: 0 22px 58px rgba(12, 23, 20, 0.09);
	transform: translateY(-2px);
}

.home-sector-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: var(--color-surface-soft);
}

.home-sector-card__media::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 34%),
		linear-gradient(0deg, rgba(5, 14, 12, 0.5), rgba(5, 14, 12, 0) 48%);
	content: "";
	pointer-events: none;
}

.home-sector-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.home-sector-card__accent {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	background:
		radial-gradient(circle at 20% 18%, rgba(63, 212, 135, 0.34), transparent 32%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.home-sector-card__content {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 0.5rem;
	align-content: end;
	width: 100%;
	min-height: 11rem;
	padding: clamp(1.15rem, 4vw, 1.6rem);
}

.home-sector-card__label,
.home-sector-card__description,
.home-sector-card__cta {
	display: block;
}

.home-sector-card__label {
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: clamp(1.2rem, 4vw, 1.65rem);
	font-weight: 700;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.home-sector-card__description {
	max-width: 29rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	line-height: 1.45;
}

.home-sector-card__cta {
	margin-top: 0.25rem;
	color: #8cf0bd;
	font-size: 0.9rem;
	font-weight: 700;
}

.home-sector-card__cta::after {
	content: " ->";
	transition: margin-left 180ms ease;
}

.home-sector-card__link:hover .home-sector-card__cta::after,
.home-sector-card__link:focus-visible .home-sector-card__cta::after {
	margin-left: 0.2rem;
}

.home-sector-card__link:hover .home-sector-card__image,
.home-sector-card__link:focus-visible .home-sector-card__image {
	transform: scale(1.02);
}

.home-sector-card__image {
	-webkit-user-drag: none;
	user-select: none;
}

.home-sector-carousel--autoplay .home-sector-rail {
	width: max-content;
	overflow: visible;
	scroll-snap-type: none;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.home-sector-carousel--dragging .home-sector-rail {
	cursor: grabbing;
}

.home-sector-carousel--dragging .home-sector-card__link {
	pointer-events: none;
}

.home-sector-carousel--autoplay .home-sector-card {
	scroll-snap-align: none;
}

.home-sector-carousel--autoplay .home-sector-card--clone {
	display: block;
}

.green-energy-showcase {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 249, 244, 0.82) 36%, rgba(247, 249, 248, 0.9) 68%, #ffffff 100%),
		linear-gradient(115deg, rgba(63, 212, 135, 0.08), transparent 54%),
		var(--color-bg);
}

.green-energy-showcase::before,
.green-energy-showcase::after {
	position: absolute;
	inset-inline: 0;
	z-index: -1;
	content: "";
	pointer-events: none;
}

.green-energy-showcase::before {
	top: 12%;
	height: 76%;
	background:
		radial-gradient(ellipse at 50% 48%, rgba(63, 212, 135, 0.12), rgba(63, 212, 135, 0.04) 34%, transparent 68%),
		linear-gradient(90deg, transparent, rgba(10, 24, 20, 0.05) 48%, transparent);
	filter: blur(18px);
}

.green-energy-showcase::after {
	top: 0;
	bottom: 0;
	background:
		linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #ffffff 100%);
}

.green-energy-showcase__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(var(--space-xl), 6vw, var(--space-3xl));
	width: min(100%, var(--container-width));
	min-height: clamp(34rem, 58vw, 44rem);
	margin-inline: auto;
	padding: clamp(var(--space-xl), 6vw, var(--space-3xl));
	overflow: hidden;
	isolation: isolate;
	color: #ffffff;
	background:
		radial-gradient(circle at 78% 22%, rgba(63, 212, 135, 0.24), transparent 30%),
		linear-gradient(135deg, #071711 0%, #10241c 58%, #1c2f27 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: clamp(1.35rem, 3vw, 2.25rem);
	box-shadow:
		0 38px 90px rgba(7, 23, 17, 0.16),
		0 10px 34px rgba(47, 182, 112, 0.08);
}

.green-energy-showcase__inner::before,
.green-energy-showcase__inner::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
}

.green-energy-showcase__inner::before {
	background-image: var(--green-energy-image);
	background-position: center right;
	background-size: cover;
	opacity: 0.92;
	transform: scale(1.02);
}

.green-energy-showcase--fallback .green-energy-showcase__inner::before {
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.22), transparent 34%),
		repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px),
		linear-gradient(135deg, #0b1c15, #1d3429);
	opacity: 1;
}

.green-energy-showcase__inner::after {
	background:
		linear-gradient(90deg, rgba(4, 13, 10, 0.92) 0%, rgba(6, 18, 14, 0.78) 38%, rgba(6, 18, 14, 0.26) 72%, rgba(6, 18, 14, 0.1) 100%),
		linear-gradient(180deg, rgba(5, 15, 12, 0.2) 0%, rgba(5, 15, 12, 0.56) 100%);
}

.green-energy-showcase__content,
.green-energy-showcase__metric {
	position: relative;
	z-index: 1;
}

.green-energy-showcase__content {
	max-width: 44rem;
	align-self: center;
}

.green-energy-showcase__eyebrow {
	margin: 0 0 var(--space-sm);
	color: rgba(214, 255, 230, 0.86);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.green-energy-showcase__title {
	max-width: 12ch;
	margin: 0;
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: clamp(2.45rem, 8vw, 5.9rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: 0;
	text-wrap: balance;
}

.green-energy-showcase__title span {
	display: block;
	color: var(--color-accent);
}

.green-energy-showcase__text {
	max-width: 39rem;
	margin: var(--space-md) 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1rem, 1.8vw, 1.16rem);
	line-height: 1.7;
}

.green-energy-showcase__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem clamp(0.9rem, 2vw, 1.35rem);
	margin: var(--space-lg) 0 0;
	padding: 0;
	list-style: none;
}

.green-energy-showcase__highlights li {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 600;
}

.green-energy-showcase__highlights li + li {
	padding-left: clamp(0.85rem, 2vw, 1.25rem);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.green-energy-showcase__highlights span {
	width: 0.55rem;
	height: 0.55rem;
	border: 1px solid rgba(63, 212, 135, 0.8);
	border-radius: 999px;
	box-shadow: 0 0 0 0.25rem rgba(63, 212, 135, 0.12);
}

.green-energy-showcase__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.green-energy-showcase__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.2rem;
	padding: 0.92rem 1.25rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.green-energy-showcase__button:hover,
.green-energy-showcase__button:focus-visible {
	transform: translateY(-2px);
}

.green-energy-showcase__button--primary {
	background-color: var(--color-accent);
	color: #071711;
	box-shadow: 0 18px 42px rgba(47, 182, 112, 0.3);
}

.green-energy-showcase__button--primary:hover,
.green-energy-showcase__button--primary:focus-visible {
	background-color: var(--color-accent-strong);
}

.green-energy-showcase__button--secondary {
	background-color: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.34);
	color: #ffffff;
	backdrop-filter: blur(12px);
}

.green-energy-showcase__button--secondary:hover,
.green-energy-showcase__button--secondary:focus-visible {
	background-color: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.52);
}

.green-energy-showcase__metric {
	align-self: end;
	justify-self: start;
	max-width: 18rem;
	padding: clamp(1rem, 3vw, 1.35rem);
	background: rgba(7, 23, 17, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 1.25rem;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.green-energy-showcase__metric strong,
.green-energy-showcase__metric span {
	display: block;
}

.green-energy-showcase__metric strong {
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: clamp(2rem, 6vw, 3.25rem);
	line-height: 0.95;
}

.green-energy-showcase__metric span {
	margin-top: 0.65rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (max-width: 63.9375rem) {
	.green-energy-showcase__inner {
		min-height: auto;
		padding: clamp(1.5rem, 8vw, 3rem);
	}

	.green-energy-showcase__inner::before {
		background-position: 62% center;
		opacity: 0.78;
	}

	.green-energy-showcase__inner::after {
		background:
			linear-gradient(90deg, rgba(4, 13, 10, 0.94) 0%, rgba(6, 18, 14, 0.76) 62%, rgba(6, 18, 14, 0.42) 100%),
			linear-gradient(180deg, rgba(5, 15, 12, 0.42) 0%, rgba(5, 15, 12, 0.72) 100%);
	}

	.green-energy-showcase__title {
		max-width: 11ch;
	}

	.green-energy-showcase__highlights {
		display: grid;
		gap: 0.8rem;
	}

	.green-energy-showcase__highlights li + li {
		padding-left: 0;
		border-left: 0;
	}

	.green-energy-showcase__metric {
		max-width: 100%;
		align-self: start;
	}
}

.highlight-panel {
	background:
		linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%),
		var(--color-bg);
}

.service-hero,
.architecture-hub__header {
	padding-block: var(--space-xl);
}

.service-hero__inner,
.architecture-hub__header .architecture-hub__inner {
	max-width: 58rem;
}

.service-hero__eyebrow,
.architecture-hub__eyebrow {
	margin-bottom: var(--space-sm);
	color: var(--color-accent);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.service-hero__title,
.architecture-hub__title {
	font-size: clamp(2.35rem, 8vw, 4.8rem);
	max-width: 15ch;
}

.service-hero__lead,
.architecture-hub__intro {
	margin-top: var(--space-lg);
	max-width: 44rem;
}

.service-hero__actions,
.service-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.service-section,
.service-cta,
.architecture-hub__content,
.architecture-hub__section {
	margin-top: var(--space-xl);
}

.service-section__header,
.service-section__title,
.architecture-hub__section-title {
	max-width: 44rem;
}

.service-section__header,
.architecture-hub__section-title {
	margin-bottom: var(--space-md);
}

.service-section__title,
.service-cta__title,
.architecture-hub__section-title {
	font-size: clamp(1.65rem, 4vw, 2.5rem);
	line-height: 1.12;
}

.service-section__content > * + *,
.service-cta__text {
	margin-top: var(--space-sm);
}

.service-section__intro {
	margin-top: var(--space-sm);
	max-width: 44rem;
}

.service-section__content + .service-list {
	margin-top: var(--space-md);
}

.service-list {
	display: grid;
	gap: var(--space-sm);
	list-style: none;
}

.service-list__item {
	padding: var(--space-md);
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: 0 10px 28px rgba(12, 23, 20, 0.04);
	min-width: 0;
	overflow-wrap: anywhere;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.service-list__item:hover {
	background-color: var(--color-surface);
	border-color: rgba(47, 182, 112, 0.22);
	box-shadow: var(--shadow-card);
	transform: translateY(-2px);
}

.service-list__link,
.service-list__label {
	display: block;
	color: var(--color-text);
	font-weight: 600;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.service-list__link:hover,
.service-list__link:focus-visible {
	color: var(--color-accent);
}

.service-list__title {
	font-family: var(--font-heading);
	font-size: 1.08rem;
	line-height: 1.25;
}

.service-list__text {
	margin-top: var(--space-xs);
	color: var(--color-text-muted);
}

.green-energy-page__feature {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.14), rgba(255, 255, 255, 0.82)),
		var(--color-surface-soft);
	border: 1px solid rgba(63, 212, 135, 0.24);
	border-radius: var(--radius-lg);
}

.green-energy-page__steps {
	display: grid;
	gap: var(--space-sm);
	list-style: none;
	counter-reset: green-energy-step;
}

.green-energy-page__step {
	position: relative;
	padding: var(--space-md) var(--space-md) var(--space-md) 4rem;
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	counter-increment: green-energy-step;
}

.green-energy-page__step::before {
	position: absolute;
	top: var(--space-md);
	left: var(--space-md);
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	color: #071711;
	font-size: 0.85rem;
	font-weight: 800;
	background-color: var(--color-accent);
	border-radius: 999px;
	content: counter(green-energy-step);
}

.service-list--ordered {
	counter-reset: service-step;
}

.service-list--ordered .service-list__item {
	position: relative;
	counter-increment: service-step;
}

.service-list--ordered .service-list__item::before {
	display: block;
	margin-bottom: var(--space-xs);
	color: var(--color-accent);
	font-weight: 700;
	content: counter(service-step, decimal-leading-zero);
}

.service-faq {
	display: grid;
	gap: var(--space-sm);
}

.service-faq__item {
	padding: var(--space-md);
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.service-faq__item[open] {
	border-color: var(--color-border-strong);
}

.service-faq__question {
	color: var(--color-text);
	font-weight: 700;
	cursor: pointer;
}

.service-faq__question::-webkit-details-marker {
	display: none;
}

.service-faq__answer {
	margin-top: var(--space-sm);
	color: var(--color-text-muted);
}

.service-page__placeholder {
	padding: var(--space-sm) var(--space-md);
	background-color: rgba(63, 212, 135, 0.08);
	border: 1px dashed var(--color-border-strong);
	border-radius: var(--radius-md);
}

.architecture-hub__grid {
	display: grid;
	gap: clamp(var(--space-sm), 2vw, var(--space-lg));
	align-items: stretch;
}

.architecture-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--space-sm);
	min-width: 0;
	min-height: auto;
	padding: clamp(1.35rem, 3vw, 1.9rem);
	overflow-wrap: anywhere;
}

.division-authority__grid {
	display: grid;
	gap: var(--space-sm);
	margin: 0;
}

.division-authority__item {
	padding: var(--space-md);
	background:
		linear-gradient(180deg, rgba(63, 212, 135, 0.09), rgba(255, 255, 255, 0.9)),
		var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: 0 12px 30px rgba(12, 23, 20, 0.05);
}

.division-authority__value {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
}

.division-authority__label {
	margin: var(--space-xs) 0 0;
	color: var(--color-text-muted);
}

.highlight-panel--partner .highlight-panel__inner {
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.15), rgba(255, 255, 255, 0.86) 62%),
		var(--color-surface);
	border-color: var(--color-border-strong);
}

.highlight-panel__inner {
	display: grid;
	gap: var(--space-lg);
}

.highlight-panel__content {
	max-width: 44rem;
}

.highlight-panel__body {
	margin-top: var(--space-sm);
}

.highlight-panel__actions {
	display: flex;
	align-items: center;
	justify-content: center;
}

.value-proposition__inner {
	display: grid;
	gap: var(--space-xl);
}

.value-proposition__inner--editorial {
	position: relative;
	align-items: start;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.value-proposition__body {
	margin-top: var(--space-md);
	max-width: 45rem;
}

.value-proposition__list {
	display: grid;
	gap: var(--space-sm);
	list-style: none;
}

.value-proposition__list--editorial {
	gap: 0;
	align-content: start;
	padding-top: 0.25rem;
	border-top: 1px solid rgba(10, 24, 20, 0.1);
}

.value-proposition__item {
	position: relative;
	padding: 0.85rem 0 0.85rem 1.35rem;
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid rgba(10, 24, 20, 0.08);
	border-radius: 0;
	font-weight: 600;
	line-height: 1.35;
}

.value-proposition__item:last-child {
	border-bottom: 0;
}

.value-proposition__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 0.42rem;
	height: 0.42rem;
	background-color: var(--color-accent);
	border-radius: 50%;
	transform: translateY(-50%);
	box-shadow: 0 0 0 0.22rem rgba(63, 212, 135, 0.12);
}

.specialties__header,
.projects-preview__header,
.clients__header {
	margin-bottom: var(--space-lg);
}

.specialties__grid,
.projects-preview__grid,
.clients__grid,
.site-footer__grid {
	display: grid;
	gap: var(--space-md);
}

.specialty-card,
.project-card,
.client-logo,
.architecture-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 248, 0.75)),
		var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.specialty-card:hover,
.project-card:hover,
.client-logo:hover,
.architecture-card:hover {
	border-color: rgba(47, 182, 112, 0.24);
	box-shadow: 0 20px 52px rgba(12, 23, 20, 0.1);
	transform: translateY(-2px);
}

.specialty-card:focus-within,
.project-card:focus-within,
.architecture-card:focus-within,
.post-card:focus-within {
	border-color: rgba(63, 212, 135, 0.42);
	box-shadow:
		0 0 0 0.14rem #ffffff,
		0 0 0 0.3rem rgba(63, 212, 135, 0.18),
		var(--shadow-card);
}

.specialty-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	padding: 0;
	gap: 0;
	min-width: 0;
	overflow-wrap: anywhere;
	overflow: hidden;
}

.specialty-card__content {
	padding: clamp(1.4rem, 4vw, 2rem);
}

.specialty-card__media {
	position: relative;
	aspect-ratio: 16 / 8.5;
	overflow: hidden;
	background-color: var(--color-surface-soft);
	border-bottom: 1px solid rgba(10, 24, 20, 0.08);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.specialty-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
	content: "";
	pointer-events: none;
}

.specialty-card__image,
.specialty-card__media-fallback {
	width: 100%;
	height: 100%;
}

.specialty-card__image {
	object-fit: cover;
	transition: transform 240ms ease;
}

.specialty-card:hover .specialty-card__image {
	transform: scale(1.02);
}

.specialty-card__title,
.project-card__title,
.architecture-card__title,
.site-footer__title,
.contact-block__details-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.architecture-card__title {
	margin: 0;
	line-height: 1.18;
}

.specialty-card__text {
	margin-top: var(--space-sm);
	color: var(--color-text-muted);
}

.specialty-card__link {
	align-self: flex-start;
	margin: 0 clamp(1.4rem, 4vw, 2rem) clamp(1.4rem, 4vw, 2rem);
}

.specialty-card__link,
.architecture-card__link,
.site-footer__menu a,
.site-footer__text a,
.site-footer__address a,
.contact-block__link {
	color: var(--color-text);
}

.site-footer__menu a,
.site-footer__text a,
.site-footer__address a,
.contact-block__link {
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
	transition: color 180ms ease;
}

.site-footer__menu a:hover,
.site-footer__text a:hover,
.site-footer__address a:hover,
.contact-block__link:hover {
	color: var(--color-accent-strong);
}

.architecture-card__link {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	line-height: 1.22;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.architecture-card__excerpt {
	margin: 0;
	line-height: 1.55;
}

.project-card {
	overflow: hidden;
}

.project-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(63, 212, 135, 0.16), rgba(16, 24, 22, 0.04)),
		var(--color-surface-soft);
}

.project-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.project-card:hover .project-card__image,
.project-card:focus-within .project-card__image {
	transform: scale(1.025);
}

.project-card__content {
	display: grid;
	gap: var(--space-md);
	padding: clamp(1.25rem, 4vw, 1.75rem);
}

.project-card__title {
	font-size: 1.45rem;
}

.project-card__title a {
	display: inline-flex;
	min-width: 0;
	overflow-wrap: anywhere;
}

.project-archive__description {
	max-width: 42rem;
}

.project-archive__pagination {
	margin-top: var(--space-xl);
}

.project-single__hero {
	display: grid;
	gap: var(--space-xl);
}

.project-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.project-single__meta-item {
	padding: 0.75rem 1rem;
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.project-single__meta-term {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.project-single__meta-description {
	margin: 0.25rem 0 0;
	color: var(--color-text);
}

.project-single__media {
	margin-bottom: var(--space-xl);
	overflow: hidden;
	border-radius: var(--radius-lg);
	background-color: var(--color-surface-soft);
}

.project-single__image {
	width: 100%;
	height: auto;
}

.project-single__layout {
	display: grid;
	gap: var(--space-xl);
}

.project-single__content {
	min-width: 0;
}

.project-single__related {
	padding-bottom: 0;
}

.project-details {
	padding: clamp(1.25rem, 4vw, 1.75rem);
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.project-details__title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0;
}

.project-details__list {
	display: grid;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.project-details__item {
	padding-bottom: var(--space-sm);
	border-bottom: 1px solid rgba(10, 24, 20, 0.08);
}

.project-details__item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.project-details__term {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text-muted);
}

.project-details__description {
	margin: 0.35rem 0 0;
	color: var(--color-text);
}

.project-details__placeholder {
	color: var(--color-text-muted);
}

.projects-preview__empty {
	padding: 1.5rem;
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-text-muted);
}

.clients__grid {
	list-style: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-logo {
	display: grid;
	place-items: center;
	min-height: 7.5rem;
	padding: var(--space-md);
	text-align: center;
}

.client-logo__label {
	font-family: var(--font-heading);
	font-size: 1rem;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.contact-block__layout {
	display: grid;
	gap: var(--space-xl);
}

.contact-form {
	display: grid;
	gap: var(--space-md);
	margin-top: var(--space-lg);
}

.contact-form__note {
	font-size: 0.95rem;
	color: var(--color-text-muted);
}

.contact-form__status {
	padding: 1rem 1.1rem;
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.contact-form__status--prepared,
.contact-form__status--success {
	border-color: var(--color-border-strong);
	background-color: rgba(63, 212, 135, 0.08);
}

.contact-form__status--error {
	border-color: rgba(255, 123, 123, 0.3);
	background-color: rgba(255, 123, 123, 0.08);
}

.contact-form__status-message {
	color: var(--color-text);
}

.contact-form__status-list {
	display: grid;
	gap: 0.35rem;
	margin-top: var(--space-xs);
	padding-left: 1.25rem;
	color: var(--color-text-muted);
}

.contact-form__field {
	display: grid;
	gap: 0.55rem;
}

.contact-form__field--checkbox {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
}

.contact-form__label,
.contact-block__label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text);
}

.contact-form__input,
.contact-form__textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	background-color: var(--color-surface);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: var(--color-text-muted);
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__checkbox:focus-visible {
	outline: 2px solid transparent;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 0.2rem rgba(63, 212, 135, 0.16);
}

.contact-form__checkbox {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.15rem;
	accent-color: var(--color-accent);
}

.contact-form__actions {
	display: flex;
}

.contact-block__details {
	display: grid;
	align-content: start;
	gap: var(--space-md);
}

.contact-block__list {
	display: grid;
	gap: var(--space-md);
	list-style: none;
}

.contact-block__item {
	display: grid;
	gap: 0.35rem;
	padding: 1rem 1.1rem;
	background-color: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.final-cta__inner {
	text-align: center;
}

.final-cta__title {
	max-width: 16ch;
	margin-inline: auto;
	font-size: clamp(2.2rem, 7vw, 4rem);
}

.final-cta__text {
	max-width: 46rem;
	margin: var(--space-md) auto 0;
}

.final-cta__actions {
	display: flex;
	justify-content: center;
	margin-top: var(--space-lg);
}

.site-footer {
	padding: 0 var(--space-md);
	border-top: 1px solid rgba(10, 24, 20, 0.08);
	background:
		linear-gradient(180deg, #ffffff 0%, #f3f7f5 42%, #eef3f1 100%),
		var(--color-bg);
}

.site-footer__wide-inner {
	width: min(100%, 92rem);
	margin-inline: auto;
}

.site-footer__clients {
	margin-inline: calc(-1 * var(--space-md));
	padding: clamp(1.35rem, 4vw, 2rem) var(--space-md);
	overflow: hidden;
	border-bottom: 1px solid rgba(10, 24, 20, 0.07);
	background:
		linear-gradient(90deg, rgba(63, 212, 135, 0.045), rgba(255, 255, 255, 0.76), rgba(63, 212, 135, 0.045)),
		rgba(255, 255, 255, 0.56);
}

.site-footer__eyebrow {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.site-footer__clients-marquee {
	margin-top: var(--space-md);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.site-footer__clients-track {
	display: flex;
	width: max-content;
}

.site-footer__clients-marquee--animated .site-footer__clients-track {
	animation: footer-client-marquee 42s linear infinite;
}

.site-footer__clients-marquee:hover .site-footer__clients-track,
.site-footer__clients-marquee:focus-within .site-footer__clients-track {
	animation-play-state: paused;
}

.site-footer__clients-group,
.site-footer__trust-logos {
	display: flex;
	align-items: center;
	gap: clamp(1.75rem, 5vw, 4.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__clients-group {
	padding-right: clamp(1.75rem, 5vw, 4.5rem);
}

.site-footer__client-logo {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: clamp(7rem, 15vw, 10rem);
	height: 3.75rem;
}

.site-footer__client-logo a,
.site-footer__client-logo span,
.site-footer__trust-logo a,
.site-footer__trust-logo span {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

.site-footer__client-logo__image,
.site-footer__trust-logo__image {
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	transition:
		filter 180ms ease,
		opacity 180ms ease,
		transform 180ms ease;
}

.site-footer__client-logo__image {
	max-height: 2.75rem;
	filter: grayscale(1);
	opacity: 0.64;
}

.site-footer__trust-logo__image {
	filter: none;
	opacity: 1;
}

.site-footer__client-logo a:hover .site-footer__client-logo__image,
.site-footer__client-logo a:focus-visible .site-footer__client-logo__image,
.site-footer__trust-logo a:hover .site-footer__trust-logo__image,
.site-footer__trust-logo a:focus-visible .site-footer__trust-logo__image {
	filter: grayscale(0);
	opacity: 1;
	transform: translateY(-2px);
}

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

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

.site-footer__inner {
	padding-top: clamp(2.5rem, 7vw, 5.5rem);
	padding-bottom: var(--space-lg);
}

.site-footer__grid {
	position: relative;
	grid-template-columns: 1fr;
	gap: clamp(var(--space-xl), 6vw, var(--space-3xl));
	padding-block: clamp(1.5rem, 5vw, 3rem);
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 33rem;
	text-align: center;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	max-width: min(15rem, 76vw);
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
}

.site-footer__logo-image {
	display: block;
	width: auto;
	max-width: min(15rem, 76vw);
	height: auto;
	max-height: 7rem;
	object-fit: contain;
	object-position: center;
}

.site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: var(--space-lg);
}

.site-footer__brand-note {
	max-width: 31rem;
	margin: var(--space-md) 0 0;
	color: var(--color-text-muted);
	font-size: 0.84rem;
	line-height: 1.65;
}

.site-footer__social-link {
	display: grid;
	width: 2.45rem;
	height: 2.45rem;
	place-items: center;
	color: var(--color-text-muted);
	border: 1px solid rgba(10, 24, 20, 0.1);
	border-radius: 999px;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.site-footer__social-link svg {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	color: var(--color-accent-strong);
	background-color: rgba(63, 212, 135, 0.09);
	border-color: rgba(47, 182, 112, 0.34);
	transform: translateY(-2px);
}

.site-footer__contact {
	position: relative;
}

.site-footer__contact-content {
	position: relative;
	max-width: 49rem;
}

.site-footer__contact-grid {
	display: grid;
	gap: var(--space-md);
	margin-top: var(--space-lg);
}

.site-footer__contact-link {
	display: grid;
	grid-template-columns: 1.8rem minmax(0, 1fr);
	gap: 0.2rem;
	min-width: 0;
	color: var(--color-text);
	text-decoration: none;
}

.site-footer__contact-link i,
.site-footer__address i {
	display: grid;
	grid-row: span 2;
	width: 1.65rem;
	height: 1.65rem;
	place-items: center;
	color: var(--color-accent-strong);
	background-color: rgba(63, 212, 135, 0.1);
	border-radius: 999px;
}

.site-footer__contact-link svg,
.site-footer__address svg {
	width: 0.95rem;
	height: 0.95rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__contact-link span {
	color: var(--color-text-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer__contact-link strong {
	min-width: 0;
	font-size: clamp(0.98rem, 2vw, 1.08rem);
	font-weight: 600;
	overflow-wrap: break-word;
	word-break: normal;
}

.site-footer__address {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-top: var(--space-lg);
	color: var(--color-text-muted);
	font-size: 0.95rem;
	font-style: normal;
	line-height: 1.65;
}

.site-footer__address i {
	flex: 0 0 auto;
}

.site-footer__address a,
.site-footer__contact-link {
	transition: color 180ms ease;
}

.site-footer__address a:hover,
.site-footer__address a:focus-visible,
.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
	color: var(--color-accent-strong);
}

.site-footer__location-link {
	display: inline-flex;
	align-items: center;
	min-height: 2.65rem;
	margin-top: var(--space-md);
	padding: 0.72rem 1rem;
	color: var(--color-accent-strong);
	background-color: transparent;
	border: 1px solid rgba(47, 182, 112, 0.42);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.site-footer__location-link:hover,
.site-footer__location-link:focus-visible {
	background-color: rgba(63, 212, 135, 0.1);
	border-color: rgba(47, 182, 112, 0.62);
	box-shadow: 0 12px 24px rgba(47, 182, 112, 0.1);
	transform: translateY(-2px);
}

.site-footer__trust {
	display: grid;
	gap: var(--space-lg);
	margin-top: clamp(2.5rem, 7vw, 5.25rem);
	padding-block: var(--space-lg);
	border-top: 1px solid rgba(10, 24, 20, 0.08);
	border-bottom: 1px solid rgba(10, 24, 20, 0.08);
}

.site-footer__trust-group {
	min-width: 0;
}

.site-footer__trust-logos {
	flex-wrap: wrap;
	gap: var(--space-lg) clamp(var(--space-lg), 4vw, var(--space-xl));
	margin-top: var(--space-lg);
}

.site-footer__trust-logo {
	width: clamp(5.25rem, 15vw, 7.5rem);
	height: 4.25rem;
}

.site-footer__trust-logo__image {
	max-height: 4rem;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	padding-top: var(--space-lg);
}

.site-footer__copy {
	color: var(--color-text-muted);
	font-size: 0.88rem;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.1rem;
}

.site-footer__legal a {
	color: var(--color-text-muted);
	font-size: 0.88rem;
	text-decoration: none;
	transition: color 180ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
	color: var(--color-accent-strong);
}

.page-content > article,
.post-card {
	max-width: 52rem;
}

.project-single > article {
	max-width: min(100%, var(--container-width));
}

.entry-header {
	margin-bottom: var(--space-md);
}

.entry-title {
	font-size: clamp(2rem, 8vw, 3.6rem);
}

.entry-content > * + * {
	margin-top: var(--space-md);
}

.post-listing {
	display: grid;
	gap: var(--space-md);
}

.post-card {
	display: grid;
	gap: var(--space-md);
}

.post-card .entry-title {
	font-size: clamp(1.6rem, 5vw, 2.3rem);
}

.post-listing__pagination {
	margin-top: var(--space-lg);
}

.has-js .site-menu-toggle {
	display: inline-flex;
}

.has-js .site-header__panel {
	display: none;
}

.has-js .site-header--menu-open .site-header__panel {
	position: absolute;
	top: calc(100% + 1px);
	left: var(--space-md);
	right: var(--space-md);
	z-index: 25;
	display: grid;
	padding: var(--space-md);
	background-color: rgba(255, 255, 255, 0.98);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

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

@media (min-width: 40rem) {
	.site-topbar__inner {
		justify-content: flex-start;
	}

	.site-topbar--email-tablet .site-topbar__link--email {
		display: inline-flex;
	}

	.site-main > section,
	.page-content,
	.post-listing {
		padding-inline: var(--space-lg);
	}

	.hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.specialties__grid,
	.projects-preview__grid,
	.architecture-hub__grid,
	.service-list,
	.division-authority__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

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

	.site-footer__contact-link strong {
		white-space: nowrap;
	}

	.site-footer__logo,
	.site-footer__logo-image {
		max-width: 17rem;
	}

	.site-footer__logo-image {
		max-height: 8.25rem;
	}

}

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

	.site-header,
	.site-header__inner,
	.site-navigation__menu a,
	.site-header__cta,
	.hero__cta,
	.highlight-panel__cta,
	.project-card__link,
	.contact-form__submit,
	.final-cta__button,
	.service-cta__button,
	.service-list__item,
	.home-sector-card__link,
	.home-sector-card__image,
	.hero__image,
	.specialty-card,
	.project-card,
	.client-logo,
	.architecture-card,
	.specialty-card__image,
	.project-card__image,
	.home-sector-card__cta::after {
		transition: none;
	}

	.site-footer__clients-track {
		animation: none !important;
		transform: none !important;
	}

	.site-footer__clients-group--clone {
		display: none;
	}

	.site-footer__client-logo__image,
	.site-footer__trust-logo__image,
	.site-footer__social-link {
		transition: none;
	}

	.site-navigation__menu a:hover,
	.site-header__cta:hover,
	.hero__cta:hover,
	.highlight-panel__cta:hover,
	.project-card__link:hover,
	.contact-form__submit:hover,
	.final-cta__button:hover,
	.service-cta__button:hover,
	.service-list__item:hover,
	.home-sector-card__link:hover,
	.home-sector-card__link:focus-visible,
	.home-sector-card__link:hover .home-sector-card__image,
	.home-sector-card__link:focus-visible .home-sector-card__image,
	.home-sector-card__link:hover .home-sector-card__cta::after,
	.home-sector-card__link:focus-visible .home-sector-card__cta::after,
	.specialty-card:hover,
	.project-card:hover,
	.client-logo:hover,
	.architecture-card:hover,
	.specialty-card:hover .specialty-card__image,
	.project-card:hover .project-card__image,
	.project-card:focus-within .project-card__image {
		transform: none;
	}

	.home-sector-rail {
		scroll-behavior: auto;
	}

	.home-sector-carousel {
		overflow: visible;
	}

	.home-sector-carousel::before,
	.home-sector-carousel::after {
		display: none;
	}

	.home-sector-carousel--autoplay .home-sector-rail {
		width: auto;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		transform: none !important;
	}

	.home-sector-card__link:hover .home-sector-card__cta::after,
	.home-sector-card__link:focus-visible .home-sector-card__cta::after {
		margin-left: 0;
	}
}

@media (min-width: 64rem) {
	.site-topbar {
		padding-inline: clamp(1.5rem, 3.5vw, 3rem);
	}

	.site-topbar--desktop-only {
		display: block;
	}

	.site-topbar__inner {
		justify-content: space-between;
		min-height: 2.25rem;
	}

	.site-topbar__link--email,
	.site-topbar__socials {
		display: inline-flex;
	}

	.site-topbar__social-link {
		justify-content: center;
		width: 1.8rem;
		height: 1.8rem;
	}

	.site-topbar__social-link svg {
		width: 1rem;
		height: 1rem;
	}

	.site-header {
		padding-inline: clamp(1.5rem, 3.5vw, 3rem);
	}

	.site-header__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: clamp(1rem, 2vw, 2.25rem);
		min-height: 4.125rem;
		flex-wrap: nowrap;
	}

	.site-header__branding {
		flex: 0 0 auto;
		max-width: min(15rem, 20vw);
	}

	.site-header__logo img,
	.site-header .custom-logo {
		max-width: min(15rem, 20vw);
		max-height: 2.75rem;
	}

	.site-menu-toggle,
	.has-js .site-menu-toggle {
		display: none;
	}

	.site-header__panel,
	.has-js .site-header__panel,
	.has-js .site-header--menu-open .site-header__panel {
		position: static;
		display: flex;
		flex: 1 1 auto;
		align-items: center;
		justify-content: flex-end;
		gap: clamp(1rem, 2vw, 2.5rem);
		min-width: 0;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.site-navigation {
		flex: 1 1 auto;
		min-width: 0;
		width: auto;
	}

	.site-header__panel .site-navigation__menu {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		gap: clamp(0.65rem, 1.15vw, 1.45rem);
		min-width: 0;
	}

	.site-navigation__menu a {
		white-space: nowrap;
		font-size: clamp(0.82rem, 0.72vw + 0.25rem, 0.93rem);
	}

	.site-header__actions {
		flex: 0 0 auto;
		flex-wrap: nowrap;
		align-items: center;
		gap: clamp(0.55rem, 0.9vw, 0.85rem);
	}

	.site-header__actions .site-header__cta {
		width: auto;
		white-space: nowrap;
		min-height: 2.75rem;
		padding: 0.75rem clamp(0.85rem, 1vw, 1.15rem);
		font-size: clamp(0.8rem, 0.68vw + 0.24rem, 0.9rem);
	}

	.site-header__mobile-socials {
		display: none;
	}

	.hero,
	.value-proposition,
	.projects-preview,
	.clients,
	.home-sectors,
	.home-authority,
	.contact-block,
	.green-energy-showcase,
	.final-cta,
	.specialties,
	.highlight-panel {
		padding-top: var(--space-3xl);
		padding-bottom: var(--space-3xl);
	}

	.hero--front-page {
		padding-top: clamp(2.5rem, 4vw, 3.75rem);
		padding-bottom: clamp(3.75rem, 6vw, 5.5rem);
	}

	.site-main > section.hero--front-page {
		padding-top: 0.25rem;
	}

	.hero--front-page .hero__inner {
		grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.08fr);
		gap: clamp(var(--space-xl), 3vw, var(--space-2xl));
	}

	.hero--front-page .hero__content {
		position: relative;
		z-index: 3;
		max-width: 44rem;
	}

	.hero__media {
		min-height: clamp(25rem, 38vw, 34rem);
		margin-right: min(-7vw, -3rem);
		-webkit-mask-image:
			linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%),
			linear-gradient(180deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
		-webkit-mask-composite: source-in;
		mask-image:
			linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%),
			linear-gradient(180deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
		mask-composite: intersect;
		border-radius: 0;
	}

	.highlight-panel__inner,
	.value-proposition__inner,
	.contact-block__layout {
		grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 1fr);
		align-items: center;
	}

	.value-proposition__inner--editorial {
		grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
		gap: clamp(var(--space-xl), 6vw, var(--space-3xl));
	}

	.value-proposition__inner--reverse .value-proposition__content {
		order: 2;
	}

	.value-proposition__inner--reverse .value-proposition__list {
		order: 1;
	}

	.project-single__layout {
		grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 1fr);
		align-items: start;
	}

	.specialties__grid,
	.projects-preview__grid,
	.architecture-hub__grid,
	.division-authority__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.specialties--divisions .specialties__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-sector-rail {
		gap: var(--space-lg);
		padding: 0 4rem var(--space-sm) 0;
		scroll-padding-inline: 0;
	}

	.home-sector-card {
		flex-basis: clamp(21rem, 31vw, 30rem);
	}

	.home-sector-card__link {
		min-height: 23rem;
	}

	.home-sector-card--has-image .home-sector-card__link {
		min-height: 28rem;
	}

	.highlight-panel__actions {
		justify-content: center;
		align-self: stretch;
	}

	.green-energy-showcase__inner {
		grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
		align-items: center;
		width: min(100%, 86rem);
		min-height: clamp(30rem, 43vw, 36rem);
		gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
		padding: clamp(2.75rem, 4.6vw, 4.25rem) clamp(var(--space-2xl), 6vw, 5rem);
	}

	.green-energy-showcase__content {
		max-width: 55rem;
	}

	.green-energy-showcase__title {
		max-width: 17ch;
		font-size: clamp(2.75rem, 5vw, 4.85rem);
	}

	.green-energy-showcase__text {
		max-width: 48rem;
	}

	.green-energy-showcase__metric {
		justify-self: end;
		margin-right: clamp(0rem, 2vw, var(--space-lg));
		margin-bottom: 0;
	}

	.clients__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.site-footer__grid {
		grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
		align-items: center;
	}

	.site-footer__brand {
		align-items: flex-start;
		text-align: left;
	}

	.site-footer__brand-note {
		max-width: none;
		white-space: nowrap;
	}

	.site-footer__contact-content {
		max-width: 46rem;
		padding-left: clamp(var(--space-lg), 4vw, var(--space-2xl));
		border-left: 1px solid rgba(10, 24, 20, 0.1);
	}

	.site-footer__logo,
	.site-footer__logo-image {
		max-width: 22rem;
	}

	.site-footer__logo-image {
		max-height: 10.75rem;
	}

	.site-footer__trust {
		grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
		gap: clamp(var(--space-xl), 6vw, var(--space-3xl));
	}

	.site-footer__trust-group + .site-footer__trust-group {
		padding-left: var(--space-xl);
		border-left: 1px solid rgba(10, 24, 20, 0.08);
	}

	.site-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@supports (backdrop-filter: blur(12px)) {
	@media (min-width: 64rem) {
		.site-topbar {
			background-color: rgba(247, 249, 248, 0.78);
			backdrop-filter: blur(10px);
		}

		.site-header {
			background-color: rgba(255, 255, 255, 0.78);
			backdrop-filter: blur(12px);
		}

		.site-header--scrolled {
			background-color: rgba(255, 255, 255, 0.9);
			backdrop-filter: blur(18px);
		}

		.site-header--scrolled .site-header__inner {
			background-color: transparent;
		}
	}
}
