/*
 * Theme Name: altedge
 * Description: Custom Timber theme for altedge.
 * Author: altedge
*/

:root {
	--navy: #032f4d;
	--navy-900: #011d31;
	--navy-800: #073b5e;
	--orange: #ff641e;
	--orange-700: #e85416;
	--ink: #102638;
	--muted: #5e7280;
	--line: #dce5ea;
	--paper: #f5f7f8;
	--white: #ffffff;
	--shadow: 0 18px 45px rgba(1, 29, 49, 0.16);
	--container: min(1180px, calc(100vw - 48px));
	--font-heading: Quicksand, Manrope, Inter, system-ui, sans-serif;
	--font-body: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

.site-main {
	overflow: hidden;
	position: relative;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
}

body.nav-open {
	overflow: hidden;
}

img,
video {
	display: block;
	max-width: 100%;
}

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

p {
	margin: 0;
}

h1,
h2,
h3 {
	margin: 0;
	color: inherit;
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: 0;
}

h1 {
	max-width: 740px;
	font-size: clamp(3.4rem, 7rem, 5.4rem);
}

h2 {
	max-width: 720px;
	font-size: clamp(2.3rem, 4rem, 4rem);
}

h1 span,
h2 span {
	color: var(--orange);
}

:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 4px;
}

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

.site-header {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--white);
	transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
	background: rgba(255, 255, 255, 0.96);
	color: var(--ink);
	box-shadow: 0 1px 20px rgba(1, 29, 49, 0.08);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	width: var(--container);
	min-height: 82px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 28px;
}

.site-header__logo img {
	width: clamp(150px, 16vw, 218px);
	height: auto;
}

.site-header__logo {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.site-header__logo-primary,
.site-header__logo-white {
	transition: opacity 180ms ease;
}

.site-header__logo-white {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.site-header--home:not(.is-scrolled) .site-header__logo-primary {
	opacity: 0;
}

.site-header--home:not(.is-scrolled) .site-header__logo-white {
	opacity: 1;
}

.site-nav {
	justify-self: center;
}

.menu {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu__item {
	position: relative;
}

.menu__link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 0.9rem;
	font-weight: 700;
}

.menu__item--has-children > .menu__link::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.menu--sub {
	position: absolute;
	top: calc(100% + 8px);
	left: -18px;
	min-width: 220px;
	display: grid;
	gap: 4px;
	padding: 12px;
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu__item:hover > .menu--sub,
.menu__item:focus-within > .menu--sub {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-header__cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 0.86rem;
	font-weight: 800;
	white-space: nowrap;
	cursor: pointer;
}

.site-header__cta,
.btn--orange {
	background: var(--orange);
	color: var(--white);
}

.site-header__cta:hover,
.btn--orange:hover {
	background: var(--orange-700);
}

.btn--circle {
	width: 54px;
	height: 54px;
	min-height: 54px;
	padding: 0;
	border-radius: 50%;
	border-color: var(--orange);
	color: var(--white);
	font-size: 1.3rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--navy);
	font-size: 0.9rem;
	font-weight: 800;
}

.text-link--light {
	color: var(--white);
}

.nav-toggle,
.mobile-nav__close {
	display: none;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.nav-toggle {
	width: 44px;
	height: 44px;
	justify-self: end;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	content: "";
}

.nav-toggle__bar {
	margin: 0 auto;
	position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
	position: absolute;
	left: 0;
}

.nav-toggle__bar::before {
	top: -7px;
}

.nav-toggle__bar::after {
	top: 7px;
}

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 70;
	display: none;
	background: rgba(1, 29, 49, 0.62);
}

.mobile-nav__panel {
	width: min(420px, 88vw);
	height: 100%;
	margin-left: auto;
	padding: 24px;
	background: var(--white);
	color: var(--ink);
	transform: translateX(100%);
	transition: transform 240ms ease;
}

.mobile-nav.is-open .mobile-nav__panel {
	transform: translateX(0);
}

.mobile-nav__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
}

.mobile-nav__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 2rem;
}

.home-hero {
	position: relative;
	min-height: 100vh;
	max-height: 900px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.home-hero__media,
.home-hero__overlay,
.efficiency-section__image,
.efficiency-section__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-hero__media,
.efficiency-section__image,
.media-fill,
.visual-card__image,
.product-card__image,
.industry-card__image {
	object-fit: cover;
}

.product-card__img-cont {
	overflow: hidden;
}

.home-hero__media--fallback,
.media-fill--fallback,
.visual-card__image--fallback,
.product-card__image--fallback,
.industry-card__image--fallback,
.efficiency-section__image--fallback {
	background:
		linear-gradient(135deg, rgba(255, 100, 30, 0.32), transparent 34%),
		linear-gradient(120deg, #0f4c73, #011d31 70%);
}

.home-hero__overlay {
	background:
		linear-gradient(90deg, rgba(1, 29, 49, 0.94), rgba(1, 29, 49, 0.55) 48%, rgba(1, 29, 49, 0.18)),
		linear-gradient(0deg, rgba(1, 29, 49, 0.36), transparent);
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	width: var(--container);
	margin: 0 auto;
	padding: 138px 0 86px;
}

.eyebrow {
	margin-bottom: 18px;
	color: currentColor;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow--orange {
	color: var(--orange);
}

.home-hero__copy {
	max-width: 560px;
	margin-top: 26px;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1rem, 1.2rem, 1.18rem);
}

.home-hero__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 34px;
}

.home-hero__actions .btn--circle,
.section-cta .btn--circle {
	position: relative;
	overflow: hidden;
	transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.home-hero__actions .btn--circle::before,
.section-cta .btn--circle::before {
	position: absolute;
	inset: 7px;
	border-radius: 50%;
	background: var(--orange);
	content: "";
	transform: scale(0);
	transition: transform 260ms ease;
}

.home-hero__actions .btn--circle span,
.section-cta .btn--circle span {
	position: relative;
	z-index: 1;
	display: inline-block;
	transition: transform 260ms ease;
}

.home-hero__actions .text-link,
.section-cta .text-link {
	position: relative;
	padding-bottom: 4px;
}

.home-hero__actions .text-link::after,
.section-cta .text-link::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--orange);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 260ms ease;
}

.home-hero__actions:hover .btn--circle,
.home-hero__actions:focus-within .btn--circle,
.section-cta:hover .btn--circle,
.section-cta:focus-within .btn--circle {
	box-shadow: 0 0 0 8px rgba(255, 100, 30, 0.16);
	transform: translateX(3px);
}

.home-hero__actions:hover .btn--circle::before,
.home-hero__actions:focus-within .btn--circle::before,
.section-cta:hover .btn--circle::before,
.section-cta:focus-within .btn--circle::before {
	transform: scale(1);
}

.home-hero__actions:hover .btn--circle span,
.home-hero__actions:focus-within .btn--circle span,
.section-cta:hover .btn--circle span,
.section-cta:focus-within .btn--circle span {
	transform: translateX(3px);
}

.home-hero__actions:hover .text-link::after,
.home-hero__actions:focus-within .text-link::after,
.section-cta:hover .text-link::after,
.section-cta:focus-within .text-link::after {
	transform: scaleX(1);
}

.home-hero__tagline {
	position: absolute;
	z-index: 2;
	right: max(24px, calc((100vw - 1180px) / 2));
	bottom: 52px;
	max-width: 190px;
	padding-left: 18px;
	border-left: 3px solid var(--orange);
	color: var(--white);
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
}

.story-section,
.aeflex-section {
	display: grid;
	min-height: 620px;
}

.story-section {
	grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
}

.aeflex-section {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
}

.story-section__copy,
.aeflex-section__copy {
	align-self: center;
	width: min(560px, calc(100% - 48px));
	margin: 0 auto;
	padding: 80px 0;
}

.story-section__copy {
	width: min(680px, calc(100% - 48px));
	margin-left: max(24px, calc((100vw - 1180px) / 2));
	margin-right: auto;
}

