:root {
	--navy: #0e2244;
	--navy-2: #13315c;
	--blue: #1e63b8;
	--blue-soft: #e7f0ff;
	--red: #c8102e;
	--red-d: #a10d26;
	--ink: #0b1524;
	--paper: #f5f7fa;
	--paper-2: #eaeef4;
	--line: #d5dce6;
	--muted: #5e6e83;
	--white: #ffffff;
	--maxw: 1180px;
	--r: 14px;
	--shadow: 0 18px 40px -22px rgba(14, 34, 68, .42);
	--shadow-soft: 0 10px 26px rgba(14, 34, 68, .06);
	--font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-heading: Archivo, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "IBM Plex Mono", Consolas, "SFMono-Regular", monospace;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

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

p {
	margin: 0 0 1rem;
	color: var(--muted);
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--ink);
	font-family: var(--font-heading);
	font-weight: 900;
	line-height: 1.06;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.3rem, 5.4vw, 4rem);
}

h2 {
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
	font-size: 1.2rem;
}

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

.wrap {
	width: min(var(--maxw), calc(100% - 44px));
	margin-inline: auto;
}

.mono {
	font-family: var(--font-mono);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	margin: 0 0 .9rem;
	color: var(--red);
	font-family: var(--font-mono);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 26px;
	height: 2px;
	background: currentColor;
	content: "";
}

.eyebrow.on-dark {
	color: #7fb2ff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .92);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(10px);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 12px;
	min-width: 260px;
	color: var(--navy);
	font-family: var(--font-heading);
	font-size: 1.02rem;
	font-weight: 900;
	letter-spacing: 0;
}

.brand img {
	width: auto;
	height: 46px;
	aspect-ratio: 720 / 480;
	object-fit: contain;
}

.brand b {
	color: var(--red);
}

.brand-break {
	display: block;
}

.brand .tag {
	display: block;
	margin-top: 2px;
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: .58rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	gap: clamp(.75rem, 1.9vw, 1.7rem);
}

.menu a:not(.btn) {
	color: #27374b;
	font-size: .92rem;
	font-weight: 700;
	white-space: nowrap;
}

.menu a:not(.btn):hover,
.menu a:not(.btn):focus {
	color: var(--red);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 12px 20px;
	border: 2px solid transparent;
	border-radius: 10px;
	font-family: var(--font-heading);
	font-size: .92rem;
	font-weight: 900;
	line-height: 1.1;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover,
.btn:focus {
	transform: translateY(-2px);
}

.btn-red {
	background: var(--red);
	color: #fff;
	box-shadow: 0 18px 38px rgba(200, 16, 46, .2);
}

.btn-red:hover,
.btn-red:focus {
	background: var(--red-d);
	box-shadow: 0 22px 46px rgba(200, 16, 46, .28);
}

.btn-ghost {
	border-color: rgba(255, 255, 255, .42);
	color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus {
	background: rgba(255, 255, 255, .1);
}

.btn-out {
	border-color: var(--navy);
	color: var(--navy);
}

.btn-out:hover,
.btn-out:focus {
	background: var(--navy);
	color: #fff;
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: .28rem;
	padding: .3rem;
	border: 2px solid rgba(200, 16, 46, .34);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(14, 34, 68, .13);
}

.lang-switch a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 34px;
	border-radius: 999px;
	font-size: .78rem !important;
	font-weight: 900;
	color: var(--navy);
	transition: background .18s ease, color .18s ease, transform .18s ease;
}

.lang-switch a:hover,
.lang-switch a:focus {
	background: var(--blue-soft);
	color: var(--blue) !important;
	transform: translateY(-1px);
}

.lang-switch a.is-current {
	background: var(--red);
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(200, 16, 46, .22);
}

.menu-toggle {
	display: none;
	padding: 8px;
	border: 0;
	background: none;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--navy);
}

.site-main {
	overflow: hidden;
}

