.amec-site-header__inner,
.amec-site-footer__inner,
.amec-section__inner {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

/* Progressive section motion. Classes are added only when the motion script runs. */
.amec-reveal {
	opacity: 0;
	translate: 0 22px;
	transition:
		opacity 620ms cubic-bezier(.22, 1, .36, 1),
		translate 620ms cubic-bezier(.22, 1, .36, 1);
	transition-delay: var(--amec-reveal-delay, 0ms);
}

.amec-reveal.is-visible {
	opacity: 1;
	translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
	.amec-reveal,
	.amec-reveal.is-visible {
		opacity: 1;
		translate: none;
		transition: none;
	}
}

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

.amec-site-logo {
	color: var(--amec-dark);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0;
	text-decoration: none;
}

.amec-site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.amec-site-nav a {
	color: var(--amec-ink);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
}

.amec-site-nav a:hover,
.amec-site-nav a:focus {
	color: var(--amec-accent);
}

.amec-site-header__cta,
.amec-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--amec-accent);
	color: #ffffff !important;
	font-weight: 700;
	text-decoration: none !important;
}

.amec-site-footer {
	background: var(--amec-dark);
	color: #ffffff;
	padding: 64px 0 28px;
}

.amec-site-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 36px;
}

.amec-site-footer a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
}

.amec-site-footer a:hover,
.amec-site-footer a:focus {
	color: #ffffff;
}

.amec-site-footer h3,
.amec-site-footer h4 {
	color: #ffffff;
	margin: 0 0 14px;
}

.amec-site-footer p,
.amec-site-footer li {
	color: rgba(255, 255, 255, 0.72);
}

.amec-site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.amec-page {
	color: var(--amec-ink);
}

.amec-section {
	padding: clamp(58px, 7vw, 104px) 0;
}

.amec-section--soft {
	background: var(--amec-soft);
}

.amec-section--dark {
	background: var(--amec-dark);
	color: #ffffff;
}