.story-section__copy p:not(.eyebrow),
.aeflex-section__copy > p:not(.eyebrow),
.section__head p {
	max-width: 560px;
	margin-top: 24px;
	color: var(--muted);
	font-size: 1.05rem;
}

.story-section__copy .text-link {
	margin-top: 30px;
}

.story-section__cta .text-link {
	margin-top: 0;
}

.story-section__image,
.aeflex-section__image {
	position: relative;
	min-height: 520px;
	overflow: hidden;
}

.media-fill {
	width: 100%;
	height: 100%;
}

.media-fill--parallax {
	height: 112%;
	will-change: transform;
	transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.02);
}

.story-section__bg {
	position: absolute;
	inset: -8% 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	will-change: transform;
	transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.02);
}

.story-section__callout {
	position: absolute;
	right: 0;
	bottom: 90px;
	width: min(260px, 65%);
	padding: 34px;
	background: rgba(1, 29, 49, 0.92);
	color: var(--white);
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
}

.section {
	padding: 92px 0;
}

.section--dark {
	background: var(--navy-900);
	color: var(--white);
}

.section--light {
	background: var(--white);
}

.section--compact {
	padding-bottom: 64px;
}

.insights-preview {
	background: #f7fafc;
}

.insights-preview .section__head {
	grid-template-columns: minmax(0, 0.85fr) auto;
	align-items: center;
	margin-bottom: 34px;
}

.insights-preview .section__head h2 {
	font-size: clamp(2.6rem, 4.2rem, 4.2rem);
}

.insights-preview .section__head > div:last-child {
	max-width: 520px;
	justify-self: end;
}

.insights-preview .listing-grid {
	width: var(--container);
	margin: 0 auto;
}

.section__head {
	width: var(--container);
	margin: 0 auto 46px;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
	gap: 44px;
	align-items: end;
}

.section__head--products {
	grid-template-columns: minmax(0, 1.25fr) auto;
	align-items: center;
	margin-bottom: 34px;
}

.section__head--products h2 {
	max-width: none;
	font-size: clamp(2.6rem, 4.2rem, 4.2rem);
	white-space: nowrap;
}

.section__head--industries {
	display: block;
	text-align: center;
}

.section__head--industries h2 {
	max-width: none;
}

.section__head--industries h2 span {
	color: var(--orange);
}

.section--dark .section__head p {
	color: rgba(255, 255, 255, 0.72);
}

.section__head .text-link {
	margin-top: 24px;
}

.section-cta {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 24px;
}

.section-cta .btn--circle {
	border-color: var(--orange);
	color: var(--navy);
}

.section-cta--light .btn--circle {
	border-color: var(--white);
	color: var(--white);
}

.section-cta .text-link {
	margin-top: 0;
}

.section-cta:hover .btn--circle,
.section-cta:focus-within .btn--circle {
	border-color: var(--orange);
	color: var(--white);
}

.visual-grid {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	gap: 22px;
}

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

.visual-card,
.product-card,
.industry-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	background: var(--navy);
	color: var(--white);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.visual-card {
	min-height: 250px;
}

.visual-card__image,
.product-card__image {
	width: 100%;
	height: 100%;
	transition: transform 500ms ease;
}

.visual-card__image {
	position: absolute;
	inset: 0;
}

.visual-card::after,
.industry-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(0deg, rgba(1, 29, 49, 0.86), rgba(1, 29, 49, 0.12));
	opacity: 1;
	transition: opacity 320ms ease;
}

.industry-card:hover::after {
	opacity: 0;
}

.visual-card:hover .visual-card__image,
.product-card:hover .product-card__image,
.industry-card:hover .industry-card__image {
	transform: scale(1.045);
}

.visual-card__body {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 112px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px 14px;
	align-items: end;
	padding: 22px;
}

.visual-card__body strong,
.product-card__body strong {
	font-size: 1.16rem;
}

.visual-card__body small,
.product-card__body small {
	grid-column: 1;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.86rem;
	line-height: 1.4;
}

.arrow {
	grid-row: 1 / span 2;
	grid-column: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.aeflex-section {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	background: var(--paper);
}

.aeflex-section__copy {
	position: relative;
	z-index: 1;
}

.aeflex-section__copy::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: -72px;
	width: 150px;
	height: 100%;
	background: var(--paper);
	content: "";
	transform: skewX(-9deg);
	transform-origin: bottom;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 36px 0;
}

.benefit {
	display: grid;
	gap: 14px;
	align-content: start;
	min-height: 128px;
	color: var(--ink);
	font-size: 0.82rem;
	font-weight: 800;
	text-align: center;
}

.benefit__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: 74px;
	height: 74px;
	border: 0;
	border-radius: 0;
	color: var(--orange);
	font-size: 0.7rem;
}

.benefit__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	background: var(--white);
	color: var(--ink);
	border-color: var(--line);
	box-shadow: none;
}

.product-card__image {
	height: clamp(260px, 23vw, 330px);
	object-fit: cover;
}

.product-card__body {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px 14px;
	align-content: start;
	align-items: start;
	min-height: 124px;
	padding: 20px;
}

.product-card__body small {
	color: var(--muted);
}

.product-card .arrow {
	color: var(--navy);
	transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, color 260ms ease, transform 260ms ease;
}

.product-card:hover .arrow,
.product-card:focus-visible .arrow {
	background: var(--orange);
	border-color: var(--orange);
	box-shadow: 0 0 0 8px rgba(255, 100, 30, 0.14);
	color: var(--white);
	transform: translateX(3px);
}

.industry-strip {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.industry-card {
	min-height: 300px;
}

.industry-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transition: transform 500ms ease;
}

.industry-card strong {
	position: absolute;
	z-index: 2;
	left: 20px;
	right: 20px;
	bottom: 20px;
	font-size: 1rem;
	text-shadow: 0 2px 14px rgba(1, 29, 49, 0.9);
}