.floating-quote {
	position: fixed;
	right: 1.15rem;
	bottom: 1.15rem;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	max-width: min(300px, calc(100vw - 2rem));
	padding: .9rem 1.15rem;
	border-radius: 999px;
	background: var(--red);
	color: #fff;
	font-family: var(--font-heading);
	font-size: .92rem;
	font-weight: 900;
	line-height: 1.1;
	box-shadow: 0 20px 46px rgba(200, 16, 46, .32);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.floating-quote::before {
	width: 9px;
	height: 9px;
	margin-right: .6rem;
	border-radius: 2px;
	background: #fff;
	content: "";
	transform: rotate(45deg);
}

.floating-quote:hover,
.floating-quote:focus {
	background: var(--red-d);
	color: #fff;
	box-shadow: 0 24px 56px rgba(200, 16, 46, .42);
	transform: translateY(-3px);
}

.hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(160deg, #0b1c38 0%, #0e2244 45%, #13315c 100%);
}

.hero::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 500px at 80% -10%, rgba(30, 99, 184, .35), transparent 60%),
		radial-gradient(700px 600px at 0% 110%, rgba(200, 16, 46, .18), transparent 60%);
	content: "";
}

.hero::after {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 74%, transparent);
	content: "";
	opacity: .6;
}

.hero .spark {
	position: absolute;
	top: 0;
	right: 8%;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, transparent, var(--red), transparent);
	opacity: .5;
	transform: skewX(-12deg);
}

.circuit {
	position: absolute;
	z-index: 1;
	display: none;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(127, 178, 255, .18);
	border-radius: 22px;
	opacity: .65;
	pointer-events: none;
}

.circuit::before,
.circuit::after {
	position: absolute;
	background: rgba(127, 178, 255, .35);
	content: "";
}

.circuit::before {
	top: 44px;
	left: -42px;
	width: 120px;
	height: 2px;
}

.circuit::after {
	right: 34px;
	bottom: -52px;
	width: 2px;
	height: 110px;
}

.circuit-a {
	top: 70px;
	right: 13%;
	animation: circuitFloat 8s ease-in-out infinite alternate;
}

.circuit-b {
	right: 32%;
	bottom: -76px;
	transform: rotate(18deg);
	animation: circuitFloat 10s ease-in-out infinite alternate-reverse;
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 860px;
	padding: clamp(5.2rem, 8vw, 7rem) 0 clamp(4.6rem, 7vw, 6rem);
}

.hero h1 {
	max-width: 820px;
	margin: 18px 0;
	color: #fff;
}

.hero-motto {
	display: inline-flex;
	max-width: 620px;
	margin: 0 0 1rem;
	padding: .75rem 1rem;
	border: 1px solid rgba(127, 178, 255, .26);
	border-radius: 12px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-family: var(--font-heading);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: 900;
	box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
	backdrop-filter: blur(10px);
}

.hero .lead {
	max-width: 680px;
	margin: 0 0 30px;
	color: #c7d4e6;
	font-size: clamp(1.05rem, 1.75vw, 1.18rem);
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.trustbar {
	margin-top: 54px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .14);
}

.trustline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin-bottom: .55rem;
}