.amec-kicker {
	margin: 0 0 14px;
	color: var(--amec-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.amec-heading {
	max-width: 780px;
	margin: 0;
	color: inherit;
	font-size: clamp(2.2rem, 5vw, 5rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.amec-lede {
	max-width: 680px;
	margin: 20px 0 0;
	color: var(--amec-muted);
	font-size: clamp(1rem, 1.8vw, 1.22rem);
	line-height: 1.7;
}

.amec-section--dark .amec-lede,
.amec-section--dark p {
	color: rgba(255, 255, 255, 0.76);
}

.amec-hero {
	min-height: 680px;
	display: grid;
	align-items: end;
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.amec-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 10, 12, 0.82), rgba(8, 10, 12, 0.38));
}

.amec-hero > .amec-section__inner {
	position: relative;
	padding-bottom: clamp(72px, 9vw, 120px);
	color: #ffffff;
}

.amec-hero .amec-lede {
	color: rgba(255, 255, 255, 0.82);
}

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

.amec-card {
	min-width: 0;
	padding: 28px;
	background: #ffffff;
	border: 1px solid var(--amec-line);
}

.amec-card h3 {
	margin: 0 0 12px;
	font-size: 1.25rem;
}

.amec-card p {
	margin: 0;
	color: var(--amec-muted);
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.amec-split {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.amec-split img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.amec-featured-projects {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.amec-featured-project {
	min-width: 0;
	background: #ffffff;
	border: 1px solid var(--amec-line);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.amec-featured-project__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #d7d2c9;
}

.amec-featured-project__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 260ms ease;
}

.amec-featured-project__body {
	padding: 20px;
}

.amec-featured-project h3 {
	margin: 0 0 12px;
	font-size: 1.12rem;
}

.amec-featured-project a {
	color: inherit;
	text-decoration: none;
}

.amec-featured-project__link {
	color: var(--amec-accent) !important;
	font-weight: 700;
}

.amec-featured-project:hover,
.amec-featured-project:focus-within {
	transform: translateY(-4px);
	border-color: rgba(255, 94, 20, 0.34);
	box-shadow: 0 22px 55px rgba(21, 23, 25, 0.11);
}

.amec-featured-project:hover .amec-featured-project__media img,
.amec-featured-project:focus-within .amec-featured-project__media img {
	transform: scale(1.035);
}

.amec-contact-link {
	color: inherit;
	text-decoration: none;
}

.amec-contact-link:hover,
.amec-contact-link:focus {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

body.page-id-781:not(.elementor-editor-active) .heading-section-subtitle,
body.page-id-781:not(.elementor-editor-active) .heading-section-subtitle a,
body.page-id-781:not(.elementor-editor-active) .elementor-element-e87e4bd,
body.page-id-781:not(.elementor-editor-active) .elementor-element-e87e4bd a {
	overflow-wrap: anywhere;
	word-break: normal;
}

.amec-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: min(1120px, calc(100vw - 48px));
	margin-inline: auto;
}

.amec-proof-grid article {
	min-width: 0;
	padding: clamp(22px, 3vw, 30px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.amec-proof-grid article:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.13);
}

.amec-proof-grid strong {
	display: block;
	margin: 0 0 10px;
	font-size: 1.05rem;
	line-height: 1.2;
}

.amec-proof-grid span {
	display: block;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.95rem;
	line-height: 1.65;
}

body.page-id-780:not(.elementor-editor-active) .elementor-element-565f2397 .elementor-heading-title {
	max-width: min(920px, calc(100vw - 48px));
	font-size: clamp(2rem, 2.4vw, 2.8rem) !important;
	line-height: 1.04 !important;
	margin-inline: auto;
}

body.page-id-780:not(.elementor-editor-active) .elementor-element-53133757,
body.page-id-780:not(.elementor-editor-active) .elementor-element-bc3da20,
body.page-id-780:not(.elementor-editor-active) .elementor-element-7b9abca5 {
	text-align: center;
}

body.page-id-780:not(.elementor-editor-active) .elementor-element-53133757 .jeg-elementor-kit,
body.page-id-780:not(.elementor-editor-active) .elementor-element-bc3da20 .jeg-elementor-kit,
body.page-id-780:not(.elementor-editor-active) .elementor-element-7b9abca5 .jeg-elementor-kit {
	align-items: center;
	justify-content: center;
}

body.page-id-779:not(.elementor-editor-active) .elementor-element-177dcd5e .feature-list-title {
	text-align: inherit;
}

.amec-contact-enhancement {
	position: relative;
	z-index: 1;
	padding: clamp(124px, 12vw, 168px) 0 clamp(56px, 8vw, 96px);
	background: #f5f3ef;
	color: var(--amec-dark);
}

.amec-contact-enhancement__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(24px, 5vw, 56px);
	align-items: stretch;
	width: min(1160px, calc(100% - 48px));
	margin: 0 auto;
}

.amec-contact-enhancement__map {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: #d7d2c9;
}

.amec-contact-enhancement__map iframe {
	display: block;
	width: 100%;
	min-height: 100%;
	aspect-ratio: 4 / 5;
	border: 0;
	filter: saturate(0.86) contrast(1.04);
}

.amec-contact-enhancement__map a {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	background: #ffffff;
	color: var(--amec-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.amec-contact-enhancement__map a:hover,
.amec-contact-enhancement__map a:focus-visible {
	transform: translateY(-1px);
	background: var(--amec-dark);
	color: #ffffff;
	outline: none;
}

.amec-contact-enhancement__form-panel {
	display: grid;
	align-content: start;
	gap: 18px;
	padding: clamp(28px, 4vw, 44px);
	background: #ffffff;
	border: 1px solid rgba(21, 23, 25, 0.1);
	box-shadow: 0 24px 70px rgba(21, 23, 25, 0.08);
}

.amec-contact-enhancement__eyebrow {
	margin: 0;
	color: var(--amec-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.amec-contact-enhancement h2 {
	max-width: 12ch;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.55rem);
	line-height: 1.02;
}

.amec-contact-enhancement__form-panel > p:not(.amec-contact-enhancement__eyebrow) {
	max-width: 58ch;
	margin: 0;
	color: var(--amec-muted);
	line-height: 1.7;
}

.amec-form-notice {
	padding: 13px 16px;
	border: 1px solid rgba(21, 23, 25, 0.12);
	font-weight: 700;
	line-height: 1.45;
}

.amec-form-notice--success {
	background: #edf7ef;
	color: #1d5a2d;
}

.amec-form-notice--error {
	background: #fff1ed;
	color: #8a321f;
}

.amec-project-form {
	display: grid;
	gap: 16px;
	margin-top: 6px;
}

.amec-project-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.amec-project-form label {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--amec-dark);
	font-size: 0.84rem;
	font-weight: 800;
}

.amec-project-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.amec-project-form input,
.amec-project-form select,
.amec-project-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(21, 23, 25, 0.16);
	border-radius: 0;
	background: #ffffff;
	color: var(--amec-dark);
	font: inherit;
	font-weight: 500;
	line-height: 1.4;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.amec-project-form textarea {
	resize: vertical;
}

.amec-project-form input:focus,
.amec-project-form select:focus,
.amec-project-form textarea:focus {
	border-color: var(--amec-accent);
	box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.12);
	outline: none;
}

.amec-project-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid var(--amec-dark);
	border-radius: 999px;
	background: var(--amec-dark);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
}

.amec-project-form button:hover,
.amec-project-form button:focus-visible {
	border-color: var(--amec-accent);
	background: var(--amec-accent);
	color: #ffffff;
}

@media (max-width: 900px) {
	.amec-site-header__inner,
	.amec-site-nav {
		flex-wrap: wrap;
	}

	body.home:not(.elementor-editor-active) #page > .elementor-742 {
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 10px 30px rgba(15, 17, 19, 0.08);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
	}

	body.home:not(.elementor-editor-active) .amec-shortcode-header {
		color: var(--amec-dark);
	}

	body.home:not(.elementor-editor-active) .amec-shortcode-header .amec-kit-logo img {
		filter: none;
	}

	body.home:not(.elementor-editor-active) .amec-shortcode-header__toggle {
		border-color: rgba(21, 23, 25, 0.18);
		background: rgba(255, 255, 255, 0.86);
		color: var(--amec-dark);
	}

	body.home:not(.elementor-editor-active) .amec-shortcode-header__toggle:hover,
	body.home:not(.elementor-editor-active) .amec-shortcode-header__toggle:focus-visible {
		border-color: rgba(21, 23, 25, 0.32);
		background: #ffffff;
		color: var(--amec-dark);
	}

	.amec-shortcode-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 82px;
	}

	.amec-shortcode-header__nav {
		display: none;
	}

	.amec-shortcode-header__cta {
		display: none;
	}

	.amec-shortcode-header__toggle {
		display: inline-flex;
	}

	.amec-split,
	.amec-grid,
	.amec-featured-projects,
	.amec-proof-grid,
	.amec-contact-enhancement__inner,
	.amec-site-footer__inner {
		grid-template-columns: 1fr;
	}

	.amec-contact-enhancement__map iframe {
		aspect-ratio: 16 / 10;
		min-height: 340px;
	}

	.amec-hero {
		min-height: 560px;
	}
}

@media (max-width: 620px) {
	html,
	body {
		overflow-x: hidden;
	}

	body:not(.elementor-editor-active) .elementor-section.elementor-section-boxed > .elementor-container {
		width: 100%;
		max-width: 100%;
	}

	body:not(.elementor-editor-active) .elementor-widget-text-editor {
		max-width: 100%;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	body.home:not(.elementor-editor-active) .elementor-element-5bf93800,
	body.home:not(.elementor-editor-active) .elementor-element-1e0eae7e,
	body.home:not(.elementor-editor-active) .elementor-element-7fa842ab,
	body.home:not(.elementor-editor-active) .elementor-element-a0a97ba {
		display: none !important;
	}

	body.home:not(.elementor-editor-active) .elementor-element-d4658a4 {
		min-height: 720px;
	}

	body.home:not(.elementor-editor-active) .elementor-element-da78592 .elementor-heading-title {
		max-width: 11ch;
	}

	body.page-id-781:not(.elementor-editor-active) .heading-section-subtitle,
	body.page-id-781:not(.elementor-editor-active) .heading-section-subtitle a {
		font-size: clamp(1.32rem, 6vw, 1.7rem) !important;
		line-height: 1.16 !important;
	}

	body.page-id-781:not(.elementor-editor-active) .elementor-element-607c85cd .heading-section-subtitle,
	body.page-id-781:not(.elementor-editor-active) .elementor-element-607c85cd .heading-section-subtitle a {
		font-size: clamp(1.05rem, 5.1vw, 1.28rem) !important;
		line-height: 1.18 !important;
	}

	.amec-contact-enhancement {
		padding: 92px 0 46px;
	}

	.amec-contact-enhancement__inner {
		width: min(calc(100% - 32px), 1160px);
	}

	.amec-contact-enhancement__form-panel {
		padding: 24px;
	}

	.amec-contact-enhancement h2 {
		max-width: 100%;
		font-size: clamp(1.85rem, 9vw, 2.45rem);
	}

	.amec-project-form__grid {
		grid-template-columns: 1fr;
	}

	.amec-project-form button {
		width: 100%;
	}

	body.page-id-779:not(.elementor-editor-active) .elementor-element-205cd843,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-3dcd2a25,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-5c4ed868,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-14d5c473,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-342dc88,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-7e9d6249 {
		width: calc(100vw - 40px) !important;
		max-width: calc(100vw - 40px) !important;
	}

	body.page-id-779:not(.elementor-editor-active) .elementor-element-3dcd2a25,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-5c4ed868,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-342dc88,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-7e9d6249 {
		width: calc(100vw - 84px) !important;
		max-width: calc(100vw - 84px) !important;
	}

	body.page-id-779:not(.elementor-editor-active) .elementor-element-205cd843 .elementor-heading-title {
		font-size: clamp(1.8rem, 8vw, 2.15rem) !important;
		line-height: 1.1 !important;
	}

	body.page-id-779:not(.elementor-editor-active) .elementor-element-3dcd2a25 .elementor-heading-title,
	body.page-id-779:not(.elementor-editor-active) .elementor-element-342dc88 .elementor-heading-title {
		font-size: clamp(1.45rem, 6vw, 1.8rem) !important;
		line-height: 1.15 !important;
	}

	.elementor-widget-heading .elementor-heading-title,
	.jeg-elementor-kit.jkit-heading .heading-title,
	.jeg-elementor-kit .info-title,
	.jeg-elementor-kit .feature-list-title {
		display: block;
		max-width: calc(100vw - 40px);
		white-space: normal !important;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.elementor-element-da78592 .elementor-heading-title,
	.elementor-element-205cd843 .elementor-heading-title,
	.elementor-element-3dbf999c .elementor-heading-title,
	.elementor-element-4de4df1b .elementor-heading-title {
		font-size: clamp(2rem, 8.2vw, 2.35rem) !important;
		line-height: 1.08 !important;
	}

	.elementor-element-57e5943 .elementor-heading-title,
	.elementor-element-3dcd2a25 .elementor-heading-title,
	.elementor-element-1e092436 .elementor-heading-title,
	.elementor-element-67ae0ffc .elementor-heading-title {
		font-size: clamp(1.12rem, 5vw, 1.35rem) !important;
		line-height: 1.18 !important;
		margin-inline: auto;
	}

	.jeg-elementor-kit.jkit-heading .heading-title,
	.jeg-elementor-kit .info-title {
		font-size: clamp(0.98rem, 4.7vw, 1.16rem) !important;
		line-height: 1.16 !important;
		margin-inline: auto;
	}

	.amec-kit-logo {
		color: var(--amec-dark);
	}

	.amec-kit-logo:hover,
	.amec-kit-logo:focus {
		color: var(--amec-dark);
	}

	.amec-site-header__inner,
	.amec-site-footer__inner,
	.amec-section__inner {
		width: min(calc(100% - 48px), 1160px);
	}

	.amec-site-nav {
		width: 100%;
		gap: 14px 18px;
		align-items: flex-start;
	}

	.amec-site-header__cta {
		display: none;
	}

	.amec-shortcode-header__inner {
		width: min(calc(100% - 32px), 1160px);
		min-height: 74px;
	}

	.amec-shortcode-header__toggle {
		width: 42px;
		height: 42px;
	}

	.amec-shortcode-header__drawer-panel {
		width: 100vw;
		padding: 22px;
	}

	.amec-shortcode-header__drawer-nav {
		padding: 34px 0;
	}
}