.efficiency-section {
	position: relative;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.efficiency-section {
	min-height: 480px;
}

.efficiency-section__overlay {
	background: linear-gradient(90deg, rgba(1, 29, 49, 0.78), rgba(1, 29, 49, 0.34), rgba(1, 29, 49, 0.85));
}

.efficiency-section__inner {
	position: relative;
	z-index: 2;
	width: var(--container);
	min-height: 480px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: 52px;
	align-items: end;
	padding: 72px 0;
}

.efficiency-section__labels {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	align-self: end;
}

.efficiency-section__labels span {
	min-height: 52px;
	border-top: 1px solid rgba(255, 255, 255, 0.38);
	padding-top: 12px;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.efficiency-section__copy p:not(.eyebrow) {
	margin: 20px 0 28px;
	color: rgba(255, 255, 255, 0.78);
}

.brand-section {
	background: #f1f5f7;
	padding: 82px 0;
	overflow: hidden;
}

.brand-section__inner {
	width: var(--container);
	margin: 0 auto;
	text-align: center;
}

.brand-section h2 {
	margin-bottom: 34px;
	font-size: clamp(1.8rem, 2.4rem, 2.4rem);
}

.brand-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.brand-carousel::before,
.brand-carousel::after {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	width: max(32px, calc((100vw - 1180px) / 2 + 44px));
	content: "";
	pointer-events: none;
}

.brand-carousel::before {
	left: 0;
	background: linear-gradient(90deg, #f1f5f7, rgba(241, 245, 247, 0));
}

.brand-carousel::after {
	right: 0;
	background: linear-gradient(270deg, #f1f5f7, rgba(241, 245, 247, 0));
}

.brand-strip {
	display: flex;
	width: max-content;
	gap: 22px;
	align-items: center;
	padding: 0 22px;
	animation: brand-scroll 60s linear infinite;
}

.brand-carousel:hover .brand-strip,
.brand-carousel:focus-within .brand-strip {
	animation-play-state: paused;
}

.brand-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 230px;
	min-height: 104px;
	padding: 20px 30px;
	border: 1px solid rgba(3, 47, 77, 0.08);
	background: rgba(255, 255, 255, 0.74);
	filter: saturate(0.9);
	transition: background 220ms ease, border-color 220ms ease, filter 220ms ease, transform 220ms ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
	background: var(--white);
	border-color: rgba(255, 100, 30, 0.32);
	filter: saturate(1);
	transform: translateY(-2px);
}

.brand-logo img {
	max-width: 180px;
	max-height: 70px;
	width: auto;
	object-fit: contain;
}

.brand-logo span {
	color: var(--navy);
	font-weight: 800;
}

@keyframes brand-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.final-cta {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
	gap: 72px;
	align-items: center;
	padding: 70px 0;
	background: var(--white);
	color: var(--ink);
}

.final-cta h2 {
	font-size: clamp(2.3rem, 3.3rem, 3.3rem);
	line-height: 1.02;
}

.final-cta__copy > p:not(.eyebrow) {
	margin-top: 22px;
	color: var(--muted);
	font-size: 1.04rem;
}

.final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.final-cta__media img {
	width: 100%;
	min-height: 390px;
	border-radius: 4px;
	object-fit: cover;
}

.page-hero {
	position: relative;
	min-height: 430px;
	display: flex;
	align-items: end;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.page-hero__image,
.page-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero__shade {
	background:
		linear-gradient(90deg, rgba(1, 29, 49, 0.92), rgba(1, 29, 49, 0.62), rgba(1, 29, 49, 0.32)),
		linear-gradient(0deg, rgba(1, 29, 49, 0.22), rgba(1, 29, 49, 0.1));
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	padding: 150px 0 72px;
}

.page-hero h1 {
	max-width: 780px;
}

.page-hero p:not(.eyebrow) {
	max-width: 660px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.08rem;
}

.about-hero {
	position: relative;
	min-height: 430px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.about-hero__image,
.about-hero__shade,
.about-markets__image,
.about-markets__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.about-hero__image,
.about-markets__image,
.about-intro__media img,
.about-purpose__image img,
.about-cta__media img {
	object-fit: cover;
}

.about-hero__shade {
	background:
		linear-gradient(112deg, rgba(1, 29, 49, 0.96) 0%, rgba(1, 29, 49, 0.78) 36%, rgba(1, 29, 49, 0.26) 68%),
		linear-gradient(90deg, rgba(255, 100, 30, 0.14), transparent 42%);
}

.about-hero__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	padding: 124px 0 72px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.82rem;
	font-weight: 800;
}

.breadcrumb a:hover {
	color: var(--orange);
}

.about-hero h1 {
	max-width: 560px;
	font-size: clamp(3.5rem, 5.4rem, 5.4rem);
	line-height: 0.92;
}

.about-hero h1 span {
	display: block;
	color: var(--orange);
}

.about-hero p:not(.eyebrow) {
	max-width: 520px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1.05rem, 1.45rem, 1.36rem);
	line-height: 1.2;
}

.about-hero__tagline {
	position: absolute;
	z-index: 1;
	right: max(32px, calc((100vw - 1180px) / 2));
	bottom: 58px;
	padding-left: 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.28);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.45;
	text-transform: uppercase;
}

.about-hero__tagline::after {
	display: block;
	width: 48px;
	height: 2px;
	margin-top: 14px;
	background: var(--orange);
	content: "";
}

.about-intro,
.about-purpose,
.about-cta {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
	gap: 72px;
	align-items: center;
	padding: 86px 0 44px;
}

.about-intro__copy h2,
.about-purpose__copy h2,
.about-values h2,
.about-markets h2,
.about-cta h2 {
	font-size: clamp(2.3rem, 3.3rem, 3.3rem);
	line-height: 1.02;
}

.about-intro__copy .btn {
	margin-top: 26px;
}

.about-intro__media {
	position: relative;
	min-height: 530px;
}

.about-intro__media img {
	width: 100%;
	height: 100%;
	min-height: 530px;
	border-radius: 4px;
}

.about-callout {
	position: absolute;
	right: -42px;
	bottom: -34px;
	width: min(270px, 78%);
	padding: 30px;
	background: rgba(1, 29, 49, 0.96);
	color: var(--white);
	box-shadow: 0 24px 58px rgba(1, 29, 49, 0.24);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.7;
	text-transform: uppercase;
}

.about-callout::after {
	display: block;
	width: 54px;
	height: 2px;
	margin-top: 16px;
	background: var(--orange);
	content: "";
}

.about-proof {
	width: var(--container);
	margin: 0 auto 18px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: linear-gradient(180deg, #f2f9fd, #edf6fb);
	border: 1px solid rgba(3, 47, 77, 0.06);
}

.about-proof__item {
	display: grid;
	justify-items: center;
	gap: 10px;
	min-height: 168px;
	padding: 26px 20px 28px;
	text-align: center;
}

.about-proof__item + .about-proof__item {
	border-left: 1px solid rgba(3, 47, 77, 0.12);
}

.about-proof__item span,
.about-value span,
.about-purpose__note span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	color: var(--orange);
	font-family: var(--font-heading);
	font-weight: 800;
}

.about-proof__item .about-proof__icon {
	width: 86px;
	height: 86px;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.about-proof__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-proof__item strong {
	color: var(--navy);
	font-size: 1rem;
}

.about-proof__item small {
	color: var(--muted);
	font-weight: 700;
}

.about-purpose {
	grid-template-columns: minmax(420px, 1fr) minmax(0, 0.95fr);
	padding-top: 56px;
}

.about-purpose__image img,
.about-cta__media img {
	width: 100%;
	min-height: 390px;
	border-radius: 4px;
}

.about-purpose__copy > p:not(.eyebrow),
.about-cta__copy > p:not(.eyebrow) {
	margin-top: 22px;
	color: var(--muted);
	font-size: 1.04rem;
}

.about-purpose__note {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: center;
	margin-top: 30px;
	color: var(--navy);
}

.about-values {
	width: var(--container);
	margin: 0 auto;
	padding: 54px 0 86px;
	text-align: center;
}

.about-values__head {
	max-width: 760px;
	margin: 0 auto 38px;
}

.about-values__head p:not(.eyebrow) {
	margin-top: 12px;
	color: var(--muted);
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-value {
	display: grid;
	justify-items: center;
	gap: 16px;
	padding: 12px 30px;
}

.about-value + .about-value {
	border-left: 1px solid var(--line);
}

.about-value .about-value__icon {
	width: 88px;
	height: 88px;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.about-value__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-value strong {
	color: var(--navy);
	font-size: 1.05rem;
	line-height: 1.2;
}

.about-value p {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.about-markets {
	position: relative;
	min-height: 430px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.about-markets__shade {
	background: linear-gradient(90deg, rgba(1, 29, 49, 0.94), rgba(1, 29, 49, 0.72) 46%, rgba(1, 29, 49, 0.5));
}

.about-markets__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
	gap: 72px;
	align-items: center;
	padding: 76px 0;
}

.about-markets__copy p:not(.eyebrow) {
	max-width: 500px;
	margin: 18px 0 28px;
	color: rgba(255, 255, 255, 0.78);
}

.about-markets__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.about-markets__grid span {
	min-height: 142px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: center;
	border-right: 1px solid rgba(255, 255, 255, 0.22);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	padding: 22px 18px;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 800;
	text-align: center;
	transition: background-color 220ms ease, border-color 220ms ease;
}

.about-markets__grid span:hover {
	background: var(--orange);
	border-color: rgba(255, 255, 255, 0.2);
}

.about-markets__grid img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.about-markets__grid strong {
	max-width: 150px;
	font-size: 0.92rem;
	line-height: 1.18;
}

.about-cta {
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
	padding: 70px 0;
}

.about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.btn--green {
	background: #00613f;
	color: var(--white);
}

.btn--green:hover,
.btn--green:focus-visible {
	background: #004b32;
}

.btn--navy {
	background: var(--navy);
	color: var(--white);
}

.btn--navy:hover,
.btn--navy:focus-visible {
	background: var(--navy-900);
}

.aeflex-page-hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #eef5f7;
	color: var(--ink);
}

.aeflex-page-hero__image,
.aeflex-page-hero__shade,
.aeflex-final__image,
.aeflex-final__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.aeflex-page-hero__image,
.aeflex-final__image {
	object-fit: cover;
}

.aeflex-page-hero__shade {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.22) 72%),
		linear-gradient(180deg, rgba(238, 245, 247, 0.82), rgba(238, 245, 247, 0.2));
}

.aeflex-page-hero__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
	gap: 58px;
	align-items: center;
	padding: 126px 0 92px;
}

.aeflex-mark {
	margin-bottom: 16px;
	color: #00613f;
	font-family: var(--font-heading);
	font-size: clamp(4.2rem, 7vw, 7rem);
	font-weight: 800;
	line-height: 0.82;
	letter-spacing: 0;
}

.aeflex-mark sup {
	font-size: 1.4rem;
}

.aeflex-page-hero h1 {
	max-width: 560px;
	font-size: clamp(1.45rem, 2.4rem, 2.3rem);
	font-weight: 500;
	letter-spacing: 0.32em;
	line-height: 1.55;
	text-transform: uppercase;
}

.aeflex-page-hero__copy > p:not(.aeflex-mark) {
	max-width: 520px;
	margin-top: 28px;
	color: var(--navy);
	font-size: 1.12rem;
	line-height: 1.55;
}

.aeflex-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	align-items: center;
	margin-top: 30px;
}

.download-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
	font-weight: 800;
}