.chip {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #afc4de;
	font-family: var(--font-mono);
	font-size: .74rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.chip::before {
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	background: var(--red);
	content: "";
	transform: rotate(45deg);
}

.chip b {
	color: #fff;
	font-weight: 700;
}

.trustbar p {
	max-width: 760px;
	color: #9fb5d2;
}

.section {
	padding: clamp(4.4rem, 7vw, 6rem) 0;
}

.light-section,
.page-hero {
	background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.page-hero {
	border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
	max-width: 860px;
}

.page-hero h1 {
	margin: .7rem 0 1rem;
}

.page-hero p:last-child {
	max-width: 760px;
	font-size: 1.08rem;
}

.sec-head {
	max-width: 760px;
	margin-bottom: 42px;
}

.sec-head h2 {
	margin: 12px 0 14px;
}

.pillar-grid,
.service-grid,
.cert-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

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

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

.pillar-card,
.service-card,
.norme-card,
.member,
.cleaning-callout,
.devis-form,
.legal-doc {
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.pillar-card,
.service-card,
.norme-card {
	position: relative;
	overflow: hidden;
	padding: 1.5rem;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pillar-card::after,
.service-card::after {
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	height: 100%;
	background: var(--blue);
	content: "";
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .25s ease;
}

.pillar-card:hover,
.service-card:hover {
	border-color: rgba(30, 99, 184, .34);
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.pillar-card:hover::after,
.service-card:hover::after {
	transform: scaleY(1);
}

.num {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--red);
	font-family: var(--font-mono);
	font-weight: 800;
}

.service-icon {
	display: inline-grid;
	width: 46px;
	height: 46px;
	margin-bottom: 1rem;
	place-items: center;
	border-radius: 12px;
	background: var(--paper-2);
	color: var(--navy);
	font-family: var(--font-mono);
	font-size: .82rem;
	font-weight: 900;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.service-card:hover .service-icon {
	background: var(--blue);
	color: #fff;
	transform: translateY(-2px);
}

.service-card h2,
.service-card h3,
.pillar-card h2,
.pillar-card h3 {
	margin-bottom: .85rem;
	font-size: 1.18rem;
}

.norme-card {
	margin-top: 1rem;
	background:
		linear-gradient(135deg, rgba(30, 99, 184, .08), rgba(255, 255, 255, 0) 42%),
		#fff;
}

.norme-card strong {
	display: block;
	margin-bottom: .55rem;
	color: var(--navy);
	font-family: var(--font-mono);
	font-size: .86rem;
}

.dark-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(700px 400px at 80% 0%, rgba(30, 99, 184, .25), transparent 60%),
		linear-gradient(160deg, #0b1c38 0%, #0e2244 60%, #07152b 100%);
	color: #fff;
}

.dark-section h2,
.dark-section h3,
.dark-section p {
	color: #fff;
}

.dark-section p {
	color: #c7d4e6;
}

.split,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.mini-grid {
	display: grid;
	gap: .8rem;
	margin-top: 1.6rem;
}

.mini-grid div,
.cert {
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 12px;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
}

.mini-grid b,
.mini-grid span {
	display: block;
}

.mini-grid b {
	margin-bottom: .2rem;
	color: #fff;
}

.mini-grid span {
	color: #afc4de;
}

.certificate-panel,
.cert-grid {
	display: grid;
	gap: 1rem;
}

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

.cert {
	min-height: 130px;
	transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.cert:hover {
	border-color: rgba(127, 178, 255, .5);
	background: rgba(255, 255, 255, .12);
	transform: translateY(-6px);
}

.cert span,
.cert strong,
.cert small {
	display: block;
}

.cert span {
	margin-bottom: .8rem;
	color: #7fb2ff;
	font-family: var(--font-mono);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.cert strong {
	color: #fff;
	font-family: var(--font-heading);
	font-size: 1rem;
	line-height: 1.2;
}

.cert small {
	margin-top: .45rem;
	color: #afc4de;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

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

.project-card {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--r);
	background: var(--navy);
	box-shadow: var(--shadow-soft);
	transition: transform .25s ease, box-shadow .25s ease;
}

.project-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-7px);
}

.project-card a {
	display: block;
	cursor: zoom-in;
}

.project-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform .45s ease, filter .45s ease;
}

.project-card:hover img {
	filter: saturate(1.08) contrast(1.05);
	transform: scale(1.06);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.member {
	display: flex;
	align-items: stretch;
	gap: 0;
	overflow: hidden;
	padding: 0;
	transition: transform .25s ease, box-shadow .25s ease;
}

.member:hover {
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.member .photo {
	flex: 0 0 150px;
	overflow: hidden;
	min-height: 230px;
	border-radius: 0;
	background: var(--paper-2);
}

.member > div:not(.photo) {
	padding: 1.5rem;
}

.member .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member h2,
.member h3 {
	margin-bottom: .8rem;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	margin-top: 1rem;
}

.tags span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: .35rem .55rem;
	border-radius: 6px;
	background: var(--blue-soft);
	color: var(--navy);
	font-family: var(--font-mono);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .04em;
}

.cleaning-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.4rem;
	margin-top: 1.2rem;
	padding: clamp(1.4rem, 4vw, 2rem);
	background:
		linear-gradient(135deg, rgba(200, 16, 46, .08), rgba(30, 99, 184, .08)),
		#fff;
}

.cleaning-callout h3 {
	margin-bottom: .7rem;
}

.split-image,
.image-stack img {
	width: 100%;
	border-radius: var(--r);
	object-fit: cover;
	box-shadow: var(--shadow);
}

.split-image {
	aspect-ratio: 4 / 3;
}

.image-stack {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.image-stack img {
	aspect-ratio: 3 / 4;
}

.check-list {
	display: grid;
	gap: .75rem;
	padding: 0;
	margin: 1.2rem 0 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.45rem;
	color: var(--navy);
	font-weight: 800;
}

.check-list li::before {
	position: absolute;
	left: 0;
	top: .45rem;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--red);
	content: "";
	transform: rotate(45deg);
}

.contact-section {
	background:
		radial-gradient(700px 400px at 10% 0%, rgba(30, 99, 184, .28), transparent 60%),
		linear-gradient(160deg, #08172f 0%, #0e2244 100%);
	color: #fff;
}

.contact-copy h2,
.contact-copy p {
	color: #fff;
}

.contact-copy p {
	color: #c7d4e6;
}

.contact-facts {
	display: grid;
	gap: .75rem;
	margin-top: 1.5rem;
}

.contact-facts div {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: .8rem;
	align-items: center;
	padding: .9rem;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 12px;
	background: rgba(255, 255, 255, .08);
}

.contact-facts strong {
	color: #fff;
	font-size: 1.15rem;
}

.contact-facts span {
	color: #afc4de;
}

.company-details {
	display: grid;
	gap: .55rem;
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	background: rgba(255, 255, 255, .05);
	font-family: var(--font-mono);
	font-size: .78rem;
}

.company-details div {
	display: grid;
	grid-template-columns: minmax(100px, .45fr) 1fr;
	gap: .7rem;
	color: #c7d4e6;
}

.company-details b {
	color: #7fb2ff;
	font-weight: 700;
}

.devis-form {
	display: grid;
	gap: 1rem;
	padding: clamp(1rem, 3vw, 1.5rem);
	border-color: rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .04);
	box-shadow: none;
}

.frow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.devis-form label {
	display: grid;
	gap: .38rem;
	color: #afc4de;
	font-family: var(--font-mono);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.devis-form input,
.devis-form select,
.devis-form textarea,
.wpforms-panel .wpforms-field input,
.wpforms-panel .wpforms-field select,
.wpforms-panel .wpforms-field textarea {
	width: 100%;
	padding: .88rem 1rem;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 10px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font: inherit;
}

.devis-form select option,
.wpforms-panel .wpforms-field select option {
	color: var(--ink);
}

.devis-form input:focus,
.devis-form select:focus,
.devis-form textarea:focus,
.wpforms-panel .wpforms-field input:focus,
.wpforms-panel .wpforms-field select:focus,
.wpforms-panel .wpforms-field textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(30, 99, 184, .12);
}

.wpforms-panel .wpforms-form {
	display: grid;
	gap: 1rem;
}

.wpforms-panel .wpforms-field {
	padding: 0;
}

.wpforms-panel .wpforms-field-label {
	margin-bottom: .38rem;
	color: #afc4de;
	font-family: var(--font-mono);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.wpforms-panel .wpforms-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	border: 0;
	border-radius: 10px;
	background: var(--red);
	color: #fff;
	font-family: var(--font-heading);
	font-size: .92rem;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 18px 38px rgba(200, 16, 46, .2);
}

.upload-soon {
	margin: 0;
	padding: .8rem 1rem;
	border: 1px dashed rgba(30, 99, 184, .35);
	border-radius: 10px;
	background: var(--blue-soft);
	color: var(--navy);
	font-weight: 800;
}

.gdpr {
	display: flex !important;
	grid-template-columns: auto 1fr;
	gap: .7rem !important;
	align-items: flex-start;
	color: #c7d4e6 !important;
	font-family: var(--font-body) !important;
	font-size: .9rem;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.gdpr input {
	width: auto;
	margin-top: .22rem;
}

.notice {
	margin: 0;
	padding: .85rem 1rem;
	border-radius: 10px;
	font-weight: 800;
}

.notice.success {
	background: rgba(31, 157, 85, .1);
	color: #146c3c;
}

.notice.pending {
	background: rgba(184, 134, 11, .12);
	color: #745400;
}

.notice.error {
	background: rgba(200, 16, 46, .1);
	color: var(--red-d);
}

.legal-doc {
	max-width: 860px;
	padding: clamp(1.4rem, 4vw, 2rem);
}

.legal-doc p {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
	color: var(--ink);
}

.legal-doc p:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.content-body {
	max-width: 860px;
}

.site-footer {
	padding: 3.4rem 0 1.6rem;
	background: #07152b;
	color: #fff;
}

.site-footer p,
.site-footer .legal {
	color: #afc4de;
}

.foot-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr .8fr;
	gap: clamp(1.4rem, 4vw, 3rem);
}

.foot-brand {
	display: flex;
	align-items: center;
	gap: .8rem;
	margin-bottom: 1rem;
	font-family: var(--font-heading);
	font-weight: 900;
	line-height: 1.1;
}

.foot-brand img {
	width: 90px;
	height: 60px;
	object-fit: contain;
	border-radius: 6px;
	background: #fff;
}

.site-footer h4 {
	margin-bottom: 1rem;
	color: #fff;
}

.site-footer a:hover {
	color: #fff;
}

.footer-motto {
	margin-top: 1rem;
	font-family: var(--font-mono);
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.foot-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2.4rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
	color: #7f93b0;
	font-size: .88rem;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

.pillar-card.reveal:nth-child(2),
.service-card.reveal:nth-child(2),
.project-card.reveal:nth-child(2),
.cert.reveal:nth-child(2) {
	transition-delay: .08s;
}

.pillar-card.reveal:nth-child(3),
.service-card.reveal:nth-child(3),
.project-card.reveal:nth-child(3),
.cert.reveal:nth-child(3) {
	transition-delay: .16s;
}

.service-card.reveal:nth-child(4),
.project-card.reveal:nth-child(4),
.cert.reveal:nth-child(4) {
	transition-delay: .24s;
}

.fesi-lightbox {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(5, 12, 24, .86);
	backdrop-filter: blur(8px);
}

.fesi-lightbox.is-open {
	display: flex;
}

.fesi-lightbox img {
	max-width: min(1100px, 94vw);
	max-height: 86vh;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.fesi-lightbox__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--navy);
	font-size: 1.6rem;
	cursor: pointer;
}

@keyframes circuitFloat {
	from {
		opacity: .35;
		transform: translate3d(0, 0, 0) rotate(0deg);
	}
	to {
		opacity: .75;
		transform: translate3d(18px, -16px, 0) rotate(5deg);
	}
}

@media (max-width: 1120px) {
	.brand {
		min-width: 210px;
		font-size: .88rem;
	}

	.menu {
		gap: .8rem;
	}

	.menu a:not(.btn) {
		font-size: .84rem;
	}

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

@media (max-width: 860px) {
	.wrap {
		width: min(100% - 32px, var(--maxw));
	}

	.nav {
		min-height: 74px;
	}

	.brand {
		min-width: 0;
		font-size: .82rem;
	}

	.brand img {
		height: 42px;
	}

	.brand .tag {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.menu {
		position: fixed;
		inset: 74px 0 auto 0;
		display: grid;
		justify-content: stretch;
		gap: 0;
		padding: .5rem 0 1rem;
		background: var(--navy);
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		transform: translateY(-130%);
		transition: transform .25s ease;
	}

	.menu.open {
		transform: none;
	}

	.menu a:not(.btn) {
		width: 100%;
		padding: .85rem 1.4rem;
		color: #fff;
	}

	.header-language {
		margin-left: auto;
	}

	.lang-switch {
		width: max-content;
	}

	.hero-inner {
		padding-top: 4.4rem;
	}

	.pillar-grid,
	.service-grid,
	.service-grid-large,
	.gallery-grid,
	.gallery-grid-large,
	.team-grid,
	.split,
	.contact-grid,
	.foot-grid {
		grid-template-columns: 1fr;
	}

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

	.member {
		flex-direction: row;
	}

	.cleaning-callout,
	.foot-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

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

	.brand span {
		display: none;
	}

	.brand img {
		height: 48px;
	}

	.hero h1 {
		font-size: 2.08rem;
	}

	.hero-cta,
	.hero-cta .btn,
	.devis-form .btn {
		width: 100%;
	}

	.floating-quote {
		right: .85rem;
		bottom: .85rem;
		min-height: 48px;
		padding: .78rem .95rem;
		font-size: .82rem;
	}

	.trustline {
		display: grid;
	}

	.frow,
	.cert-grid,
	.image-stack {
		grid-template-columns: 1fr;
	}

	.company-details div {
		grid-template-columns: 1fr;
		gap: .12rem;
	}

	.member {
		flex-direction: column;
	}

	.member .photo {
		flex-basis: auto;
		width: 100%;
		height: 270px;
	}

	.contact-facts div {
		grid-template-columns: 1fr;
	}

	.project-card img {
		aspect-ratio: 4 / 4.6;
	}

	.reveal,
	.reveal.in {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.circuit {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}

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