.download-link::before {
	content: "v";
	color: #00613f;
	font-weight: 800;
}

.aeflex-product-scene {
	position: relative;
	min-height: 390px;
}

.aeflex-roll,
.aeflex-tube,
.aeflex-sheet {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #252e35, #071219 52%, #1d272d);
	color: rgba(255, 255, 255, 0.34);
	font-family: var(--font-heading);
	font-weight: 800;
	box-shadow: 0 28px 50px rgba(1, 29, 49, 0.22);
}

.aeflex-roll {
	border-radius: 999px;
}

.aeflex-roll::before {
	position: absolute;
	inset: 17%;
	border-radius: 50%;
	border: 16px solid #070d10;
	background: #eef5f7;
	content: "";
}

.aeflex-roll--large {
	right: 4%;
	bottom: 86px;
	width: 330px;
	height: 132px;
	transform: rotate(-7deg);
}

.aeflex-roll--small {
	right: 45%;
	bottom: 22px;
	width: 250px;
	height: 82px;
	transform: rotate(-6deg);
}

.aeflex-tube {
	right: 18%;
	bottom: 10px;
	width: 430px;
	height: 54px;
	border-radius: 999px;
	transform: rotate(-5deg);
}

.aeflex-tube::before {
	position: absolute;
	left: 34%;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #b76a3d;
	box-shadow: inset 0 0 0 8px #68351f;
	content: "";
}

.aeflex-sheet {
	right: 48%;
	bottom: 44px;
	width: 210px;
	height: 60px;
	border-radius: 4px;
	transform: skewX(-12deg) rotate(-5deg);
}

.aeflex-feature-strip {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	background: var(--white);
	box-shadow: 0 16px 42px rgba(1, 29, 49, 0.06);
}

.aeflex-feature {
	display: grid;
	justify-items: center;
	gap: 10px;
	min-height: 132px;
	padding: 26px 18px;
	text-align: center;
}

.aeflex-feature + .aeflex-feature {
	border-left: 1px solid var(--line);
}

.aeflex-feature span {
	color: #00613f;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

.aeflex-feature strong {
	color: var(--navy);
	font-size: 0.9rem;
	line-height: 1.3;
}

.aeflex-about,
.aeflex-applications {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1fr);
	gap: 72px;
	align-items: center;
	padding: 86px 0;
}

.aeflex-about .eyebrow,
.aeflex-products .eyebrow,
.aeflex-applications .eyebrow {
	color: var(--navy);
}

.aeflex-about h2,
.aeflex-products h2,
.aeflex-applications h2,
.aeflex-final h2 {
	font-size: clamp(2.3rem, 3.2rem, 3.2rem);
	line-height: 1.03;
}

.aeflex-about__copy p:not(.eyebrow),
.aeflex-applications__copy p {
	margin: 24px 0 30px;
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.6;
}

.aeflex-about__media {
	position: relative;
}

.aeflex-about__media img {
	width: 100%;
	aspect-ratio: 1.5 / 0.86;
	border-radius: 6px;
	object-fit: cover;
}

.aeflex-about__badge {
	position: absolute;
	right: 22px;
	top: 50%;
	display: grid;
	gap: 20px;
	width: 170px;
	padding: 26px 20px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 24px 58px rgba(1, 29, 49, 0.18);
	transform: translateY(-50%);
}

.aeflex-about__badge span {
	display: grid;
	gap: 8px;
	color: var(--navy);
	font-size: 0.86rem;
	font-weight: 800;
	text-align: center;
}

.aeflex-products {
	background: #edf6fb;
	padding: 78px max(24px, calc((100vw - 1180px) / 2));
}

.aeflex-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 28px;
}

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

.aeflex-range-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	border-radius: 6px;
	background: var(--white);
	color: var(--ink);
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.aeflex-range-card:hover,
.aeflex-range-card:focus-visible {
	box-shadow: 0 18px 42px rgba(1, 29, 49, 0.1);
	transform: translateY(-3px);
}

.aeflex-range-card__visual {
	position: relative;
	display: block;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(237, 246, 251, 0.42)),
		url("static/images/hero-banner-alt-edge.jpg") center/cover;
}

.aeflex-range-card__visual::before,
.aeflex-range-card__visual::after {
	position: absolute;
	content: "";
	background: linear-gradient(180deg, #2b343a, #071219 56%, #202a30);
	box-shadow: 0 18px 34px rgba(1, 29, 49, 0.16);
}

.aeflex-range-card__visual--tube::before {
	left: 16%;
	right: 8%;
	bottom: 36%;
	height: 38px;
	border-radius: 999px;
	transform: rotate(-8deg);
}

.aeflex-range-card__visual--tube::after {
	left: 12%;
	right: 22%;
	bottom: 22%;
	height: 50px;
	border-radius: 999px;
	transform: rotate(-8deg);
}

.aeflex-range-card__visual--sheet::before,
.aeflex-range-card__visual--sheet::after {
	left: 22%;
	right: 18%;
	height: 48px;
	border-radius: 4px;
	transform: skewX(-15deg);
}

.aeflex-range-card__visual--sheet::before {
	bottom: 42%;
}

.aeflex-range-card__visual--sheet::after {
	bottom: 24%;
}

.aeflex-range-card__visual--kit::before {
	left: 10%;
	bottom: 24%;
	width: 44%;
	height: 72px;
	border-radius: 999px;
}

.aeflex-range-card__visual--kit::after {
	right: 18%;
	bottom: 20%;
	width: 46px;
	height: 96px;
	border-radius: 8px 8px 4px 4px;
}

.aeflex-range-card__body {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px 14px;
	padding: 22px;
}

.aeflex-range-card__body strong {
	color: var(--navy);
	font-family: var(--font-heading);
	font-size: 1.16rem;
}

.aeflex-range-card__body small {
	grid-column: 1;
	color: var(--muted);
}

.aeflex-range-card__body > span {
	grid-row: 1 / span 2;
	grid-column: 2;
	color: var(--navy);
	font-weight: 800;
}

.aeflex-applications {
	grid-template-columns: minmax(0, 0.65fr) minmax(520px, 1fr);
}

.aeflex-applications__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aeflex-app-card {
	position: relative;
	min-height: 270px;
	overflow: hidden;
	border-radius: 6px;
	color: var(--white);
}

.aeflex-app-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.aeflex-app-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(1, 29, 49, 0.86), rgba(1, 29, 49, 0.1));
	content: "";
}

.aeflex-app-card span {
	position: absolute;
	z-index: 1;
	left: 18px;
	right: 18px;
	bottom: 18px;
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.15;
}

.aeflex-app-card:hover img,
.aeflex-app-card:focus-visible img {
	transform: scale(1.045);
}

.aeflex-final {
	position: relative;
	min-height: 280px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.aeflex-final__shade {
	background: linear-gradient(90deg, rgba(1, 29, 49, 0.88), rgba(1, 29, 49, 0.46));
}

.aeflex-final__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
}

.aeflex-final h2 {
	max-width: 780px;
}

.services-cta .eyebrow {
	color: var(--navy);
}

.services-hero-banner h1 {
	max-width: 760px;
}

.services-offer {
	width: var(--container);
	margin: 0 auto;
	padding: 58px 0 86px;
}

.services-offer__head {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
	gap: 56px;
	align-items: end;
	margin-bottom: 52px;
}

.services-offer h2,
.services-reliability h2,
.services-cta h2 {
	font-size: clamp(2.45rem, 3.65rem, 3.65rem);
	line-height: 1.04;
}

.services-offer__head > p {
	color: var(--muted);
	font-size: 1.04rem;
	line-height: 1.55;
}

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

.service-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 520px;
	border: 1px solid var(--line);
	background: var(--white);
	box-shadow: 0 12px 32px rgba(1, 29, 49, 0.04);
	overflow: hidden;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
	box-shadow: 0 22px 44px rgba(1, 29, 49, 0.1);
	transform: translateY(-4px);
}

.service-card img {
	width: 100%;
	aspect-ratio: 1.45 / 0.95;
	object-fit: cover;
	transition: transform 500ms ease;
}

.service-card:hover img {
	transform: scale(1.04);
}

.service-card__body {
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 28px 26px;
}

.service-card__body > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(3, 47, 77, 0.18);
	border-radius: 50%;
	color: var(--navy);
	font-family: var(--font-heading);
	font-weight: 800;
}

.service-card h3 {
	color: var(--navy);
	font-size: 1.32rem;
	line-height: 1.15;
}

.service-card p,
.service-card li {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.service-card ul {
	display: grid;
	gap: 8px;
	margin: 6px 0 0;
	padding-left: 18px;
}

.service-card__cta {
	gap: 8px;
	justify-self: start;
	margin-top: 2px;
}

.service-card__cta span {
	transition: transform 220ms ease;
}

.service-card__cta:hover span,
.service-card__cta:focus-visible span {
	transform: translateX(4px);
}

.services-reliability {
	position: relative;
	min-height: 330px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.services-reliability__image,
.services-reliability__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.services-reliability__image {
	object-fit: cover;
}

.services-reliability__shade {
	background: linear-gradient(90deg, rgba(1, 29, 49, 0.94), rgba(1, 29, 49, 0.72));
}

.services-reliability__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
	gap: 72px;
	align-items: center;
	padding: 72px 0;
}

.services-checklist {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.services-checklist li {
	position: relative;
	padding-left: 42px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.02rem;
}

.services-checklist li::before {
	position: absolute;
	top: -2px;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	content: "✓";
	font-weight: 800;
}

.services-cta {
	width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	padding: 72px 0;
}

.services-cta__copy p:not(.eyebrow) {
	margin-top: 14px;
	color: var(--muted);
	font-size: 1.04rem;
}

.content-section,
.listing-section,
.faq-section,
.contact-section {
	width: var(--container);
	margin: 0 auto;
	padding: 86px 0;
}

.content-section--split,
.contact-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	gap: 64px;
	align-items: start;
}

.rich-copy {
	color: var(--muted);
	font-size: 1.04rem;
}

.rich-copy > * + * {
	margin-top: 18px;
}

.rich-copy .btn {
	margin-top: 28px;
}

.post-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: end;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.post-hero__image,
.post-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.post-hero__image {
	object-fit: cover;
}

.post-hero__shade {
	background:
		linear-gradient(112deg, rgba(1, 29, 49, 0.97) 0%, rgba(1, 29, 49, 0.82) 42%, rgba(1, 29, 49, 0.3) 74%),
		linear-gradient(90deg, rgba(255, 100, 30, 0.16), transparent 42%);
}

.post-hero__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	padding: 150px 0 78px;
}

.post-hero h1 {
	max-width: 840px;
	margin-top: 12px;
	font-size: clamp(3.2rem, 6vw, 5.4rem);
	line-height: 0.95;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
	font-weight: 800;
}

.post-meta > * + *::before {
	content: "/";
	margin-right: 16px;
	color: var(--orange);
}

.post-detail__wrap {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 64px;
	padding: 86px 0;
}

.post-detail__content {
	max-width: 760px;
	color: var(--ink);
	font-size: 1.08rem;
	line-height: 1.75;
}

.post-detail__content > :first-child {
	margin-top: 0;
}

.post-detail__content h2,
.post-detail__content h3,
.post-detail__content h4 {
	margin-top: 42px;
	color: var(--navy);
	line-height: 1.1;
}

.post-detail__content h2 {
	font-size: 2rem;
}

.post-detail__content h3 {
	font-size: 1.5rem;
}

.post-detail__content ul,
.post-detail__content ol {
	padding-left: 22px;
}

.post-detail__content img {
	width: 100%;
	height: auto;
	margin: 18px 0;
}

.post-sidebar {
	display: grid;
	gap: 22px;
	align-content: start;
}

.post-sidebar__card {
	padding: 28px;
	border: 1px solid var(--line);
	background: var(--white);
}

.post-sidebar__card--dark {
	background: var(--navy-900);
	color: var(--white);
}

.post-sidebar__card h2 {
	font-size: 1.42rem;
}

.post-sidebar__card p {
	margin-top: 12px;
	color: var(--muted);
	line-height: 1.55;
}

.post-sidebar__card--dark p {
	color: rgba(255, 255, 255, 0.78);
}

.post-sidebar__card .btn {
	margin-top: 20px;
}

.post-sidebar__links {
	display: grid;
	margin-top: 16px;
}

.post-sidebar__links a {
	display: grid;
	gap: 8px;
	padding: 16px 0;
	border-top: 1px solid var(--line);
	color: var(--ink);
}

.post-sidebar__links strong {
	line-height: 1.25;
}

.post-sidebar__links time {
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 800;
}

.listing-section__head {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
	gap: 42px;
	align-items: end;
	margin-bottom: 34px;
}

.listing-section__head > p {
	max-width: 560px;
	color: var(--muted);
	font-size: 1.04rem;
}

.listing-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.listing-sidebar {
	position: static;
}

.listing-results {
	min-width: 0;
}

.listing-results .listing-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 28px;
}

.listing-count {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	border: 1px solid rgba(3, 47, 77, 0.12);
	border-radius: 999px;
	padding: 0 14px;
	background: var(--white);
	color: var(--navy);
	font-size: 0.86rem;
	white-space: nowrap;
}

.listing-filters {
	display: grid;
	gap: 22px;
	align-items: stretch;
	padding: 24px;
	border: 1px solid var(--line);
	background: #f7fafc;
}

.listing-filters__title strong {
	display: block;
	color: var(--navy);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	line-height: 1.05;
}

.listing-filters label {
	display: grid;
	gap: 6px;
	color: var(--ink);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.listing-filters input,
.listing-filters select {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 0 12px;
	background: var(--white);
	color: var(--ink);
	font: inherit;
}

.filter-group {
	display: grid;
	gap: 12px;
	margin: 0;
	border: 0;
	padding: 0;
}

.filter-group legend {
	margin-bottom: 10px;
	color: var(--ink);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-pill {
	display: inline-flex;
}

.filter-pill input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.filter-pill span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid rgba(3, 47, 77, 0.14);
	border-radius: 999px;
	padding: 0 16px;
	background: var(--white);
	color: var(--navy);
	font-weight: 800;
	text-transform: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.filter-pill input:checked + span {
	border-color: var(--orange);
	background: rgba(255, 100, 30, 0.1);
	box-shadow: 0 0 0 4px rgba(255, 100, 30, 0.08);
	color: var(--orange);
}

.temperature-filter {
	display: grid;
	gap: 14px;
}

.temperature-filter--range {
	padding-top: 2px;
}

.temperature-filter__head {
	display: grid;
	gap: 8px;
}

.temperature-filter__head strong {
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.2;
}

.temperature-filter__head span {
	color: var(--muted);
	font-size: 0.92rem;
}

.temperature-filter__controls {
	display: grid;
	gap: 14px;
}

.temperature-filter__controls label {
	gap: 8px;
}

.temperature-filter__controls label span {
	color: var(--muted);
	font-size: 0.75rem;
}

.temperature-filter input[type="range"] {
	width: 100%;
	height: 26px;
	padding: 0;
	border: 0;
	background: transparent;
	accent-color: #8057bd;
}

.temperature-filter input[type="range"]::-webkit-slider-runnable-track {
	height: 8px;
	border-radius: 999px;
	background: #8057bd;
}

.temperature-filter input[type="range"]::-webkit-slider-thumb {
	width: 24px;
	height: 24px;
	margin-top: -8px;
	border: 0;
	border-radius: 50%;
	background: #8057bd;
	-webkit-appearance: none;
}

.temperature-filter input[type="range"]::-moz-range-track {
	height: 8px;
	border-radius: 999px;
	background: #8057bd;
}

.temperature-filter input[type="range"]::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 50%;
	background: #8057bd;
}

.listing-filters__reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 800;
}

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

.listing-grid--featured {
	width: var(--container);
	margin: 0 auto;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.listing-card {
	display: grid;
	grid-template-rows: auto 1fr;
	/* min-height: 380px; */
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	overflow: hidden;
}

.listing-grid--featured .listing-card {
	min-height: 0;
}

.listing-card__media {
	display: block;
	height: clamp(170px, 15vw, 210px);
	overflow: hidden;
	background: #f3f5f6;
}

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

.listing-card:hover .listing-card__image {
	transform: scale(1.04);
}

.listing-card__body {
	display: grid;
	/* grid-template-columns: 1fr auto; */
	gap: 10px 16px;
	align-content: start;
	padding: 22px;
}

.listing-grid--featured .listing-card__body {
	padding: 20px 22px 22px;
}

.listing-card__body strong {
	font-family: var(--font-heading);
	font-size: 1.22rem;
	line-height: 1.12;
}

.listing-card__body small {
	grid-column: 1;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.listing-card .arrow {
	color: var(--navy);
	transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, color 260ms ease, transform 260ms ease;
}

.listing-card:hover .arrow,
.listing-card:focus-visible .arrow {
	background: var(--orange);
	border-color: var(--orange);
	box-shadow: 0 0 0 8px rgba(255, 100, 30, 0.14);
	color: var(--white);
	transform: translateX(3px);
}

.empty-state {
	grid-column: 1 / -1;
	padding: 34px;
	background: var(--paper);
	color: var(--muted);
}

.faq-section {
	display: grid;
	gap: 14px;
	max-width: 920px;
}

.faq-item {
	border: 1px solid var(--line);
	background: var(--white);
}

.faq-item summary {
	cursor: pointer;
	padding: 22px 26px;
	color: var(--ink);
	font-family: var(--font-heading);
	font-size: 1.16rem;
	font-weight: 800;
}

.faq-item div {
	padding: 0 26px 24px;
	color: var(--muted);
}

.contact-card {
	display: grid;
	gap: 16px;
	padding: 34px;
	background: var(--navy-900);
	color: var(--white);
}

.contact-card h2 {
	font-size: 1.6rem;
}

.contact-card p,
.contact-card a:not(.btn) {
	color: rgba(255, 255, 255, 0.76);
}

.contact-section__info,
.contact-form-panel {
	display: grid;
	gap: 22px;
	align-content: start;
}

.contact-form-panel {
	padding: 34px;
	border: 1px solid var(--line);
	background: var(--white);
}

.contact-form-panel h2 {
	font-size: 1.6rem;
}

.contact-form .wpcf7-form {
	display: grid;
	gap: 18px;
}

.contact-form p {
	margin: 0;
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 800;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 13px 14px;
	background: #f8fafb;
	color: var(--ink);
	font: inherit;
}

.contact-form textarea {
	min-height: 138px;
	resize: vertical;
}

.contact-form .wpcf7-submit {
	width: auto;
	border: 0;
	border-radius: 999px;
	padding: 14px 22px;
	background: var(--orange);
	color: var(--white);
	font-weight: 900;
	cursor: pointer;
}

.contact-map {
	width: var(--container);
	margin: 0 auto;
	padding: 0 0 86px;
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: min(450px, 58vw);
	min-height: 320px;
}

.product-hero {
	position: relative;
	min-height: 150px;
	display: flex;
	align-items: end;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
}

.product-hero__image,
.product-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-hero__shade {
	background: linear-gradient(90deg, rgba(1, 29, 49, 0.94), rgba(1, 29, 49, 0.72), rgba(1, 29, 49, 0.24));
}

.product-hero__inner {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	padding: 96px 0 24px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.82rem;
	font-weight: 700;
}

.breadcrumbs a:hover {
	color: var(--orange);
}

.product-hero h1 {
	font-size: clamp(3rem, 4.6rem, 4.6rem);
}

.product-hero p {
	max-width: 610px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.08rem;
	font-weight: 700;
}

.product-detail {
	width: var(--container);
	margin: 0 auto;
	padding: 54px 0 0;
}

.product-overview {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
	gap: 46px;
	align-items: start;
}

.product-gallery__main {
	aspect-ratio: 1 / 0.72;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--paper);
}

.product-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-gallery__image--fallback {
	background:
		linear-gradient(135deg, rgba(255, 100, 30, 0.22), transparent 34%),
		linear-gradient(120deg, #f5f7f8, #dfe9ee);
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}

.product-gallery__thumb {
	display: block;
	width: 100%;
	padding: 0;
	border: 2px solid transparent;
	background: var(--paper);
	cursor: pointer;
}

.product-gallery__thumbs img {
	display: block;
	width: 100%;
	aspect-ratio: 1.35 / 1;
	object-fit: cover;
	background: var(--paper);
}

.product-gallery__thumb.is-active {
	border-color: var(--orange);
}

.product-summary__brand {
	position: relative;
	margin-bottom: 12px;
	padding-left: 38px;
	color: var(--navy);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-summary__brand::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--orange);
	content: "";
	transform: translateY(-50%);
}

.product-summary h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	line-height: 1.08;
}

.product-summary__intro {
	margin-top: 16px;
	color: var(--navy);
	font-size: 1.08rem;
}

.product-summary .rich-copy {
	margin-top: 18px;
}

.product-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 34px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.product-benefit {
	display: grid;
	gap: 10px;
	justify-items: center;
	align-content: start;
	min-height: 108px;
	padding: 20px 12px;
	text-align: center;
}

.product-benefit + .product-benefit {
	border-left: 1px solid var(--line);
}

.product-benefit span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 100, 30, 0.44);
	border-radius: 50%;
	color: var(--orange);
	font-size: 0.74rem;
	font-weight: 800;
}

.product-benefit strong {
	max-width: 110px;
	font-size: 0.86rem;
	line-height: 1.2;
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 22px;
	margin-top: 22px;
}

.btn--outline {
	border-color: var(--navy);
	background: transparent;
	color: var(--navy);
}

.btn--outline:hover,
.btn--outline:focus-visible {
	border-color: var(--orange);
	background: rgba(255, 100, 30, 0.08);
	color: var(--orange);
}

.product-meta {
	display: grid;
	gap: 8px;
	color: var(--muted);
	font-size: 0.92rem;
}

.product-meta strong {
	color: var(--ink);
}

.product-meta a {
	color: var(--navy);
}

.product-tabs {
	margin-top: 54px;
}

.product-tabs__nav {
	position: sticky;
	top: 82px;
	z-index: 5;
	display: flex;
	gap: 34px;
	overflow-x: auto;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
}

.product-tabs__nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 62px;
	color: var(--navy);
	font-weight: 700;
	white-space: nowrap;
}

.product-tabs__nav a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--orange);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.product-tabs__nav a:hover::after,
.product-tabs__nav a:focus-visible::after {
	transform: scaleX(1);
}

.product-tabs__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
	gap: 52px;
	padding: 38px 0 56px;
}

.product-tab-panel {
	scroll-margin-top: 160px;
}

.product-tab-panel:nth-child(n+3) {
	grid-column: 1 / -1;
}

.product-tab-panel h2 {
	position: relative;
	margin-bottom: 28px;
	padding-bottom: 14px;
	font-size: 1.8rem;
	line-height: 1.12;
}

.product-tab-panel h2::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 28px;
	height: 2px;
	background: var(--orange);
	content: "";
}

.product-specs {
	background: var(--paper);
}

.product-specs h2 {
	margin: 0;
	padding: 20px 22px;
	background: rgba(255, 255, 255, 0.64);
}

.product-specs h2::after {
	display: none;
}

.product-specs table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.product-specs th,
.product-specs td {
	width: 50%;
	padding: 16px 22px;
	border-top: 1px solid rgba(3, 47, 77, 0.06);
	text-align: left;
	vertical-align: top;
}

.product-specs th {
	color: var(--ink);
	font-weight: 800;
}

.product-specs td {
	color: var(--muted);
	font-style: italic;
}

.product-quote-status {
	margin: 16px 0 0;
	padding: 12px 14px;
	background: rgba(3, 47, 77, 0.06);
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 700;
}

.product-quote-status--sent {
	background: rgba(31, 151, 99, 0.12);
	color: #0f5d3f;
}

.product-quote-status--missing,
.product-quote-status--invalid_email,
.product-quote-status--error {
	background: rgba(255, 101, 31, 0.12);
	color: var(--orange);
}

.quote-modal {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.quote-modal.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.quote-modal-open {
	overflow: hidden;
}

.quote-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(1, 29, 49, 0.68);
}

.quote-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 34px;
	background: var(--white);
	box-shadow: 0 24px 70px rgba(1, 29, 49, 0.26);
	transform: translateY(12px);
	transition: transform 180ms ease;
}

.quote-modal.is-open .quote-modal__dialog {
	transform: translateY(0);
}

.quote-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	background: var(--paper);
	color: var(--ink);
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
}

.quote-modal__dialog h2 {
	margin: 0 40px 24px 0;
	font-size: 1.7rem;
	line-height: 1.18;
}

.quote-form {
	display: grid;
	gap: 16px;
}

.quote-form label {
	display: grid;
	gap: 7px;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 800;
}

.quote-form small {
	color: var(--muted);
	font-weight: 700;
}

.quote-form input:not([type="submit"]) {
	width: 100%;
	border: 1px solid rgba(3, 47, 77, 0.14);
	border-radius: 3px;
	padding: 13px 14px;
	background: var(--paper);
	color: var(--ink);
	font: inherit;
}

.quote-form input:focus {
	outline: 2px solid rgba(255, 101, 31, 0.36);
	outline-offset: 2px;
}

.quote-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 1px solid transparent;
	border-radius: 4px;
	padding: 0 20px;
	background: var(--orange);
	color: var(--white);
	font: inherit;
	font-size: 0.86rem;
	font-weight: 800;
	cursor: pointer;
}

.quote-form .wpcf7-submit:hover,
.quote-form .wpcf7-submit:focus-visible {
	background: var(--orange-700);
}

.quote-form .wpcf7-submit,
.quote-form .btn {
	justify-self: start;
	margin-top: 15px;
}

.quote-form .wpcf7-response-output {
	margin: 4px 0 0;
	padding: 10px 12px;
	font-size: 0.88rem;
	font-weight: 700;
}

.related-products {
	background: var(--paper);
	padding: 62px max(24px, calc((100vw - 1180px) / 2));
}

.related-products__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 30px;
}

.related-products__head h2 {
	font-size: clamp(2rem, 3rem, 3rem);
}

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

.related-product {
	position: relative;
	display: grid;
	gap: 8px;
	padding: 18px;
	background: var(--white);
	color: var(--ink);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.related-product:hover,
.related-product:focus-visible {
	box-shadow: 0 18px 36px rgba(1, 29, 49, 0.1);
	transform: translateY(-3px);
}

.related-product img,
.related-product__image {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
	background: var(--paper);
}

.related-product strong {
	margin-top: 10px;
	font-weight: 800;
}

.related-product small {
	color: var(--muted);
}

.related-product > span {
	position: absolute;
	right: 18px;
	bottom: 18px;
	color: var(--orange);
	font-weight: 800;
}

.site-footer {
	background: var(--navy-900);
	color: var(--white);
}

.site-footer__inner {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.25fr 0.82fr 1fr 1.05fr;
	gap: 42px;
	padding: 72px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand img {
	width: 180px;
	height: auto;
}

.site-footer__brand p,
.site-footer__contact p,
.site-footer__contact a,
.site-footer__bottom {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.site-footer__brand p {
	max-width: 260px;
	margin-top: 20px;
}

.site-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	font-size: 0.72rem;
	font-weight: 800;
}

.site-footer__nav,
.site-footer__solutions,
.site-footer__contact {
	display: grid;
	gap: 10px;
	align-content: start;
}

.site-footer__nav h2,
.site-footer__solutions h2,
.site-footer__contact h2 {
	font-size: 1rem;
	line-height: 1.2;
}

.site-footer__nav ul,
.site-footer__solutions ul {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__nav a,
.site-footer__solutions a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.86rem;
	font-weight: 500;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__solutions a:hover,
.site-footer__solutions a:focus-visible {
	color: var(--white);
}

.site-footer__bottom {
	width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__credit {
	text-align: right;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.site-nav,
	.site-header__cta {
		display: none;
	}

	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 72px;
	}

	.nav-toggle,
	.mobile-nav {
		display: block;
	}

	.mobile-nav[aria-hidden="true"] {
		pointer-events: none;
	}

	.menu--mobile {
		display: grid;
		align-items: stretch;
		gap: 6px;
		margin-bottom: 28px;
	}

	.menu--mobile .menu__link {
		width: 100%;
		color: var(--ink);
		font-size: 1.1rem;
	}

	.menu--mobile .menu--sub {
		position: static;
		visibility: visible;
		opacity: 1;
		box-shadow: none;
		transform: none;
		padding: 0 0 0 16px;
	}

	.visual-grid--three {
		grid-template-columns: 1fr;
	}

	.visual-card {
		min-height: 310px;
	}

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

	.brand-strip {
		animation-duration: 60s;
	}

	.brand-logo {
		width: 190px;
		min-height: 86px;
		padding: 16px 24px;
	}

	.brand-logo img {
		max-width: 150px;
		max-height: 58px;
	}

	.product-overview,
	.product-tabs__content,
	.post-detail__wrap {
		grid-template-columns: 1fr;
	}

	.about-intro,
	.about-purpose,
	.about-markets__inner,
	.about-cta,
	.aeflex-page-hero__inner,
	.aeflex-about,
	.aeflex-applications {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.about-callout {
		right: 22px;
	}

	.about-proof,
	.about-values__grid,
	.aeflex-feature-strip,
	.aeflex-applications__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-proof__item:nth-child(3) {
		border-left: 0;
	}

	.about-proof__item:nth-child(n+3) {
		border-top: 1px solid rgba(3, 47, 77, 0.12);
	}

	.about-value:nth-child(3) {
		border-left: 0;
	}

	.about-value:nth-child(n+3) {
		border-top: 1px solid var(--line);
	}

	.aeflex-product-scene {
		min-height: 330px;
	}

	.aeflex-feature:nth-child(odd) {
		border-left: 0;
	}

	.aeflex-feature:nth-child(n+3) {
		border-top: 1px solid var(--line);
	}

	.aeflex-product-grid {
		grid-template-columns: 1fr;
	}

	.services-offer__head,
	.services-reliability__inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

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

	.aeflex-final__inner {
		align-items: start;
		flex-direction: column;
		padding: 62px 0;
	}

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

@media (max-width: 860px) {
	:root {
		--container: min(100vw - 32px, 720px);
	}

	h1 {
		font-size: clamp(3rem, 4rem, 4rem);
	}

	h2 {
		font-size: clamp(2.1rem, 3rem, 3rem);
	}

	.home-hero {
		min-height: 100vh;
	}

	.home-hero__inner {
		padding-top: 120px;
	}

	.home-hero__tagline {
		left: 16px;
		right: auto;
		bottom: 26px;
	}

	.about-hero__tagline {
		left: 16px;
		right: auto;
		bottom: 24px;
	}

	.story-section,
	.aeflex-section,
	.section__head,
	.content-section--split,
	.contact-section,
	.listing-section__head,
	.efficiency-section__inner,
	.final-cta,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.section__head--products h2 {
		white-space: normal;
	}

	.story-section,
	.aeflex-section {
		min-height: 0;
	}

	.story-section__image,
	.aeflex-section__image {
		min-height: 420px;
	}

	.aeflex-section__image {
		order: 2;
	}

	.aeflex-section__copy::before {
		display: none;
	}

	.benefit {
		min-height: 118px;
	}

	.benefit__icon {
		width: 64px;
		height: 64px;
	}

	.section {
		padding: 70px 0;
	}

	.efficiency-section__inner {
		align-items: start;
		padding: 64px 0;
	}

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

	.final-cta {
		justify-items: start;
	}

	.listing-layout {
		grid-template-columns: 1fr;
	}

	.listing-sidebar {
		position: static;
	}

	.listing-grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.listing-filters {
		grid-template-columns: 1fr;
	}

	.about-hero__inner {
		padding: 112px 0 110px;
	}

	.about-hero h1 {
		font-size: clamp(3.2rem, 4rem, 4rem);
	}

	.aeflex-page-hero {
		min-height: 760px;
	}

	.aeflex-page-hero__inner {
		padding: 112px 0 60px;
	}

	.aeflex-mark {
		font-size: clamp(3.5rem, 5rem, 5rem);
	}

	.aeflex-page-hero h1 {
		font-size: 1.38rem;
		letter-spacing: 0.2em;
	}

	.about-intro,
	.about-purpose,
	.about-cta {
		padding: 64px 0;
	}

	.about-intro__media,
	.about-intro__media img,
	.about-purpose__image img,
	.about-cta__media img {
		min-height: 340px;
	}

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

	.aeflex-about__badge {
		right: 14px;
	}
}

@media (max-width: 520px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.3rem;
	}

	.site-header__logo img {
		width: 146px;
	}

	.home-hero {
		min-height: 100vh;
	}

	.home-hero__overlay {
		background: linear-gradient(90deg, rgba(1, 29, 49, 0.95), rgba(1, 29, 49, 0.58));
	}

	.story-section__copy,
	.aeflex-section__copy {
		width: var(--container);
		margin: 0 auto;
		padding: 60px 0;
	}

	.story-section__callout {
		width: calc(100% - 32px);
		right: 16px;
		bottom: 18px;
		padding: 22px;
	}

	.visual-card {
		min-height: 280px;
	}

	.product-card {
		grid-template-rows: auto 1fr;
	}

	.product-card__image {
		height: 230px;
	}

	.about-hero {
		min-height: 520px;
	}

	.about-hero__tagline {
		display: none;
	}

	.about-hero h1 {
		font-size: 3.2rem;
	}

	.about-proof,
	.about-values__grid,
	.about-markets__grid {
		grid-template-columns: 1fr;
	}

	.about-proof__item + .about-proof__item,
	.about-proof__item:nth-child(3),
	.about-value + .about-value,
	.about-value:nth-child(3) {
		border-left: 0;
	}

	.about-proof__item + .about-proof__item,
	.about-value + .about-value {
		border-top: 1px solid rgba(3, 47, 77, 0.12);
	}

	.about-proof__item .about-proof__icon {
		width: 78px;
		height: 78px;
	}

	.about-value .about-value__icon {
		width: 80px;
		height: 80px;
	}

	.about-callout {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		margin-top: -4px;
	}

	.about-values {
		padding: 48px 0 64px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__credit {
		text-align: left;
	}

	.about-cta__actions {
		display: grid;
	}

	.final-cta {
		gap: 34px;
		padding: 60px 0;
	}

	.final-cta__actions {
		display: grid;
	}

	.final-cta__media img {
		min-height: 320px;
	}

	.aeflex-page-hero {
		min-height: 700px;
	}

	.aeflex-page-hero__actions,
	.aeflex-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.aeflex-product-scene {
		min-height: 220px;
	}

	.aeflex-roll--large {
		right: 0;
		bottom: 72px;
		width: 230px;
		height: 92px;
	}

	.aeflex-roll--small {
		right: 36%;
		bottom: 18px;
		width: 180px;
		height: 62px;
	}

	.aeflex-tube {
		right: 6%;
		bottom: 2px;
		width: 300px;
		height: 42px;
	}

	.aeflex-sheet {
		right: 48%;
		bottom: 32px;
		width: 150px;
		height: 44px;
	}

	.aeflex-feature-strip,
	.aeflex-applications__grid {
		grid-template-columns: 1fr;
	}

	.aeflex-feature + .aeflex-feature,
	.aeflex-feature:nth-child(odd) {
		border-left: 0;
	}

	.aeflex-feature + .aeflex-feature {
		border-top: 1px solid var(--line);
	}

	.aeflex-about,
	.aeflex-products,
	.aeflex-applications {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.aeflex-about__media img {
		aspect-ratio: 1 / 0.82;
	}

	.aeflex-about__badge {
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
		margin-top: -4px;
		transform: none;
	}

	.aeflex-app-card {
		min-height: 220px;
	}

	.services-offer {
		padding-top: 52px;
		padding-bottom: 62px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 0;
	}

	.services-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.benefit-grid,
	.efficiency-section__labels {
		grid-template-columns: 1fr;
	}

	.listing-grid {
		grid-template-columns: 1fr;
	}

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

	.industry-strip {
		grid-template-columns: 1fr;
	}

	.page-hero {
		min-height: 360px;
	}

	.page-hero__inner {
		padding: 120px 0 56px;
	}

	.content-section,
	.listing-section,
	.faq-section,
	.contact-section {
		padding: 62px 0;
	}

	.product-hero__inner {
		padding: 92px 0 40px;
	}

	.product-detail {
		padding-top: 34px;
	}

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

	.product-benefit + .product-benefit {
		border-left: 0;
	}

	.product-benefit:nth-child(even) {
		border-left: 1px solid var(--line);
	}

	.product-tabs__nav {
		top: 72px;
		gap: 22px;
	}

	.related-products {
		padding-right: 16px;
		padding-left: 16px;
	}

	.related-products__head {
		align-items: start;
		flex-direction: column;
	}
}

@media (max-width: 620px) {
	.product-overview {
		gap: 28px;
	}

	.listing-grid--featured {
		grid-template-columns: 1fr;
	}

	.product-gallery__main {
		aspect-ratio: 1 / 0.84;
	}

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

	.product-summary h1 {
		font-size: 2.4rem;
	}

	.product-benefits,
	.related-products__grid {
		grid-template-columns: 1fr;
	}

	.related-product img,
	.related-product__image {
		height: 240px;
	}

	.product-benefit:nth-child(even) {
		border-left: 0;
	}

	.product-actions {
		display: grid;
	}

	.product-tabs__content {
		padding-top: 28px;
	}

	.product-specs th,
	.product-specs td {
		display: block;
		width: 100%;
	}

	.product-specs td {
		padding-top: 0;
	}

	.post-hero {
		min-height: 420px;
	}

	.post-hero__inner {
		padding: 112px 0 54px;
	}

	.post-hero h1 {
		font-size: 2.75rem;
	}
}

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

	*,
	*::before,
	*::after {
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
