/* Bauvora theme — construction brand system */
:root {
	--navy: #00308c;
	--navy-deep: #001f5c;
	--amber: #f1a12a;
	--amber-hot: #ffb84a;
	--steel: #6e6d6d;
	--steel-soft: #9a9999;
	--ink: #1a1a1a;
	--paper: #f6f4f1;
	--paper-2: #ebe7e1;
	--white: #ffffff;
	--line: rgba(0, 48, 140, 0.12);
	--shadow: 0 24px 60px rgba(0, 20, 60, 0.18);
	--font-display: "Outfit", system-ui, sans-serif;
	--font-body: "Source Sans 3", system-ui, sans-serif;
	--space: clamp(1rem, 2vw, 1.5rem);
	--wide: 1180px;
	--radius: 0;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	/* Unified box language (sharp blocks) */
	--box-bg: var(--white);
	--box-border: var(--line);
	--box-shadow: 0 12px 32px rgba(0, 31, 92, 0.07);
	--box-shadow-hover: 0 18px 44px rgba(0, 31, 92, 0.11);
	--box-pad: clamp(1.15rem, 2.4vw, 1.55rem);
	--box-accent: var(--amber);
	--box-accent-size: 3px;
	/* Brand crepi — light white wash so texture peeks through */
	--crepi-tile: url("../images/crepi-tile.webp");
	--crepi-tile-fallback: url("../images/crepi-tile.jpg");
	--crepi-cover: url("../images/crepi-bg.webp");
	--crepi-cover-fallback: url("../images/crepi-bg.jpg");
	--crepi-wash: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.88) 0%,
		rgba(255, 255, 255, 0.78) 55%,
		rgba(248, 246, 243, 0.82) 100%
	);
	--crepi-wash-soft: linear-gradient(
		rgba(255, 255, 255, 0.9),
		rgba(255, 255, 255, 0.84)
	);
	--crepi-size: 320px;
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background:
		radial-gradient(1200px 600px at 100% -10%, rgba(241, 161, 42, 0.08), transparent 55%),
		radial-gradient(900px 500px at -10% 40%, rgba(0, 48, 140, 0.06), transparent 50%),
		linear-gradient(180deg, #f8f6f3 0%, var(--paper) 40%, #f3f1ed 100%);
	min-height: 100vh;
	overflow-x: clip;
	padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Crepi accents — sparse, light white wash */
.surface-crepi,
.site-footer__cta {
	background-color: var(--white);
	background-image:
		var(--crepi-wash),
		var(--crepi-tile-fallback);
	background-image:
		var(--crepi-wash),
		var(--crepi-tile);
	background-size: auto, var(--crepi-size);
	background-repeat: no-repeat, repeat;
}

.surface-crepi--soft {
	background-color: var(--white);
	background-image:
		var(--crepi-wash-soft),
		var(--crepi-tile-fallback);
	background-image:
		var(--crepi-wash-soft),
		var(--crepi-tile);
	background-size: auto, var(--crepi-size);
	background-repeat: no-repeat, repeat;
}

/* Shared block / box surface — sharp corners, amber crown, soft depth */
.service-close,
.bauvora-box,
.detail-box,
.process-steps li,
.values-grid article,
.home-intro__aside,
.contact-form-wrap,
.bauvora-form,
.service-card,
.about-pillars,
.mega-panel__inner,
.bauvora-cookie-banner,
.projects-close,
.services-close,
.about-close,
.home-wizard-cta,
.site-footer__cta {
	background-color: var(--box-bg);
	border: 1px solid var(--box-border);
	border-radius: var(--radius);
	box-shadow: var(--box-shadow);
}

.detail-box,
.process-steps li,
.values-grid article,
.home-intro__aside,
.contact-form-wrap,
.bauvora-form,
.about-pillars,
.mega-panel__inner,
.bauvora-cookie-banner,
.service-card {
	border-top: var(--box-accent-size) solid var(--box-accent);
}

.projects-close,
.services-close,
.about-close,
.service-close,
.home-wizard-cta,
.site-footer__cta {
	border-top: var(--box-accent-size) solid var(--box-accent);
	border-left: 1px solid var(--box-border);
}

.page-toc a,
.projects-filters__chip {
	background: var(--box-bg);
	border: 1px solid var(--box-border);
	border-radius: var(--radius);
	box-shadow: none;
}

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

iframe {
	max-width: 100%;
}

/* Mobile nav backdrop */
.nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(8, 12, 22, 0.45);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s var(--ease), visibility 0.3s;
}

body.is-nav-open .nav-backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.is-nav-open {
	overflow: hidden;
}

body.is-nav-open .site-header {
	z-index: 1105;
}

body.is-nav-open .nav-backdrop {
	z-index: 1100;
}

body.is-nav-open .bauvora-call-fab {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
}

a {
	color: var(--navy);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--amber);
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 0.6em;
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 10000;
	background: var(--white);
	padding: 0.75rem 1rem;
	color: var(--navy);
}

/* Header — utility strip + main bar */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	transition: box-shadow 0.35s var(--ease);
}

.site-header__top {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.88);
	border-bottom: 3px solid var(--amber);
	font-size: 0.82rem;
	overflow: hidden;
	max-height: 5rem;
	opacity: 1;
	transition:
		max-height 0.3s var(--ease),
		opacity 0.25s var(--ease),
		border-bottom-width 0.3s var(--ease);
}

.site-header.is-scrolled .site-header__top {
	max-height: 0;
	opacity: 0;
	border-bottom-width: 0;
	pointer-events: none;
}

.site-header__top-inner {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0.45rem clamp(1rem, 4vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.site-header__tagline {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber);
	white-space: nowrap;
}

.site-header__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	flex: 1;
	justify-content: center;
}

.site-header__meta-link {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
}

.site-header__meta-link:hover {
	color: var(--amber);
}

.site-header__meta-label {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber);
}

.site-header__meta-loc,
.site-header__meta-item--loc {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	color: rgba(255, 255, 255, 0.78);
}

.site-header__meta-sep {
	width: 1px;
	height: 0.85rem;
	background: rgba(255, 255, 255, 0.22);
}

.site-header__top-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex: 0 0 auto;
}

.site-header__quote {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--navy-deep);
	background: var(--amber);
	padding: 0.35rem 0.7rem;
	white-space: nowrap;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.site-header__quote:hover {
	background: var(--amber-hot);
	color: var(--white);
}

.site-header__quote-short {
	display: none;
}

.site-header__main {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
	position: relative;
	z-index: 2;
}

.site-header.is-over-hero:not(.is-scrolled) .site-header__main {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	border-bottom-color: rgba(0, 48, 140, 0.08);
}

.site-header.is-scrolled .site-header__main,
.site-header.is-solid .site-header__main {
	background: rgba(255, 255, 255, 0.96);
	border-bottom-color: var(--line);
	box-shadow: 0 10px 30px rgba(0, 20, 60, 0.06);
}

.site-header__inner {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0.85rem clamp(1rem, 4vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.header-quick-contact {
	display: none;
	align-items: center;
	gap: 0.4rem;
}

.site-header__tools {
	display: none;
	align-items: center;
	gap: 0.45rem;
	margin-left: auto;
	flex: 0 0 auto;
	position: relative;
	z-index: 5;
}

.custom-logo-link,
.custom-logo-link img,
.site-logo,
.site-logo img,
.site-logo--footer,
.site-logo--footer img {
	background: transparent !important;
	box-shadow: none;
}

.site-logo {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 0;
}

.site-logo img,
.custom-logo {
	width: min(188px, 46vw);
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.site-nav__panel {
	display: contents;
}

.site-nav__toolbar,
.site-nav__close,
.site-nav__contact-rows {
	display: none;
}

.site-nav__scroll {
	display: contents;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.15rem;
	align-items: stretch;
}

.menu--primary > li {
	display: flex;
	align-items: center;
}

.menu--primary > li > a {
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.92rem;
	color: var(--navy-deep);
	text-decoration: none;
	padding: 0.55rem 0.7rem;
	position: relative;
	letter-spacing: -0.01em;
	align-self: center;
}

.menu--primary > li > a::after {
	content: "";
	position: absolute;
	left: 0.7rem;
	right: 0.7rem;
	bottom: 0.2rem;
	height: 2px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s var(--ease);
}

.menu--primary > li > a:hover::after,
.menu--primary > .current-menu-item > a::after {
	transform: scaleX(1);
}

.menu--primary > li > a:hover,
.menu--primary > .current-menu-item > a {
	color: var(--navy);
}

.site-header.is-over-hero:not(.is-scrolled) .menu--primary > li > a {
	color: var(--navy-deep);
}

.site-header.is-over-hero:not(.is-scrolled) .menu--primary > li > a:hover,
.site-header.is-over-hero:not(.is-scrolled) .menu--primary > .current-menu-item > a {
	color: var(--navy);
}

.menu-item--mega {
	position: static;
}

.menu-item__trigger {
	display: inline-flex !important;
	align-items: center;
	gap: 0.35rem;
	height: 100%;
}

.menu-item__chevron {
	width: 0.45rem;
	height: 0.45rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.25s var(--ease);
}

.menu-item--mega.is-open > .menu-item__trigger .menu-item__chevron {
	transform: rotate(225deg) translateY(-1px);
}

/* Invisible bridge so the cursor can travel from trigger → panel */
.menu-item--mega.is-open::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 1.25rem;
	z-index: 1001;
}

.mega-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 14px);
	padding: 14px clamp(1rem, 4vw, 2rem) 1.25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
	z-index: 1002;
}

.menu-item--mega.is-open > .mega-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.mega-panel__inner {
	max-width: var(--wide);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.85fr 1.6fr;
	gap: 0;
	overflow: hidden;
}

.mega-panel__intro {
	background: linear-gradient(165deg, var(--navy-deep), var(--navy));
	color: var(--white);
	padding: 1.5rem 1.35rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.65rem;
}

.mega-panel__eyebrow {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber);
}

.mega-panel__lead {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
}

.mega-panel__intro .text-link {
	color: var(--white);
	border-bottom-color: var(--amber);
	align-self: flex-start;
	margin-top: 0.35rem;
}

.mega-panel__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.mega-col {
	padding: 1.25rem 1.2rem 1.4rem;
	border-left: 1px solid var(--line);
}

.mega-col--energy {
	background: linear-gradient(180deg, rgba(241, 161, 42, 0.08), transparent 55%);
}

.mega-col__title {
	margin: 0 0 0.85rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy);
	padding-bottom: 0.45rem;
	border-bottom: 1px solid var(--line);
}

.mega-col--energy .mega-col__title {
	color: #9a6408;
}

.mega-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.2rem;
}

.mega-list a {
	display: grid;
	grid-template-columns: 2rem 1fr;
	gap: 0.55rem;
	align-items: start;
	text-decoration: none;
	padding: 0.55rem 0.4rem;
	border-left: 2px solid transparent;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.mega-list a:hover {
	background: rgba(0, 48, 140, 0.05);
	border-left-color: var(--amber);
}

.mega-list__index {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.75rem;
	color: var(--amber);
	padding-top: 0.15rem;
}

.mega-list__body {
	display: grid;
	gap: 0.15rem;
}

.mega-list__body strong {
	font-family: var(--font-display);
	font-size: 0.95rem;
	color: var(--navy-deep);
	font-weight: 700;
}

.mega-list__body em {
	font-style: normal;
	font-size: 0.82rem;
	color: var(--steel);
	line-height: 1.35;
}

.site-nav__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-left: 0.75rem;
	border-left: 1px solid rgba(0, 48, 140, 0.15);
}

.site-header.is-over-hero:not(.is-scrolled) .site-nav__actions {
	border-left-color: rgba(0, 48, 140, 0.15);
}

.header-contact-btns {
	display: none;
	align-items: center;
	gap: 0.4rem;
}

a.btn.header-cta--bar {
	display: none;
}

.header-cta__short {
	display: none;
}

.header-icon-btn {
	display: inline-grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border: 1px solid rgba(0, 48, 140, 0.18);
	background: rgba(255, 255, 255, 0.72);
	color: var(--navy);
	text-decoration: none;
	transition:
		background 0.2s var(--ease),
		border-color 0.2s var(--ease),
		color 0.2s var(--ease),
		transform 0.2s var(--ease);
}

.header-icon-btn:hover,
.header-icon-btn:focus-visible {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
	outline: none;
	transform: translateY(-1px);
}

.header-icon-btn--call:hover,
.header-icon-btn--call:focus-visible {
	background: var(--amber);
	border-color: var(--amber);
	color: var(--navy-deep);
}

.header-icon-btn svg {
	display: block;
}

.lang-switch {
	display: flex;
	gap: 0.15rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lang-switch,
.lang-switch ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.15rem;
}

.lang-switch a,
.lang-switch .lang-item {
	list-style: none;
}

.lang-switch a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	padding: 0.2rem 0.45rem;
	border: 1px solid transparent;
}

.lang-switch .current-lang a,
.lang-switch a:hover {
	color: var(--amber);
	border-color: rgba(241, 161, 42, 0.45);
}

.nav-toggle {
	display: none;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	position: relative;
	z-index: 2;
	place-items: center;
	color: var(--navy-deep);
	transition:
		background 0.25s var(--ease),
		border-color 0.25s var(--ease),
		color 0.2s var(--ease);
}

.nav-toggle__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 1.15rem;
	height: 1.15rem;
}

.nav-toggle__svg {
	display: block;
	width: 1.15rem;
	height: 1.15rem;
	grid-area: 1 / 1;
}

.nav-toggle__svg--close {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.nav-toggle__svg--menu {
	visibility: visible;
	opacity: 1;
}

body.is-nav-open .nav-toggle {
	background: rgba(0, 48, 140, 0.06);
	border-color: rgba(0, 48, 140, 0.16);
}

body.is-nav-open .nav-toggle__svg--menu {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

body.is-nav-open .nav-toggle__svg--close {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.site-header.is-over-hero:not(.is-scrolled) .nav-toggle {
	color: var(--navy-deep);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	padding: 0.9rem 1.4rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.btn--sm {
	padding: 0.55rem 1rem;
	font-size: 0.85rem;
}

.btn--amber {
	background: var(--amber);
	color: var(--navy-deep);
	border-color: var(--amber);
}

.btn--amber:hover {
	background: var(--amber-hot);
	color: var(--white);
}

.site-footer .btn--amber:hover,
.site-footer .btn--amber:focus-visible {
	color: var(--white);
}

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

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

.btn--ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

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

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

.text-link {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--navy);
	text-decoration: none;
	border-bottom: 2px solid var(--amber);
}

.text-link:hover {
	color: var(--amber);
}

.link-button {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	color: var(--steel-soft);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* Hero — full bleed */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: grid;
	align-items: end;
	background:
		linear-gradient(105deg, rgba(0, 31, 92, 0.88) 0%, rgba(0, 48, 140, 0.55) 48%, rgba(26, 26, 26, 0.35) 100%),
		var(--hero-image) center / cover no-repeat;
	color: var(--white);
	overflow: hidden;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			-18deg,
			transparent,
			transparent 48px,
			rgba(255, 255, 255, 0.03) 48px,
			rgba(255, 255, 255, 0.03) 49px
		);
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--wide);
	width: 100%;
	margin: 0 auto;
	padding: clamp(8.5rem, 18vh, 11rem) clamp(1rem, 4vw, 2rem) clamp(4rem, 10vh, 6rem);
	animation: rise 1s var(--ease) both;
}

.hero__brand {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	letter-spacing: -0.03em;
	margin: 0 0 0.75rem;
	color: var(--white);
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero__brand::after {
	content: "";
	display: block;
	width: 4.5rem;
	height: 4px;
	margin-top: 0.75rem;
	background: var(--amber);
}

.hero__title {
	font-size: clamp(1.75rem, 4.2vw, 3rem);
	max-width: 16ch;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.hero__lead {
	max-width: 36ch;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.75rem;
}

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

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, var(--amber), transparent);
	transform: translateX(-50%);
	animation: pulse 2s ease infinite;
}

@keyframes rise {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
	0%, 100% { opacity: 0.35; transform: translateX(-50%) scaleY(0.85); }
	50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* Sections */
.section {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.section__head {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__head--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: none;
}

.section__lead {
	color: var(--steel);
	font-size: 1.125rem;
}

.eyebrow {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy);
	margin: 0 0 0.75rem;
}

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

/* Service rail — editorial, not cards */
.service-rail {
	display: grid;
	gap: clamp(2.5rem, 6vw, 4rem);
}

.service-rail__item {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(1.25rem, 4vw, 3rem);
	align-items: center;
}

.service-rail__item--reverse {
	grid-template-columns: 1fr 1.15fr;
}

.service-rail__item--reverse .service-rail__media {
	order: 2;
}

.service-rail__media {
	margin: 0;
	overflow: hidden;
	position: relative;
}

.service-rail__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 6px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.6s var(--ease);
}

.service-rail__item:hover .service-rail__media::after {
	transform: scaleX(1);
}

.service-rail__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: saturate(0.92);
	transition: transform 0.7s var(--ease);
}

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

.service-rail__index {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.9rem;
	color: var(--amber);
	letter-spacing: 0.08em;
}

.service-rail__body h3 {
	font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.service-rail__body p {
	color: var(--steel);
}

/* Energy */
.section--energy {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.energy-panel {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 2rem;
	background:
		linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, #0a3a9a);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.energy-panel::before {
	content: "";
	position: absolute;
	inset: -20% 40% auto -10%;
	height: 80%;
	background: radial-gradient(circle, rgba(241, 161, 42, 0.25), transparent 70%);
	pointer-events: none;
}

.energy-panel__copy,
.energy-panel__grid {
	position: relative;
	z-index: 1;
}

.energy-panel__copy h2 {
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.energy-panel__copy p {
	color: rgba(255, 255, 255, 0.85);
}

.energy-panel__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.energy-panel__grid li {
	position: relative;
	overflow: hidden;
	min-height: 140px;
}

.energy-panel__grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 140px;
	filter: brightness(0.7);
	transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.energy-panel__grid li:hover img {
	transform: scale(1.06);
	filter: brightness(0.85);
}

.energy-panel__grid span {
	position: absolute;
	left: 0.85rem;
	bottom: 0.75rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
}

/* Projects — homepage strip + archive tiles */
.project-highlights,
.project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.project-tile,
.project-card {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	min-height: 0;
}

.project-tile__link,
.project-card__link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.project-tile__media,
.project-card__media {
	margin: 0;
	height: 100%;
}

.project-tile__media img,
.project-card__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
	opacity: 0.9;
	transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}

.project-tile:hover .project-tile__media img,
.project-card:hover .project-card__media img {
	transform: scale(1.06);
	opacity: 1;
}

.project-tile__overlay,
.project-card__meta {
	position: absolute;
	inset: auto 0 0;
	padding: 1.35rem 1.25rem 1.25rem;
	background: linear-gradient(to top, rgba(0, 18, 48, 0.94) 0%, rgba(0, 18, 48, 0.55) 55%, transparent 100%);
	color: var(--white);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}

.project-tile__cat,
.project-card__meta span {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber);
	font-family: var(--font-display);
	font-weight: 700;
}

.project-tile__title,
.project-card__meta h3 {
	margin: 0;
	font-size: 1.15rem;
	color: var(--white);
	line-height: 1.25;
}

.project-tile__excerpt {
	margin: 0.15rem 0 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 36ch;
}

.project-tile__cta {
	margin-top: 0.55rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	color: var(--amber);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.project-tile:hover .project-tile__cta {
	opacity: 1;
	transform: translateY(0);
}

.project-highlights .project-tile__excerpt,
.project-highlights .project-tile__cta {
	display: none;
}

/* Projects archive page */
.projects-hero {
	position: relative;
	min-height: clamp(400px, 58vh, 520px);
	display: grid;
	align-items: end;
	overflow: hidden;
	color: var(--white);
}

.projects-hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(108deg, rgba(0, 28, 84, 0.94) 0%, rgba(0, 48, 140, 0.7) 46%, rgba(8, 12, 22, 0.5) 100%),
		var(--projects-hero-image) center / cover no-repeat;
	transform: scale(1.04);
	animation: servicesHeroZoom 12s var(--ease) both;
}

.projects-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wide);
	width: 100%;
	margin: 0 auto;
	padding: clamp(8.5rem, 16vh, 10rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 3.25rem);
	animation: rise 0.9s var(--ease) both;
}

.projects-hero .eyebrow {
	color: var(--amber);
}

.projects-hero h1 {
	font-size: clamp(2rem, 4.5vw, 3.35rem);
	max-width: 12ch;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.projects-hero__lead {
	max-width: 40ch;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1rem;
}

.projects-hero__count {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.projects-shell {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3.25rem) clamp(1rem, 4vw, 2rem) clamp(3.5rem, 8vw, 5.5rem);
}

.projects-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--line);
}

.projects-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.projects-filters__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 0.55rem 0.95rem;
	text-decoration: none;
	color: var(--steel);
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.projects-filters__chip span {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: rgba(110, 109, 109, 0.85);
	background: rgba(0, 48, 140, 0.06);
	padding: 0.12rem 0.4rem;
	min-width: 1.4rem;
	text-align: center;
}

.projects-filters__chip.is-active,
.projects-filters__chip:hover {
	border-color: var(--navy);
	color: var(--white);
	background: var(--navy);
}

.projects-filters__chip.is-active span,
.projects-filters__chip:hover span {
	background: rgba(255, 255, 255, 0.18);
	color: var(--white);
}

.projects-toolbar__hint {
	margin: 0;
	font-size: 0.9rem;
	color: var(--steel);
	max-width: 28ch;
}

.projects-mosaic {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.15rem;
}

.projects-mosaic .project-tile {
	grid-column: span 4;
	min-height: 280px;
}

.projects-mosaic .project-tile--featured {
	grid-column: span 8;
	min-height: 420px;
}

.projects-mosaic .project-tile--featured .project-tile__media img {
	aspect-ratio: auto;
	min-height: 420px;
}

.projects-mosaic .project-tile--featured .project-tile__title {
	font-size: clamp(1.45rem, 2.4vw, 1.85rem);
	max-width: 18ch;
}

.projects-mosaic .project-tile--featured .project-tile__excerpt {
	-webkit-line-clamp: 3;
	max-width: 42ch;
}

.projects-mosaic .project-tile--featured .project-tile__cta {
	opacity: 1;
	transform: none;
}

.projects-mosaic .project-tile:not(.project-tile--featured) .project-tile__media img {
	min-height: 280px;
	aspect-ratio: auto;
}

.projects-pagination {
	margin-top: 2.5rem;
}

.projects-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	justify-content: center;
}

.projects-pagination .page-numbers {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	min-width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.75rem;
	text-decoration: none;
	border: 1px solid var(--line);
	color: var(--steel);
	background: var(--white);
}

.projects-pagination .page-numbers.current,
.projects-pagination a.page-numbers:hover {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}

.projects-empty {
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	text-align: center;
	max-width: 32rem;
	margin: 0 auto;
}

.projects-empty h2 {
	color: var(--navy-deep);
	margin-bottom: 0.5rem;
}

.projects-empty p {
	color: var(--steel);
	margin: 0 0 1.5rem;
}

.projects-empty__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.projects-close {
	margin-top: clamp(2.75rem, 6vw, 4rem);
	padding: clamp(1.5rem, 3vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.projects-close .eyebrow {
	margin-bottom: 0.35rem;
}

.projects-close h2 {
	margin: 0 0 0.4rem;
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	color: var(--navy-deep);
}

.projects-close p {
	margin: 0;
	color: var(--steel);
	max-width: 42ch;
}

/* CTA band — navy with subtle crepi grain */
.cta-band {
	margin: 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
	background-color: var(--navy-deep);
	background-image:
		linear-gradient(125deg, rgba(0, 48, 140, 0.94), rgba(0, 31, 92, 0.9)),
		var(--crepi-tile-fallback);
	background-image:
		linear-gradient(125deg, rgba(0, 48, 140, 0.94), rgba(0, 31, 92, 0.9)),
		var(--crepi-tile);
	background-size: auto, var(--crepi-size);
	background-repeat: no-repeat, repeat;
	color: var(--white);
}

.cta-band__inner {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.cta-band h2 {
	max-width: 18ch;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cta-band p {
	max-width: 40ch;
	color: rgba(255, 255, 255, 0.88);
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

/* Page chrome */
.page-hero {
	padding: clamp(8.5rem, 18vh, 10.5rem) clamp(1rem, 4vw, 2rem) 2.5rem;
	background:
		linear-gradient(180deg, rgba(0, 48, 140, 0.08), transparent 70%),
		var(--paper);
	border-bottom: 1px solid var(--line);
}

.page-hero__inner {
	max-width: var(--wide);
	margin: 0 auto;
}

.page-hero h1 {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	color: var(--navy-deep);
	max-width: 16ch;
}

.page-content {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
}

.content-split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
}

.content-block {
	padding: 1.5rem 0;
	border-top: 1px solid var(--line);
}

.content-block h2 {
	color: var(--navy);
}

.energy-list {
	display: grid;
	gap: 1.5rem;
}

.energy-item {
	display: grid;
	grid-template-columns: minmax(180px, 280px) 1fr;
	gap: 1.25rem;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.energy-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Contact */
.contact-page {
	background:
		linear-gradient(180deg, rgba(0, 48, 140, 0.06) 0%, transparent 28rem),
		var(--paper);
}

.contact-page .page-content {
	padding-top: 0;
}

.contact-hero {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(7.5rem, 16vh, 9.5rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 4vw, 2.75rem);
}

.contact-hero__inner {
	max-width: 40rem;
}

.contact-hero .eyebrow {
	color: var(--navy);
}

.contact-hero h1 {
	margin: 0 0 0.65rem;
	font-size: clamp(1.85rem, 4vw, 2.7rem);
	color: var(--navy-deep);
}

.contact-hero__lead {
	margin: 0 0 1.25rem;
	color: var(--steel);
	font-size: 1.05rem;
	line-height: 1.5;
	max-width: 38ch;
}

.contact-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.contact-hero__actions .btn {
	padding: 0.65rem 1.05rem;
	font-size: 0.9rem;
}

.contact-hero__actions .btn--outline {
	border-color: var(--navy);
	color: var(--navy);
}

.contact-hero__actions .btn--outline:hover {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.contact-channels {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.75rem, 4vw, 2.5rem);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.contact-channel {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.75rem;
	padding: 1rem 1.05rem;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid rgba(0, 48, 140, 0.14);
	border-top: 3px solid var(--navy);
	box-shadow: 0 10px 28px rgba(0, 31, 92, 0.07);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

a.contact-channel:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(0, 31, 92, 0.12);
	border-color: rgba(0, 48, 140, 0.28);
	background: rgba(0, 48, 140, 0.03);
	color: inherit;
}

.contact-channel--call {
	border-top-color: var(--amber);
}

.contact-channel--mail,
.contact-channel--place {
	border-top-color: var(--navy);
}

.contact-channel__icon {
	display: grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	background: rgba(0, 48, 140, 0.08);
	color: var(--navy);
	border: 1px solid rgba(0, 48, 140, 0.16);
}

.contact-channel--call .contact-channel__icon {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.contact-channel--mail .contact-channel__icon,
.contact-channel--place .contact-channel__icon {
	background: rgba(0, 48, 140, 0.1);
	border-color: rgba(0, 48, 140, 0.2);
	color: var(--navy-deep);
}

.contact-channel__body {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}

.contact-channel__label {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--navy);
}

.contact-channel--call .contact-channel__label {
	color: var(--amber);
}

.contact-channel__value {
	font-family: var(--font-display);
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--navy-deep);
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.contact-channel__hint {
	font-size: 0.85rem;
	color: var(--steel);
	line-height: 1.35;
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(1.25rem, 3vw, 2rem);
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
	align-items: start;
}

.contact-form-wrap {
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: #fff;
	border: 1px solid rgba(0, 48, 140, 0.14);
	border-top: 3px solid var(--navy);
	box-shadow: 0 12px 32px rgba(0, 31, 92, 0.08);
}

.contact-form-wrap .eyebrow {
	color: var(--navy);
}

.contact-form-wrap__lead {
	margin: 0 0 1.15rem;
	color: var(--steel);
	font-size: 0.95rem;
	line-height: 1.45;
}

.contact-details {
	background:
		linear-gradient(165deg, var(--navy-deep), var(--navy) 70%, #0a3a9a);
	color: rgba(255, 255, 255, 0.88);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border: 1px solid rgba(0, 48, 140, 0.2);
	border-top: 3px solid var(--amber);
	box-shadow: 0 16px 40px rgba(0, 20, 60, 0.18);
}

.contact-details .eyebrow {
	color: var(--amber);
}

.contact-details h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.25rem, 2.4vw, 1.55rem);
	color: #fff;
}

.contact-details__lead {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 1.45;
}

.contact-details__points {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.contact-details__points li {
	position: relative;
	padding-left: 1.15rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.92rem;
	line-height: 1.4;
}

.contact-details__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.45rem;
	height: 0.45rem;
	background: var(--amber);
}

.contact-details a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.contact-details a:hover {
	color: var(--amber);
}

.map-embed {
	margin-top: 0.25rem;
	aspect-ratio: 16 / 11;
	background: var(--navy-deep);
	overflow: hidden;
	border: 1px solid rgba(0, 48, 140, 0.1);
}

.map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.25) contrast(1.05);
}

/* Forms (contact plugin) */
.bauvora-form {
	display: grid;
	gap: 0.85rem;
	padding: 0;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.bauvora-form__field,
.bauvora-form label.bauvora-form__field {
	display: grid;
	gap: 0.3rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--navy-deep);
}

.bauvora-form input,
.bauvora-form select,
.bauvora-form textarea {
	font: inherit;
	font-size: 1rem;
	font-weight: 500;
	padding: 0.7rem 0.85rem;
	width: 100%;
	max-width: 100%;
	border: 1px solid #cfcbc4;
	border-radius: 0;
	background: #fcfbf9;
	color: var(--ink);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.bauvora-form input:focus,
.bauvora-form select:focus,
.bauvora-form textarea:focus {
	outline: none;
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgba(0, 48, 140, 0.12);
}

.bauvora-form textarea {
	resize: vertical;
	min-height: 7rem;
}

.bauvora-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.bauvora-form__check {
	display: flex !important;
	align-items: flex-start;
	gap: 0.55rem;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.88rem;
	color: var(--navy-deep);
}

.bauvora-form__check input {
	margin-top: 0.15rem;
	accent-color: var(--amber);
	width: 1.05rem;
	height: 1.05rem;
	flex-shrink: 0;
}

.bauvora-form__check a {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.bauvora-form__footer {
	display: grid;
	gap: 0.65rem;
	margin-top: 0.25rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(0, 48, 140, 0.14);
}

.bauvora-form__footer .btn {
	justify-self: start;
	padding: 0.65rem 1.15rem;
	font-size: 0.9rem;
}

.contact-page .bauvora-form__footer .btn--amber {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.contact-page .bauvora-form__footer .btn--amber:hover,
.contact-page .bauvora-form__footer .btn--amber:focus-visible {
	background: var(--navy-deep);
	border-color: var(--navy-deep);
	color: #fff;
}

.bauvora-form__message {
	padding: 0.7rem 0.85rem;
	font-weight: 650;
	font-size: 0.9rem;
	border: 1px solid var(--line);
	border-top: 3px solid var(--amber);
}

.bauvora-form__message--ok {
	background: rgba(0, 48, 140, 0.06);
	color: var(--navy-deep);
}

.bauvora-form__message--err {
	background: rgba(180, 40, 40, 0.07);
	color: #8a1f1f;
	border-top-color: #b42828;
	border-color: rgba(180, 40, 40, 0.2);
}

.bauvora-form .honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

.form-intro {
	margin: 0 0 0.45rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.25rem, 2.4vw, 1.55rem);
	color: var(--navy-deep);
}

.form-intro + .bauvora-form,
.contact-form-wrap .bauvora-form {
	margin-top: 0;
	border: 0;
	box-shadow: none;
	padding: 0;
	background: transparent;
}

.honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

/* Filters */
.project-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
}

.project-filters a {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.45rem 0.85rem;
	border: 1px solid var(--line);
	text-decoration: none;
	color: var(--steel);
	background: var(--white);
}

.project-filters a.is-active,
.project-filters a:hover {
	border-color: var(--navy);
	color: var(--navy);
	background: rgba(0, 48, 140, 0.06);
}

/* Footer — light brand theme */
.site-footer {
	background: var(--paper);
	color: var(--steel);
	margin-top: auto;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--line);
}

.site-footer__accent {
	height: 4px;
	background: linear-gradient(90deg, var(--amber) 0%, var(--amber) 28%, var(--navy) 28%, var(--navy) 100%);
}

.site-footer__cta {
	border-bottom: 1px solid var(--line);
}

.site-footer__cta-inner {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.site-footer__cta-eyebrow {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber);
}

.site-footer__cta-title {
	margin: 0;
	font-size: clamp(1.35rem, 2.6vw, 1.85rem);
	color: var(--navy-deep);
	max-width: 18ch;
}

.site-footer__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.site-footer__cta-phone {
	border-color: var(--navy);
	color: var(--navy);
}

.site-footer__grid {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem);
	display: grid;
	grid-template-columns: 1.35fr 1.15fr 0.85fr 0.85fr;
	gap: 2rem 1.75rem;
}

.site-footer h3 {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy-deep);
	margin: 0 0 1.1rem;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid rgba(241, 161, 42, 0.55);
	display: inline-block;
	min-width: 6rem;
}

.site-footer a {
	color: var(--navy);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--amber);
}

.site-footer .menu {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
}

.site-footer .menu a {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
}

.site-footer__lead {
	max-width: 28ch;
	color: var(--steel);
	margin: 0 0 1rem;
}

.site-footer__brand-link {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--navy) !important;
	border-bottom: 2px solid var(--amber);
	padding-bottom: 0.1rem;
}

.site-footer__brand-link:hover {
	color: var(--amber) !important;
}

.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.95rem;
}

.footer-contact__label {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 0.15rem;
}

.footer-contact a,
.footer-contact span:not(.footer-contact__label) {
	font-size: 1.02rem;
	color: var(--ink);
	line-height: 1.35;
}

.footer-contact a {
	color: var(--navy);
	font-weight: 600;
}

.site-footer__bar {
	border-top: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.55);
	padding: 1rem clamp(1rem, 4vw, 2rem);
	font-size: 0.88rem;
	color: var(--steel);
}

.site-footer__bar-inner {
	max-width: var(--wide);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.site-footer__bar p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.site-footer__legal .menu--legal {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.85rem 1.15rem;
}

.site-footer__legal .menu--legal a,
.site-footer__legal .link-button {
	font-size: 0.85rem;
	color: var(--steel);
}

.site-footer__legal .link-button:hover,
.site-footer__legal .menu--legal a:hover {
	color: var(--navy);
}

.site-logo--footer {
	background: transparent;
	padding: 0;
	display: inline-flex;
	margin-bottom: 1rem;
}

.site-logo--footer img {
	width: min(240px, 72vw);
	background: transparent;
	filter: none;
}

/* Cookie banner */
.bauvora-cookie-banner {
	position: fixed;
	inset: auto 1rem 1rem;
	z-index: 9999;
	max-width: 420px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: 1.25rem;
	transform: translateY(120%);
	opacity: 0;
	transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.bauvora-cookie-banner.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.bauvora-cookie-banner h2 {
	font-size: 1.15rem;
	color: var(--navy);
}

.bauvora-cookie-banner p {
	font-size: 0.95rem;
	color: var(--steel);
}

.bauvora-cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.bauvora-cookie-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(10, 16, 30, 0.55);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.bauvora-cookie-modal.is-open {
	display: flex;
}

.bauvora-cookie-modal__panel {
	background: var(--white);
	max-width: 520px;
	width: 100%;
	padding: 1.5rem;
	border: 1px solid var(--line);
}

.bauvora-cookie-modal label {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	margin: 0.85rem 0;
	font-size: 0.95rem;
}

/* Reveal */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-inview {
	opacity: 1;
	transform: none;
}

/* Clearer page layout helpers */
.page-hero__inner .section__lead {
	max-width: 42rem;
}

.page-toc {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 2rem;
	padding: 0.85rem 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.page-toc a {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	color: var(--navy);
	padding: 0.45rem 0.85rem;
}

.page-toc a:hover {
	border-color: var(--navy);
	color: var(--navy);
	background: rgba(0, 48, 140, 0.05);
}

.info-list {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.info-list li {
	position: relative;
	padding-left: 1.35rem;
	color: var(--steel);
	line-height: 1.45;
}

.info-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.55rem;
	height: 0.55rem;
	background: var(--amber);
}

.detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.5rem;
	margin-top: 1.25rem;
}

.detail-box {
	padding: var(--box-pad);
}

.detail-box h3,
.detail-box h4 {
	font-size: 0.95rem;
	margin: 0 0 0.4rem;
	color: var(--navy-deep);
}

.detail-box p,
.detail-box ul {
	margin: 0;
	font-size: 0.95rem;
	color: var(--steel);
}

.detail-box ul {
	padding-left: 1.1rem;
}

.process-steps {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	counter-reset: step;
	position: relative;
}

.process-steps li {
	padding: 1.25rem 1.2rem 1.35rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-height: 100%;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.process-steps li:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0, 31, 92, 0.12);
	border-color: rgba(0, 48, 140, 0.22);
}

.process-steps li::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin-bottom: 0.75rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	color: var(--navy-deep);
	background: var(--amber);
	line-height: 1;
}

.process-steps li:nth-child(even)::before {
	background: var(--navy-deep);
	color: #fff;
}

.process-steps li:nth-child(even) {
	border-top-color: var(--navy-deep);
}

.process-steps strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.08rem;
	color: var(--navy-deep);
	margin: 0;
	line-height: 1.25;
}

.process-steps span {
	display: block;
	font-size: 0.92rem;
	color: var(--steel);
	line-height: 1.5;
	margin: 0;
}

.home-intro {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2.75rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) 0;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.85fr);
	gap: clamp(1.75rem, 4vw, 3.25rem);
	align-items: stretch;
}

.home-intro__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(0.25rem, 1vw, 0.75rem) 0;
}

.home-intro__copy h2 {
	max-width: 16ch;
	margin-bottom: 0.85rem;
	font-size: clamp(1.65rem, 3.2vw, 2.35rem);
	color: var(--navy-deep);
}

.home-intro__copy .section__lead {
	max-width: 42ch;
	margin-bottom: 0.85rem;
}

.home-intro__copy > p:not(.eyebrow):not(.section__lead) {
	max-width: 44ch;
	color: var(--steel);
	margin-bottom: 1.35rem;
}

.home-intro__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.home-intro__points li {
	position: relative;
	padding: 0.55rem 0.75rem 0.55rem 2rem;
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.95rem;
	color: var(--navy-deep);
	border-left: 2px solid var(--amber);
	background: linear-gradient(90deg, rgba(0, 48, 140, 0.05), transparent 70%);
}

.home-intro__points li::before {
	content: "";
	position: absolute;
	left: 0.7rem;
	top: 50%;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--amber);
	transform: translateY(-50%);
}

.home-intro__aside {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	background-image: none;
	align-self: start;
	position: sticky;
	top: 6.5rem;
	transition: top 0.3s var(--ease);
}

body:has(.site-header.is-scrolled) .home-intro__aside {
	top: 4.5rem;
}

.home-intro__aside-head {
	padding: 1.15rem 1.25rem 1rem;
	border-bottom: 1px solid rgba(0, 48, 140, 0.1);
	background: rgba(0, 48, 140, 0.03);
}

.home-intro__aside-eyebrow {
	margin: 0 0 0.3rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber);
}

.home-intro__aside h3 {
	color: var(--navy-deep);
	font-size: clamp(1.2rem, 2.2vw, 1.4rem);
	margin: 0;
	line-height: 1.2;
}

.home-intro__aside-count {
	margin: 0.4rem 0 0;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 650;
	color: var(--steel);
	letter-spacing: 0.02em;
}

.home-intro__aside-groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	padding: 0;
}

.home-intro__aside-group {
	padding: 0.85rem 0.75rem 0.7rem;
}

.home-intro__aside-group + .home-intro__aside-group {
	border-top: 0;
	border-left: 1px solid rgba(0, 48, 140, 0.1);
}

.home-intro__aside-group--energy {
	background: linear-gradient(180deg, rgba(241, 161, 42, 0.08), transparent 80%);
}

.home-intro__aside-label {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--navy);
	margin: 0 0 0.4rem 0.35rem;
	padding: 0.22rem 0.5rem;
	background: rgba(0, 48, 140, 0.07);
}

.home-intro__aside-group--energy .home-intro__aside-label {
	color: #8a5a08;
	background: rgba(241, 161, 42, 0.16);
}

.home-intro__aside ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.home-intro__aside li {
	padding: 0;
	border: 0;
	font-size: 0.95rem;
	line-height: 1.35;
	color: var(--navy-deep);
}

.home-intro__aside li + li {
	border-top: 1px solid rgba(0, 48, 140, 0.06);
}

.home-intro__aside-groups a {
	display: grid;
	grid-template-columns: 1.85rem 1fr auto;
	align-items: center;
	gap: 0.55rem;
	padding: 0.58rem 0.45rem;
	color: var(--navy-deep);
	text-decoration: none;
	border-left: 2px solid transparent;
	transition:
		background 0.2s var(--ease),
		color 0.2s var(--ease),
		border-color 0.2s var(--ease);
}

.home-intro__aside-groups a:hover,
.home-intro__aside-groups a:focus-visible {
	background: rgba(0, 48, 140, 0.05);
	border-left-color: var(--amber);
	color: var(--navy);
	outline: none;
}

.home-intro__aside-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	color: var(--amber);
}

.home-intro__aside-title {
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.95rem;
}

.home-intro__aside-go {
	width: 0.4rem;
	height: 0.4rem;
	border-right: 2px solid var(--amber);
	border-bottom: 2px solid var(--amber);
	transform: rotate(-45deg);
	opacity: 0;
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.home-intro__aside-groups a:hover .home-intro__aside-go,
.home-intro__aside-groups a:focus-visible .home-intro__aside-go {
	opacity: 1;
	transform: rotate(-45deg) translate(1px, 1px);
}

.home-intro__aside-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
	padding: 0.95rem 1.25rem;
	border-top: 1px solid rgba(0, 48, 140, 0.12);
	background: rgba(0, 48, 140, 0.04);
	width: 100%;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--navy-deep);
	text-decoration: none;
	border-bottom: none;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.home-intro__aside-link::after {
	content: "→";
	color: var(--amber);
	font-size: 1.1rem;
	line-height: 1;
	transition: transform 0.2s var(--ease);
}

.home-intro__aside-link:hover {
	color: var(--navy);
	background: rgba(241, 161, 42, 0.12);
}

.home-intro__aside-link:hover::after {
	transform: translateX(4px);
}

.home-wizard-cta {
	max-width: var(--wide);
	margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
	padding: 0;
	width: calc(100% - 2 * clamp(1rem, 4vw, 2rem));
	overflow: hidden;
	background: var(--white);
	background-image: none;
}

.home-wizard-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.75fr);
	align-items: stretch;
	gap: 0;
}

.home-wizard-cta__copy {
	padding: clamp(1.5rem, 3.5vw, 2.25rem);
}

.home-wizard-cta__copy .eyebrow {
	margin-bottom: 0.4rem;
}

.home-wizard-cta h2 {
	margin: 0 0 0.65rem;
	font-size: clamp(1.4rem, 2.8vw, 1.95rem);
	color: var(--navy-deep);
	max-width: 20ch;
}

.home-wizard-cta__copy > p {
	margin: 0 0 1.25rem;
	color: var(--steel);
	max-width: 46ch;
	line-height: 1.55;
}

.home-wizard-cta__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.55rem;
}

.home-wizard-cta__steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.45rem;
	padding: 0.65rem 0.7rem;
	background: rgba(0, 48, 140, 0.04);
	border-top: 2px solid var(--amber);
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.88rem;
	color: var(--navy-deep);
	line-height: 1.3;
}

.home-wizard-cta__step-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	color: var(--amber);
}

.home-wizard-cta__action {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
	padding: clamp(1.5rem, 3.5vw, 2.25rem);
	background-color: var(--navy-deep);
	background-image:
		linear-gradient(165deg, rgba(0, 31, 92, 0.92), rgba(0, 48, 140, 0.88)),
		var(--crepi-tile-fallback);
	background-image:
		linear-gradient(165deg, rgba(0, 31, 92, 0.92), rgba(0, 48, 140, 0.88)),
		var(--crepi-tile);
	background-size: auto, var(--crepi-size);
	background-repeat: no-repeat, repeat;
	color: var(--white);
}

.home-wizard-cta__action-kicker {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber);
}

.home-wizard-cta__action-title {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	line-height: 1.25;
	color: var(--white);
	max-width: 14ch;
}

.home-wizard-cta__action .btn {
	align-self: stretch;
	justify-content: center;
	text-align: center;
}

.home-wizard-cta__phone {
	margin-top: 0.15rem;
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	border-bottom: 1px solid rgba(241, 161, 42, 0.45);
	align-self: flex-start;
	padding-bottom: 0.1rem;
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.home-wizard-cta__phone:hover {
	color: var(--amber);
	border-bottom-color: var(--amber);
}

.offerte-page__alt {
	margin-top: 1.75rem;
	text-align: center;
	color: var(--steel);
	font-size: 0.95rem;
}

.offerte-page .page-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.offerte-page .bauvora-wizard {
	width: 100%;
}

.offerte-page__alt a {
	font-weight: 700;
	text-decoration: none;
}

.service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
}

.service-cards--energy {
	grid-template-columns: repeat(2, 1fr);
}

.service-card {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-content: stretch;
	text-decoration: none;
	color: inherit;
	padding: 0;
	overflow: hidden;
	transition:
		transform 0.3s var(--ease),
		border-color 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 48, 140, 0.28);
	box-shadow: var(--box-shadow-hover);
	color: inherit;
}

.service-card__media {
	position: relative;
	display: block;
	overflow: hidden;
}

.service-card__media img,
.service-card img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
	border-bottom: 1px solid var(--box-border);
	transition: transform 0.45s var(--ease);
}

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

.service-card__index {
	position: absolute;
	left: 0.75rem;
	bottom: 0.75rem;
	z-index: 1;
	margin: 0;
	padding: 0.35rem 0.55rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	color: var(--navy-deep);
	background: var(--amber);
	line-height: 1;
}

.service-card__body {
	display: grid;
	gap: 0.4rem;
	padding: 1rem 1rem 1.15rem;
	flex: 1;
	align-content: start;
}

.service-card__title,
.service-card strong {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--navy-deep);
	line-height: 1.25;
}

.service-card__teaser,
.service-card em {
	font-style: normal;
	font-size: 0.9rem;
	color: var(--steel);
	line-height: 1.4;
}

.service-card__link {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--navy);
	border-bottom: 2px solid var(--amber);
	justify-self: start;
	margin-top: 0.45rem;
	padding-bottom: 0.05rem;
	transition: color 0.2s var(--ease);
}

.service-card__link::after {
	content: " →";
	color: var(--amber);
	transition: margin 0.2s var(--ease);
}

.service-card:hover .service-card__link {
	color: var(--navy-deep);
}

.service-card:hover .service-card__link::after {
	margin-left: 0.15rem;
}

.service-card--energy .service-card__media img {
	aspect-ratio: 16 / 10;
}

.section--energy-services {
	padding-top: 0;
}

.section--energy-services .section__head {
	max-width: none;
}

/* —— Individual service page —— */
.service-hero {
	position: relative;
	min-height: clamp(440px, 68vh, 620px);
	display: grid;
	align-items: end;
	overflow: hidden;
	color: var(--white);
}

.service-hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(0, 31, 92, 0.88) 0%, rgba(0, 48, 140, 0.55) 48%, rgba(0, 20, 50, 0.35) 100%),
		var(--service-hero-image) center / cover no-repeat;
}

.service-page--energy .service-hero__bg {
	background:
		linear-gradient(115deg, rgba(0, 31, 92, 0.82) 0%, rgba(90, 55, 10, 0.45) 55%, rgba(0, 20, 50, 0.4) 100%),
		var(--service-hero-image) center / cover no-repeat;
}

.service-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wide);
	width: 100%;
	margin: 0 auto;
	padding: clamp(7.5rem, 16vh, 10rem) clamp(1rem, 4vw, 2rem) clamp(2.25rem, 5vw, 3.25rem);
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	gap: 1.5rem;
	align-items: end;
}

.service-hero__copy {
	max-width: 34rem;
}

.service-hero .eyebrow {
	color: var(--amber);
}

.service-hero h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 5vw, 3.3rem);
	color: var(--white);
	max-width: 14ch;
	line-height: 1.05;
}

.service-hero__lead {
	margin: 0 0 1.5rem;
	font-size: clamp(1.02rem, 2vw, 1.15rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	max-width: 42ch;
}

.service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.service-hero__actions .btn--ghost {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.55);
	background: transparent;
}

.service-hero__actions .btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--white);
	color: var(--white);
}

.service-hero__index {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(4.5rem, 12vw, 8rem);
	line-height: 0.85;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.14);
	user-select: none;
}

.service-switcher {
	border-bottom: 1px solid rgba(0, 48, 140, 0.1);
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	position: sticky;
	top: 5.75rem;
	z-index: 40;
	transition: top 0.3s var(--ease);
}

body:has(.site-header.is-scrolled) .service-switcher {
	top: 4.15rem;
}

.service-switcher__inner {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 clamp(0.85rem, 2.2vw, 1.5rem);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: stretch;
	gap: 1.25rem;
}

.service-switcher__all {
	display: inline-flex;
	align-items: center;
	align-self: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.02em;
	color: var(--steel);
	text-decoration: none;
	padding: 0.85rem 0;
	border: 0;
	background: transparent;
	white-space: nowrap;
	line-height: 1.2;
	transition: color 0.2s var(--ease);
}

.service-switcher__all:hover {
	color: var(--navy-deep);
	background: transparent;
}

.service-switcher__track {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	gap: 1.25rem;
	min-width: 0;
	width: 100%;
}

.service-switcher__group {
	display: flex;
	flex: 1 1 0;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.1rem;
	min-width: 0;
}

.service-switcher__group--energy {
	padding-left: 1.15rem;
	border-left: 2px solid var(--amber);
}

.service-switcher__item {
	display: inline-flex;
	flex: 1 1 0;
	flex-direction: row;
	align-items: baseline;
	justify-content: center;
	gap: 0.4rem;
	min-width: 0;
	min-height: 0;
	padding: 0.95rem 0.55rem 0.85rem;
	text-decoration: none;
	color: var(--navy);
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	font-family: var(--font-display);
	font-weight: 650;
	font-size: clamp(0.72rem, 0.95vw, 0.84rem);
	line-height: 1.2;
	white-space: nowrap;
	transition:
		color 0.2s var(--ease),
		border-color 0.2s var(--ease),
		background 0.2s var(--ease);
}

.service-switcher__item:hover {
	color: var(--navy-deep);
	background: rgba(0, 48, 140, 0.03);
	transform: none;
}

.service-switcher__item.is-current {
	color: var(--navy-deep);
	background: transparent;
	border-bottom-color: var(--amber);
	box-shadow: none;
}

.service-switcher__num {
	font-weight: 800;
	font-size: 0.68rem;
	letter-spacing: 0.04em;
	color: var(--amber);
	line-height: 1;
	flex: 0 0 auto;
}

.service-switcher__item.is-current .service-switcher__num {
	color: var(--amber);
}

.service-switcher__title {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.service-intro {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.service-intro__copy .eyebrow {
	margin-bottom: 0.4rem;
}

.service-intro__copy h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.55rem, 3vw, 2.1rem);
	color: var(--navy-deep);
	max-width: 14ch;
}

.service-intro__copy p {
	color: var(--steel);
	max-width: 46ch;
	line-height: 1.6;
}

.service-intro__media {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--box-border);
	box-shadow: var(--box-shadow);
	border-top: var(--box-accent-size) solid var(--box-accent);
}

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

.service-facts {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 3.5rem);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.service-facts__box {
	padding: 1.35rem 1.35rem 1.5rem;
	background: #fff;
	border: 1px solid var(--box-border);
	border-top: var(--box-accent-size) solid var(--box-accent);
	box-shadow: var(--box-shadow);
}

.service-facts__box--when {
	border-top-color: var(--navy);
}

.service-facts__label {
	margin: 0 0 0.85rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber);
}

.service-facts__box--when .service-facts__label {
	color: var(--navy);
}

.service-facts__box ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.service-facts__box li {
	position: relative;
	padding-left: 1.15rem;
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.98rem;
	color: var(--navy-deep);
	line-height: 1.4;
}

.service-facts__box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.45rem;
	height: 0.45rem;
	background: var(--amber);
}

.service-process,
.service-related {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1rem, 4vw, 2rem);
}

.service-related {
	padding-top: 0;
}

.service-close {
	max-width: var(--wide);
	margin: 0 auto clamp(3rem, 7vw, 5rem);
	width: calc(100% - 2 * clamp(1rem, 4vw, 2rem));
	padding: clamp(1.5rem, 3vw, 2.15rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--box-border);
	border-top: var(--box-accent-size) solid var(--box-accent);
	box-shadow: var(--box-shadow);
}

.service-close__copy {
	max-width: 36rem;
}

.service-close h2 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.35rem, 2.6vw, 1.8rem);
	color: var(--navy-deep);
}

.service-close p {
	margin: 0;
	color: var(--steel);
}

.service-close__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

/* —— Diensten page (dedicated layout) —— */
.services-hero {
	position: relative;
	min-height: clamp(420px, 62vh, 560px);
	display: grid;
	align-items: end;
	overflow: hidden;
	color: var(--white);
}

.services-hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(0, 31, 92, 0.92) 0%, rgba(0, 48, 140, 0.72) 48%, rgba(10, 16, 28, 0.45) 100%),
		var(--services-hero-image) center / cover no-repeat;
	transform: scale(1.04);
	animation: servicesHeroZoom 12s var(--ease) both;
}

@keyframes servicesHeroZoom {
	from { transform: scale(1.08); }
	to { transform: scale(1.02); }
}

.services-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wide);
	width: 100%;
	margin: 0 auto;
	padding: clamp(8.5rem, 16vh, 10rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 3.5rem);
	animation: rise 0.9s var(--ease) both;
}

.services-hero .eyebrow {
	color: var(--amber);
}

.services-hero h1 {
	font-size: clamp(2rem, 4.5vw, 3.35rem);
	max-width: 14ch;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.services-hero__lead {
	max-width: 38ch;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1.5rem;
}

.services-hero__jump {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.services-hero__jump a {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	color: var(--white);
	padding: 0.55rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(6px);
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.services-hero__jump a:hover {
	background: var(--amber);
	border-color: var(--amber);
	color: var(--navy-deep);
}

.services-block {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: clamp(3rem, 7vw, 5rem) 0;
}

.services-block__head {
	max-width: 38rem;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	padding: 0 clamp(1rem, 4vw, 2rem);
}

.services-block__head h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	color: var(--navy-deep);
}

.services-block__head p {
	color: var(--steel);
	font-size: 1.1rem;
	margin: 0;
}

.services-block--renovation {
	padding: clamp(3.25rem, 7vw, 5rem) 0;
	background:
		radial-gradient(720px 280px at 0% 12%, rgba(0, 48, 140, 0.07), transparent 55%),
		radial-gradient(520px 220px at 100% 40%, rgba(241, 161, 42, 0.08), transparent 50%),
		linear-gradient(180deg, rgba(0, 48, 140, 0.03), transparent 50%),
		var(--paper);
	border-bottom: 1px solid rgba(0, 48, 140, 0.1);
}

.services-block--renovation .services-block__head {
	max-width: var(--wide);
	margin-left: auto;
	margin-right: auto;
}

.services-block--renovation .services-block__head .eyebrow {
	color: var(--navy);
}

.services-feature-list {
	display: grid;
	gap: clamp(2rem, 5vw, 3.25rem);
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
}

.services-feature {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(1.35rem, 3.5vw, 2.75rem);
	align-items: center;
	padding: clamp(1rem, 2.5vw, 1.35rem);
	background: #fff;
	border: 1px solid rgba(0, 48, 140, 0.1);
	border-left: 3px solid var(--amber);
	box-shadow: 0 12px 32px rgba(0, 24, 64, 0.06);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.services-feature:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(0, 24, 64, 0.12);
	border-color: rgba(0, 48, 140, 0.18);
}

.services-feature--reverse {
	grid-template-columns: 1fr 1.2fr;
	border-left: 1px solid rgba(0, 48, 140, 0.1);
	border-right: 3px solid var(--navy-deep);
}

.services-feature--reverse .services-feature__media {
	order: 2;
}

.services-feature__media {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	align-self: stretch;
}

.services-feature__media img {
	width: 100%;
	height: 100%;
	min-height: 16rem;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.services-feature:hover .services-feature__media img {
	transform: scale(1.05);
}

.services-feature__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 4px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s var(--ease);
}

.services-feature:hover .services-feature__media::after {
	transform: scaleX(1);
}

.services-feature--reverse .services-feature__media::after {
	background: var(--navy-deep);
}

.services-feature__index {
	position: absolute;
	left: 1rem;
	top: 1rem;
	z-index: 1;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	color: var(--navy-deep);
	background: var(--amber);
	padding: 0.45rem 0.7rem;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(0, 16, 40, 0.18);
}

.services-feature--reverse .services-feature__index {
	background: #fff;
	color: var(--navy-deep);
}

.services-feature__body {
	display: grid;
	align-content: center;
	gap: 0.15rem;
	padding: 0.25rem 0.35rem 0.25rem 0;
}

.services-feature--reverse .services-feature__body {
	padding: 0.25rem 0 0.25rem 0.35rem;
}

.services-feature__tag {
	margin: 0 0 0.4rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber);
}

.services-feature__body h3 {
	font-size: clamp(1.55rem, 2.8vw, 2.15rem);
	margin: 0 0 0.55rem;
}

.services-feature__body h3 a {
	color: var(--navy-deep);
	text-decoration: none;
}

.services-feature__body h3 a:hover {
	color: var(--navy);
}

.services-feature__body > p {
	color: var(--steel);
	margin: 0 0 0.85rem;
	line-height: 1.55;
}

.services-feature__body .info-list {
	margin: 0 0 1.1rem;
}

.services-feature__body .text-link {
	justify-self: start;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--navy);
	text-decoration: none;
	border-bottom: 2px solid var(--amber);
	padding-bottom: 0.1rem;
	transition: color 0.2s var(--ease);
}

.services-feature__body .text-link::after {
	content: " →";
	color: var(--amber);
	transition: margin 0.2s var(--ease);
}

.services-feature:hover .services-feature__body .text-link {
	color: var(--navy-deep);
}

.services-feature:hover .services-feature__body .text-link::after {
	margin-left: 0.15rem;
}

.services-energy {
	background:
		radial-gradient(700px 300px at 88% 10%, rgba(241, 161, 42, 0.2), transparent 55%),
		radial-gradient(560px 260px at 8% 80%, rgba(255, 255, 255, 0.08), transparent 50%),
		linear-gradient(160deg, #0c1630 0%, #001f5c 42%, #00308c 100%);
	color: var(--white);
	padding: clamp(3.25rem, 7vw, 5rem) 0;
}

.services-energy__inner {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
}

.services-energy__intro {
	max-width: 40rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.services-energy__intro h2 {
	color: var(--white);
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	margin-bottom: 0.55rem;
}

.services-energy__intro p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.55;
}

.services-energy__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.85rem;
}

.services-energy__item {
	display: grid;
	grid-template-rows: auto 1fr;
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-top: 3px solid var(--amber);
	box-shadow: 0 14px 36px rgba(0, 8, 30, 0.24);
	overflow: hidden;
	transition:
		transform 0.35s var(--ease),
		box-shadow 0.35s var(--ease),
		border-color 0.35s var(--ease);
}

.services-energy__item:nth-child(even) {
	border-top-color: rgba(255, 255, 255, 0.85);
}

.services-energy__item:hover {
	transform: translateY(-5px);
	border-top-color: var(--amber);
	box-shadow: 0 24px 52px rgba(0, 8, 30, 0.34);
	color: inherit;
}

.services-energy__media {
	position: relative;
	display: block;
	overflow: hidden;
}

.services-energy__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(0, 16, 48, 0.35));
	pointer-events: none;
	transition: opacity 0.35s var(--ease);
}

.services-energy__item:hover .services-energy__media::after {
	opacity: 0.65;
}

.services-energy__media img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	display: block;
	filter: brightness(0.9) saturate(1.05);
	transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}

.services-energy__item:hover .services-energy__media img {
	transform: scale(1.06);
	filter: brightness(0.98) saturate(1.08);
}

.services-energy__num {
	position: absolute;
	left: 0.75rem;
	bottom: 0.75rem;
	z-index: 1;
	margin: 0;
	padding: 0.4rem 0.6rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	color: var(--navy-deep);
	background: var(--amber);
	line-height: 1;
	box-shadow: 0 6px 16px rgba(0, 8, 30, 0.25);
}

.services-energy__item:nth-child(even) .services-energy__num {
	background: #fff;
	color: var(--navy-deep);
}

.services-energy__meta {
	display: grid;
	gap: 0.4rem;
	align-content: start;
	padding: 1.15rem 1.1rem 1.25rem;
	background: #fff;
}

.services-energy__meta strong {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--navy-deep);
	line-height: 1.25;
}

.services-energy__meta em {
	font-style: normal;
	font-size: 0.9rem;
	color: var(--steel);
	line-height: 1.45;
}

.services-energy__cta {
	margin-top: 0.55rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--navy);
	border-bottom: 2px solid var(--amber);
	justify-self: start;
	padding-bottom: 0.05rem;
	transition: color 0.2s var(--ease);
}

.services-energy__cta::after {
	content: " →";
	color: var(--amber);
	transition: margin 0.2s var(--ease);
}

.services-energy__item:hover .services-energy__cta {
	color: var(--navy-deep);
}

.services-energy__item:hover .services-energy__cta::after {
	margin-left: 0.15rem;
}

.services-block--process {
	padding: clamp(3.25rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
	background:
		radial-gradient(720px 280px at 92% 8%, rgba(241, 161, 42, 0.12), transparent 55%),
		radial-gradient(640px 240px at 8% 0%, rgba(0, 48, 140, 0.08), transparent 55%),
		linear-gradient(180deg, rgba(0, 48, 140, 0.05), transparent 65%),
		var(--paper);
	border-top: 1px solid rgba(0, 48, 140, 0.1);
	border-bottom: 1px solid rgba(0, 48, 140, 0.1);
}

.services-block--process .services-block__head {
	max-width: var(--wide);
	margin-left: auto;
	margin-right: auto;
}

.services-block--process .services-block__head .eyebrow {
	color: var(--navy);
}

.services-block__process {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
}

.services-block--process .process-steps {
	margin-top: 0;
	gap: 0.85rem;
}

.services-block--process .process-steps li {
	padding: clamp(1.2rem, 2.5vw, 1.5rem);
	gap: 0.45rem;
	background: #fff;
}

.services-block--process .process-steps li::before {
	width: 2.4rem;
	height: 2.4rem;
	font-size: 0.78rem;
}

.services-close {
	margin-top: 1.5rem;
	padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
	background:
		radial-gradient(500px 180px at 100% 0%, rgba(241, 161, 42, 0.22), transparent 55%),
		linear-gradient(135deg, #001f5c 0%, #00308c 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-top: 3px solid var(--amber);
	box-shadow: 0 16px 40px rgba(0, 16, 48, 0.22);
}

.services-close h3 {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
	color: var(--white);
}

.services-close p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	max-width: 40ch;
}

.energy-panel .info-list {
	margin-bottom: 1.25rem;
}

.section--process {
	padding-top: clamp(3.25rem, 7vw, 5rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section--process .section__head {
	max-width: 36rem;
}

.section--process .process-steps {
	margin-top: 0;
}

.home-services {
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(3rem, 7vw, 4.75rem) clamp(1rem, 4vw, 2rem);
}

.home-services__head {
	max-width: 40rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.home-services__head h2 {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	color: var(--navy-deep);
	margin: 0 0 0.5rem;
}

.home-services__head p {
	margin: 0;
	color: var(--steel);
	font-size: 1.05rem;
	line-height: 1.55;
}

.home-services__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3.5vw, 2.25rem);
}

.home-services__col {
	display: grid;
	gap: 0;
	padding: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 48, 140, 0.12);
	box-shadow: 0 14px 36px rgba(0, 24, 64, 0.07);
}

.home-services__col--reno,
.home-services__col--energy {
	border-top: 3px solid var(--amber);
}

.home-services__col-head {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding: clamp(1.2rem, 2.8vw, 1.6rem) clamp(1.2rem, 2.8vw, 1.75rem);
	background:
		radial-gradient(520px 180px at 100% 0%, rgba(241, 161, 42, 0.2), transparent 55%),
		linear-gradient(135deg, #0c1630 0%, #001f5c 48%, #00308c 100%);
	color: var(--white);
}

.home-services__col--energy .home-services__col-head {
	background:
		radial-gradient(520px 180px at 0% 0%, rgba(241, 161, 42, 0.18), transparent 55%),
		linear-gradient(135deg, #00152f 0%, #002866 52%, #00308c 100%);
}

.home-services__col-copy {
	display: grid;
	gap: 0.35rem;
	max-width: 40rem;
}

.home-services__col-label {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber);
}

.home-services__col-head h3 {
	margin: 0;
	font-size: clamp(1.45rem, 2.6vw, 1.85rem);
	color: var(--white);
}

.home-services__col-copy > p:not(.home-services__col-label) {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.98rem;
	line-height: 1.5;
}

.home-services__col-head .btn {
	flex: 0 0 auto;
	align-self: center;
}

.home-services__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 0.75rem;
	padding: clamp(0.9rem, 2vw, 1.15rem);
	background: #f4f6fa;
}

.home-services__col--energy .home-services__list {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.home-services__item {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 0;
	text-decoration: none;
	color: inherit;
	padding: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 48, 140, 0.1);
	transition:
		transform 0.28s var(--ease),
		border-color 0.28s var(--ease),
		box-shadow 0.28s var(--ease);
}

.home-services__item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 48, 140, 0.24);
	box-shadow: 0 14px 32px rgba(0, 24, 64, 0.14);
	color: inherit;
}

.home-services__item-media {
	position: relative;
	display: block;
	overflow: hidden;
}

.home-services__item-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(0, 24, 64, 0.28));
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.28s var(--ease);
}

.home-services__item:hover .home-services__item-media::after {
	opacity: 1;
}

.home-services__item-media img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--ease);
}

.home-services__item:hover .home-services__item-media img {
	transform: scale(1.05);
}

.home-services__item-num {
	position: absolute;
	left: 0.55rem;
	top: 0.55rem;
	z-index: 1;
	padding: 0.32rem 0.45rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	color: var(--navy-deep);
	background: var(--amber);
	line-height: 1;
	box-shadow: 0 5px 14px rgba(0, 12, 40, 0.22);
}

.home-services__item-body {
	display: grid;
	align-content: start;
	gap: 0.3rem;
	padding: 0.9rem 0.95rem 1rem;
}

.home-services__item-body strong {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy-deep);
	line-height: 1.25;
}

.home-services__item-body em {
	font-style: normal;
	font-size: 0.88rem;
	color: var(--steel);
	line-height: 1.4;
}

.home-services__item-cta {
	margin-top: 0.3rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--navy);
	justify-self: start;
	border-bottom: 2px solid var(--amber);
	padding-bottom: 0.05rem;
}

.home-services__item-cta::after {
	content: " →";
	color: var(--amber);
	transition: margin 0.2s var(--ease);
}

.home-services__item:hover .home-services__item-cta {
	color: var(--navy-deep);
}

.home-services__item:hover .home-services__item-cta::after {
	margin-left: 0.15rem;
}

.service-rail__body .info-list {
	margin-bottom: 1rem;
}

.energy-item {
	align-items: start;
	gap: 1.5rem;
	padding: 1.5rem 0;
}

.energy-item__body h2 {
	margin-bottom: 0.5rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 1.75rem 0;
}

.values-grid article {
	padding: var(--box-pad);
}

.values-grid h3 {
	font-size: 1.05rem;
	color: var(--navy-deep);
}

.values-grid p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--steel);
}

/* —— Over ons page —— */
.about-hero {
	position: relative;
	min-height: clamp(420px, 60vh, 540px);
	display: grid;
	align-items: end;
	overflow: hidden;
	color: var(--white);
}

.about-hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(108deg, rgba(0, 28, 84, 0.94) 0%, rgba(0, 48, 140, 0.7) 50%, rgba(8, 12, 22, 0.48) 100%),
		var(--about-hero-image) center / cover no-repeat;
	transform: scale(1.04);
	animation: servicesHeroZoom 12s var(--ease) both;
}

.about-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wide);
	width: 100%;
	margin: 0 auto;
	padding: clamp(8.5rem, 16vh, 10rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 3.5rem);
	animation: rise 0.9s var(--ease) both;
}

.about-hero .eyebrow {
	color: var(--amber);
}

.about-hero h1 {
	font-size: clamp(2.1rem, 5vw, 3.5rem);
	max-width: 12ch;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.about-hero__lead {
	max-width: 40ch;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1.5rem;
}

.about-hero__jump {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.about-hero__jump a {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	color: var(--white);
	padding: 0.55rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(6px);
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.about-hero__jump a:hover {
	background: var(--amber);
	border-color: var(--amber);
	color: var(--navy-deep);
}

.about-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: var(--wide);
	margin: -2.25rem auto 0;
	padding: 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: calc(100% - 2 * clamp(1rem, 4vw, 2rem));
}

.about-pillars__item {
	padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.15rem, 2.5vw, 1.65rem);
	border-right: 1px solid var(--line);
}

.about-pillars__item:last-child {
	border-right: 0;
}

.about-pillars__item--accent {
	background: linear-gradient(165deg, rgba(0, 48, 140, 0.04), rgba(241, 161, 42, 0.08));
}

.about-pillars__label {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 0.45rem;
}

.about-pillars__item strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--navy-deep);
	margin-bottom: 0.45rem;
}

.about-pillars__item p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--steel);
	line-height: 1.5;
}

.about-story {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.about-story__media {
	margin: 0;
	overflow: hidden;
}

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

.about-story__body .eyebrow {
	margin-bottom: 0.5rem;
}

.about-story__body h2 {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	color: var(--navy-deep);
	margin-bottom: 1rem;
}

.about-story__body p {
	color: var(--steel);
	font-size: 1.05rem;
	margin: 0 0 0.9rem;
}

.about-story__body .text-link {
	margin-top: 0.5rem;
	display: inline-flex;
}

.about-values {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(3rem, 7vw, 4.75rem) clamp(1rem, 4vw, 2rem);
	background:
		radial-gradient(640px 240px at 8% 0%, rgba(0, 48, 140, 0.08), transparent 55%),
		linear-gradient(180deg, rgba(0, 48, 140, 0.04), transparent 70%),
		var(--paper);
	border-top: 1px solid rgba(0, 48, 140, 0.1);
	border-bottom: 1px solid rgba(0, 48, 140, 0.1);
}

.about-values__head {
	max-width: var(--wide);
	margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
}

.about-values__head .eyebrow {
	color: var(--navy);
}

.about-values__head h2 {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	color: var(--navy-deep);
	margin-bottom: 0.5rem;
}

.about-values__head p {
	margin: 0;
	color: var(--steel);
	font-size: 1.05rem;
	max-width: 36rem;
}

.about-values__list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: var(--wide);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.about-values__list li {
	display: grid;
	gap: 1rem;
	align-content: start;
	padding: clamp(1.25rem, 2.8vw, 1.65rem);
	background: #fff;
	border: 1px solid rgba(0, 48, 140, 0.14);
	border-top: 3px solid var(--navy);
	box-shadow: 0 12px 32px rgba(0, 31, 92, 0.07);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.about-values__list li:nth-child(2) {
	border-top-color: var(--amber);
}

.about-values__list li:nth-child(3) {
	border-top-color: var(--navy-deep);
}

.about-values__list li:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0, 31, 92, 0.12);
	border-color: rgba(0, 48, 140, 0.22);
}

.about-values__icon {
	display: inline-grid;
	place-items: center;
	width: 3.1rem;
	height: 3.1rem;
	color: #fff;
	background: var(--navy);
	line-height: 1;
}

.about-values__icon svg {
	display: block;
}

.about-values__list li:nth-child(2) .about-values__icon {
	background: var(--amber);
	color: var(--navy-deep);
}

.about-values__list li:nth-child(3) .about-values__icon {
	background: var(--navy-deep);
	color: #fff;
}

.about-values__body {
	display: grid;
	gap: 0.45rem;
}

.about-values__list h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--navy-deep);
}

.about-values__list p {
	margin: 0;
	color: var(--steel);
	font-size: 0.96rem;
	line-height: 1.55;
}

.about-process {
	background:
		radial-gradient(700px 320px at 90% 10%, rgba(241, 161, 42, 0.14), transparent 55%),
		linear-gradient(160deg, #0c1630 0%, #001f5c 45%, #00308c 100%);
	color: var(--white);
	padding: clamp(3rem, 7vw, 4.75rem) 0;
}

.about-process__inner {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
}

.about-process__head {
	max-width: 36rem;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-process__head h2 {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	color: var(--white);
	margin-bottom: 0.5rem;
}

.about-process__head p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
}

.about-process__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.85rem;
	counter-reset: none;
}

.about-process__steps li {
	display: grid;
	gap: 1rem;
	align-content: start;
	padding: clamp(1.15rem, 2.5vw, 1.45rem);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-top: 3px solid var(--amber);
	box-shadow: 0 12px 32px rgba(0, 8, 30, 0.18);
	transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.about-process__steps li:nth-child(even) {
	border-top-color: rgba(255, 255, 255, 0.55);
}

.about-process__steps li:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(241, 161, 42, 0.45);
}

.about-process__step-num {
	display: inline-grid;
	place-items: center;
	width: 2.4rem;
	height: 2.4rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: var(--navy-deep);
	background: var(--amber);
	line-height: 1;
}

.about-process__steps li:nth-child(even) .about-process__step-num {
	background: #fff;
	color: var(--navy-deep);
}

.about-process__step-body {
	display: grid;
	gap: 0.45rem;
}

.about-process__steps strong {
	font-family: var(--font-display);
	font-size: 1.08rem;
	color: var(--white);
	line-height: 1.25;
}

.about-process__step-body span {
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
}

.about-contact {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	max-width: var(--wide);
	margin: 0 auto;
	padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 4vw, 3rem);
}

.about-contact__media {
	margin: 0;
	overflow: hidden;
}

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

.about-contact__body h2 {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	color: var(--navy-deep);
	margin-bottom: 0.75rem;
}

.about-contact__body > p {
	color: var(--steel);
	font-size: 1.05rem;
	margin: 0 0 1.35rem;
}

.about-contact__meta {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.about-contact__meta li {
	display: grid;
	grid-template-columns: 6.5rem 1fr;
	gap: 0.5rem;
	align-items: baseline;
	font-size: 0.98rem;
}

.about-contact__meta strong {
	font-family: var(--font-display);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amber);
}

.about-contact__meta a {
	color: var(--navy);
	text-decoration: none;
	font-weight: 600;
}

.about-contact__meta a:hover {
	color: var(--amber);
}

.about-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.about-close {
	max-width: var(--wide);
	margin: 0 auto clamp(3.5rem, 8vw, 5.5rem);
	padding: clamp(1.5rem, 3vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
	width: calc(100% - 2 * clamp(1rem, 4vw, 2rem));
}

.about-close .eyebrow {
	margin-bottom: 0.35rem;
}

.about-close h2 {
	margin: 0 0 0.4rem;
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	color: var(--navy-deep);
}

.about-close p {
	margin: 0;
	color: var(--steel);
	max-width: 42ch;
}

.project-archive-intro {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	align-items: end;
}

.project-meta-list {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.project-meta-list li {
	display: grid;
	grid-template-columns: 7rem 1fr;
	gap: 0.5rem;
	font-size: 0.95rem;
}

.project-meta-list strong {
	font-family: var(--font-display);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amber);
	padding-top: 0.2rem;
}

.content-block figure img,
.content-split > figure img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Legal prose */
.legal-content {
	max-width: 46rem;
	color: var(--ink, #1a1a1a);
	line-height: 1.65;
}

.legal-content h2 {
	margin-top: 2.25rem;
	margin-bottom: 0.75rem;
	color: var(--navy);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.legal-content h3 {
	margin-top: 1.35rem;
	margin-bottom: 0.5rem;
	color: var(--navy-deep);
	font-size: 1.05rem;
}

.legal-content ul {
	padding-left: 1.15rem;
	margin: 0.5rem 0 1rem;
}

.legal-content li + li {
	margin-top: 0.35rem;
}

.legal-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0 1.5rem;
	font-size: 0.92rem;
}

.legal-content th,
.legal-content td {
	border: 1px solid var(--line);
	padding: 0.65rem 0.75rem;
	text-align: left;
	vertical-align: top;
}

.legal-content th {
	background: rgba(0, 48, 140, 0.06);
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--navy-deep);
}

.legal-content code {
	font-size: 0.88em;
	padding: 0.1em 0.35em;
	background: rgba(0, 48, 140, 0.06);
	border: 1px solid rgba(0, 48, 140, 0.1);
}

.legal-content em {
	color: var(--steel);
}

/* Laptop / short screens — prevent squashed layouts */
@media (max-width: 1280px) {
	:root {
		--wide: 1100px;
	}

	.site-nav {
		gap: 1rem;
	}

	.menu--primary > li > a {
		padding: 0.5rem 0.55rem;
		font-size: 0.88rem;
	}

	.site-logo img,
	.custom-logo {
		width: min(168px, 40vw);
	}

	.home-wizard-cta__inner,
	.site-footer__cta-inner {
		gap: 1.25rem;
	}
}

@media (max-width: 1200px) {
	.home-intro {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.home-intro__aside {
		position: static;
		top: auto;
		max-width: 42rem;
	}

	.home-wizard-cta__inner {
		grid-template-columns: 1fr;
	}

	.mega-panel__inner {
		grid-template-columns: 1fr;
	}

	.mega-panel__cols {
		grid-template-columns: 1fr 1fr;
	}

	.about-process__steps,
	.services-block--process .process-steps,
	.process-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem;
	}
}

@media (max-height: 820px) {
	.hero {
		min-height: auto;
		min-height: 100svh;
	}

	.hero__content {
		padding-top: clamp(6.5rem, 14vh, 8.5rem);
		padding-bottom: clamp(2.5rem, 6vh, 4rem);
	}

	.hero__brand {
		font-size: clamp(1.35rem, 3.2vw, 2.1rem);
	}

	.hero__title {
		font-size: clamp(1.45rem, 3.4vw, 2.35rem);
	}

	.hero__lead {
		font-size: 1.05rem;
		margin-bottom: 1.25rem;
	}

	.page-hero,
	.services-hero,
	.about-hero,
	.projects-hero,
	.contact-hero,
	.service-hero {
		min-height: 0;
	}
}

img,
video {
	max-width: 100%;
	height: auto;
}

.home-services__item-media img,
.service-card img,
.project-tile__media img,
.services-feature__media img,
.service-rail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-services__item,
.service-card,
.project-tile,
.home-intro__aside,
.bauvora-box {
	min-width: 0;
}

/* Responsive */

@media (max-width: 1100px) {
	.site-header__meta-item--loc .site-header__meta-value--address,
	.site-header__meta-sep--loc {
		display: none;
	}

	.site-header__meta-item--loc .site-header__meta-label {
		color: rgba(255, 255, 255, 0.78);
		letter-spacing: 0.08em;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.service-switcher__inner {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 0.75rem;
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.service-switcher__item {
		padding: 0.85rem 0.4rem 0.75rem;
		font-size: 0.74rem;
	}
}

@media (max-width: 1024px) {
	.service-rail__item,
	.service-rail__item--reverse,
	.energy-panel,
	.content-split,
	.contact-layout,
	.energy-item {
		grid-template-columns: 1fr;
	}

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

	.contact-hero__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.bauvora-form__footer .btn {
		width: 100%;
		justify-self: stretch;
		justify-content: center;
	}

	.service-rail__item--reverse .service-rail__media {
		order: 0;
	}

	.services-feature,
	.services-feature--reverse {
		grid-template-columns: 1fr;
		border-left: 3px solid var(--amber);
		border-right: 1px solid rgba(0, 48, 140, 0.1);
		gap: 1rem;
		padding: 0.85rem;
	}

	.services-feature--reverse .services-feature__media {
		order: 0;
	}

	.services-feature__body,
	.services-feature--reverse .services-feature__body {
		padding: 0.35rem 0.4rem 0.55rem;
	}

	.services-feature__media img {
		min-height: 12rem;
	}

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

	.project-highlights,
	.project-grid,
	.service-cards,
	.service-cards--energy {
		grid-template-columns: 1fr 1fr;
	}

	.projects-mosaic .project-tile,
	.projects-mosaic .project-tile--featured {
		grid-column: span 6;
		min-height: 280px;
	}

	.projects-mosaic .project-tile--featured {
		grid-column: span 12;
		min-height: 340px;
	}

	.projects-mosaic .project-tile--featured .project-tile__media img {
		min-height: 340px;
	}

	.projects-toolbar,
	.projects-close,
	.about-close,
	.services-close,
	.section__head--row,
	.site-footer__cta-inner,
	.cta-band__actions,
	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-wizard-cta__inner {
		grid-template-columns: 1fr;
	}

	.home-wizard-cta__steps {
		grid-template-columns: 1fr;
	}

	.home-services__cols {
		gap: 1.35rem;
	}

	.home-services__col-head {
		align-items: start;
	}

	.home-services__col-head .btn {
		width: 100%;
		justify-content: center;
	}

	.home-services__list,
	.home-services__col--energy .home-services__list {
		grid-template-columns: 1fr 1fr;
	}

	.home-wizard-cta__action-title {
		max-width: none;
	}

	.hero__actions .btn,
	.cta-band__actions .btn,
	.projects-close .btn,
	.about-close .btn,
	.services-close .btn,
	.site-footer__cta-actions .btn,
	.home-wizard-cta .btn {
		width: 100%;
		max-width: 22rem;
		justify-content: center;
		text-align: center;
	}

	.about-pillars {
		grid-template-columns: 1fr;
		margin-top: -1.5rem;
	}

	.about-pillars__item {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.about-pillars__item:last-child {
		border-bottom: 0;
	}

	.about-story,
	.about-contact {
		grid-template-columns: 1fr;
	}

	.about-values__list {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.about-values__list li {
		padding: 1.15rem 1.1rem;
	}

	.about-process__steps {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.home-intro,
	.detail-grid,
	.process-steps,
	.values-grid,
	.project-archive-intro {
		grid-template-columns: 1fr;
	}

	.services-block--process .process-steps {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.service-intro,
	.service-facts {
		grid-template-columns: 1fr;
	}

	.service-hero__inner {
		grid-template-columns: 1fr;
	}

	.service-hero__index {
		display: none;
	}

	.service-close {
		flex-direction: column;
		align-items: flex-start;
	}

	.service-close__actions {
		width: 100%;
	}

	.service-close__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.home-intro__aside {
		position: static;
		top: auto;
	}

	.home-intro__copy h2 {
		max-width: none;
	}

	.site-nav__actions {
		gap: 0.55rem;
	}

	.header-cta {
		padding-left: 0.85rem;
		padding-right: 0.85rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 1024px) {
	/* Tablet + laptop: compact chrome */
	.site-header__tagline {
		display: none;
	}

	.site-header__top-inner {
		justify-content: space-between;
		gap: 0.45rem;
		flex-wrap: nowrap;
		padding-top: 0.4rem;
		padding-bottom: 0.4rem;
	}

	.site-header__meta {
		justify-content: flex-start;
		flex: 1 1 auto;
		min-width: 0;
		flex-wrap: nowrap;
		gap: 0.35rem;
		overflow: visible;
	}

	.site-header__meta-sep {
		display: none;
	}

	.site-header__meta-link {
		gap: 0.3rem;
		align-items: center;
		padding: 0;
		border: 0;
		background: transparent;
	}

	.site-header__meta-link:hover {
		border: 0;
		background: transparent;
		color: var(--amber);
	}

	.site-header__meta-value {
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 34vw;
		display: inline-block;
		vertical-align: bottom;
		white-space: nowrap;
		font-size: 0.78rem;
		font-weight: 600;
	}

	.site-header__meta-item--mail .site-header__meta-value {
		display: none;
	}

	.site-header__top-actions {
		gap: 0.4rem;
		margin-left: auto;
	}

	.site-header__quote {
		font-size: 0.65rem;
		letter-spacing: 0.04em;
		padding: 0.32rem 0.55rem;
	}

	.site-logo img {
		width: min(140px, 38vw);
	}

	.site-header__tools {
		display: inline-flex;
	}

	a.btn.header-cta--bar {
		display: inline-flex;
		align-items: center;
		padding: 0.55rem 0.85rem;
		font-size: 0.78rem;
		white-space: nowrap;
	}

	.header-quick-contact {
		display: inline-flex;
	}

	.header-quick-contact .header-icon-btn {
		width: 2.55rem;
		height: 2.55rem;
		background: #fff;
		border: 1px solid rgba(0, 48, 140, 0.18);
		color: var(--navy);
		box-shadow: 0 1px 2px rgba(0, 20, 60, 0.06);
	}

	.header-quick-contact .header-icon-btn--call {
		background: var(--amber);
		border-color: var(--amber);
		color: var(--navy-deep);
	}

	.header-quick-contact .header-icon-btn--call:hover,
	.header-quick-contact .header-icon-btn--call:focus-visible {
		background: var(--amber-hot);
		border-color: var(--amber-hot);
		color: var(--white);
	}

	.header-quick-contact .header-icon-btn--mail:hover,
	.header-quick-contact .header-icon-btn--mail:focus-visible {
		background: var(--amber);
		border-color: var(--amber);
		color: var(--navy-deep);
	}

	.nav-toggle {
		display: grid;
		place-items: center;
		z-index: 5;
		flex: 0 0 auto;
	}

	.service-switcher {
		top: 6.5rem;
	}

	body:has(.site-header.is-scrolled) .service-switcher {
		top: 4.35rem;
	}

	.service-switcher__inner {
		padding: 0.55rem clamp(0.75rem, 2.5vw, 1.1rem);
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	.service-switcher__all {
		justify-self: start;
		font-size: 0.76rem;
		padding: 0.25rem 0;
	}

	.service-switcher__track {
		flex-direction: column;
		gap: 0.35rem;
	}

	.service-switcher__group,
	.service-switcher__group--energy {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding-left: 0;
		border-left: 0;
		gap: 0.25rem;
	}

	.service-switcher__group--energy {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-top: 0.35rem;
		border-top: 2px solid var(--amber);
	}

	.service-switcher__item {
		justify-content: flex-start;
		padding: 0.65rem 0.55rem;
		font-size: 0.78rem;
		white-space: normal;
		border-bottom: 0;
		background: rgba(0, 48, 140, 0.035);
	}

	.service-switcher__item.is-current {
		background: rgba(0, 48, 140, 0.08);
		box-shadow: inset 0 -2px 0 var(--amber);
	}

	.nav-backdrop {
		display: block;
	}

	/* Full-height mobile sheet */
	.site-nav {
		position: fixed;
		inset: 0;
		width: 100%;
		max-width: none;
		height: 100dvh;
		padding: 0;
		background: transparent;
		transform: translateX(100%);
		transition: transform 0.35s var(--ease), visibility 0.35s;
		box-shadow: none;
		gap: 0;
		z-index: 4;
		overflow: hidden;
		display: block;
		pointer-events: none;
		visibility: hidden;
	}

	.site-nav.is-open {
		transform: none;
		pointer-events: auto;
		visibility: visible;
	}

	.site-nav__panel {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(100%, 22.5rem);
		max-width: 100%;
		background: #fff;
		box-shadow: -16px 0 40px rgba(0, 20, 60, 0.18);
		pointer-events: auto;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.site-nav__toolbar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		flex: 0 0 auto;
		min-height: 3.5rem;
		padding: max(0.65rem, env(safe-area-inset-top)) 0.85rem 0.65rem 1rem;
		border-bottom: 1px solid var(--line);
		background: #fff;
		position: sticky;
		top: 0;
		z-index: 2;
	}

	.site-logo--nav {
		display: inline-flex;
		align-items: center;
		min-width: 0;
		flex: 1 1 auto;
	}

	.site-logo--nav img {
		width: min(148px, 48vw);
		height: auto;
		display: block;
	}

	.site-nav__toolbar-title {
		display: none;
	}

	.site-nav__close {
		display: grid;
		place-items: center;
		flex: 0 0 auto;
		width: 2.55rem;
		height: 2.55rem;
		padding: 0;
		border: 1px solid rgba(0, 48, 140, 0.16);
		background: rgba(0, 48, 140, 0.04);
		color: var(--navy-deep);
		cursor: pointer;
	}

	.site-nav__close svg {
		display: block;
	}

	.site-nav__close:hover,
	.site-nav__close:focus-visible {
		background: var(--navy);
		border-color: var(--navy);
		color: #fff;
		outline: none;
	}

	body.is-nav-open .site-header__tools,
	body.is-nav-open .nav-toggle,
	body.is-nav-open .header-quick-contact {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	body.is-nav-open .site-nav {
		z-index: 20;
	}

	.site-nav__scroll {
		display: block;
		flex: 0 0 auto;
		overflow: visible;
		padding: 0.35rem 0 0.5rem;
	}

	.menu--primary {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		padding: 0 0.75rem;
	}

	.menu--primary > li {
		width: 100%;
		display: block;
		border-bottom: 1px solid rgba(0, 48, 140, 0.08);
	}

	.menu--primary > li > a {
		color: var(--navy-deep) !important;
		font-size: 1.2rem;
		font-weight: 700;
		padding: 1rem 0.65rem !important;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 3.25rem;
	}

	.menu--primary > li > a::after {
		display: none !important;
	}

	.menu--primary > .current-menu-item > a {
		color: var(--navy) !important;
	}

	.menu--primary > .current-menu-item:not(.menu-item--mega) > a {
		box-shadow: inset 3px 0 0 var(--amber);
	}

	.menu-item--mega {
		position: relative;
		display: block;
		border-top: 0;
		border-bottom: 1px solid rgba(0, 48, 140, 0.08);
		margin: 0;
		padding: 0;
	}

	.menu-item--mega.is-open::after {
		display: none;
	}

	.menu-item--mega > .menu-item__trigger {
		display: flex !important;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		padding: 1rem 0.65rem !important;
		font-size: 1.2rem;
		font-weight: 700;
		min-height: 3.25rem;
	}

	.menu-item--mega > .menu-item__trigger::after {
		display: none !important;
	}

	.menu-item--mega.is-open > .menu-item__trigger {
		color: var(--navy) !important;
		background: rgba(0, 48, 140, 0.04);
	}

	.menu-item--mega .menu-item__chevron {
		width: 0.55rem;
		height: 0.55rem;
		flex: 0 0 auto;
		margin-left: 0.5rem;
		border-width: 2px;
		opacity: 0.65;
		transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
	}

	.menu-item--mega.is-open > .menu-item__trigger .menu-item__chevron {
		transform: rotate(225deg) translateY(-1px);
		opacity: 1;
		border-color: var(--amber);
	}

	.mega-panel {
		position: static !important;
		left: auto;
		right: auto;
		top: auto;
		width: 100%;
		padding: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s var(--ease);
		z-index: auto;
	}

	.menu-item--mega.is-open > .mega-panel {
		max-height: 80vh;
		overflow-y: auto;
	}

	.mega-panel__inner {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0;
		border: 0;
		border-top: 0;
		box-shadow: none;
		background: rgba(0, 48, 140, 0.03);
		overflow: visible;
		max-width: none;
		border-radius: 0;
	}

	.mega-panel__intro {
		padding: 0.75rem 1.15rem 0.55rem;
		background: transparent;
		color: var(--navy-deep);
		gap: 0.25rem;
		border-bottom: 0;
	}

	.mega-panel__eyebrow {
		display: none;
	}

	.mega-panel__lead {
		display: none;
	}

	.mega-panel__intro .text-link {
		color: var(--navy);
		font-size: 0.92rem;
		font-weight: 700;
		margin: 0;
		border-bottom-color: var(--amber);
	}

	.mega-panel__cols {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.mega-col {
		border-left: 0 !important;
		padding: 0.35rem 0.65rem 0.65rem;
		background: transparent !important;
		width: 100%;
	}

	.mega-col + .mega-col {
		border-top: 1px solid rgba(0, 48, 140, 0.08);
		padding-top: 0.65rem;
	}

	.mega-col__title {
		margin: 0 0 0.25rem 0.5rem;
		padding: 0;
		border-bottom: 0;
		background: transparent;
		color: var(--steel);
		display: block;
		letter-spacing: 0.12em;
		font-size: 0.68rem;
	}

	.mega-col--energy .mega-col__title {
		background: transparent;
		color: #8a5a08;
	}

	.mega-list {
		gap: 0;
		width: 100%;
	}

	.mega-list li + li {
		border-top: 0;
	}

	.mega-list a {
		display: grid;
		grid-template-columns: 2rem minmax(0, 1fr) auto;
		align-items: center;
		padding: 0.7rem 0.5rem;
		min-height: 2.85rem;
		border-left: 0;
		gap: 0.45rem;
		width: 100%;
		border-radius: 0;
	}

	.mega-list a::after {
		content: "→";
		font-family: var(--font-display);
		font-weight: 700;
		color: var(--amber);
		opacity: 0.9;
	}

	.mega-list a:hover,
	.mega-list a:active {
		background: rgba(0, 48, 140, 0.06);
		border-left-color: transparent;
	}

	.mega-list__body {
		min-width: 0;
	}

	.mega-list__body strong {
		display: block;
		font-size: 0.98rem;
		line-height: 1.25;
	}

	.mega-list__body em {
		display: none;
	}

	.site-nav__actions {
		flex: 0 0 auto;
		flex-direction: column;
		align-items: stretch;
		border-left: 0;
		margin-top: 0.35rem;
		padding: 0.85rem 1rem max(1.1rem, env(safe-area-inset-bottom));
		border-top: 1px solid rgba(0, 48, 140, 0.1);
		background: linear-gradient(180deg, #f7f8fb 0%, #fff 40%);
		gap: 0.65rem;
		box-shadow: none;
	}

	.site-nav__actions .header-contact-btns {
		display: none;
	}

	.site-nav__contact-rows {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.45rem;
	}

	.site-nav__action {
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 0.7rem;
		padding: 0.75rem 0.8rem;
		text-decoration: none;
		background: #fff;
		border: 1px solid rgba(0, 48, 140, 0.12);
		border-left: 3px solid var(--amber);
		color: var(--navy-deep);
		min-width: 0;
		transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
	}

	.site-nav__action:hover,
	.site-nav__action:focus-visible {
		background: rgba(0, 48, 140, 0.04);
		border-color: rgba(0, 48, 140, 0.22);
		outline: none;
	}

	.site-nav__action-icon {
		display: grid;
		place-items: center;
		width: 2rem;
		height: 2rem;
		flex: 0 0 auto;
		background: rgba(241, 161, 42, 0.16);
		color: var(--navy-deep);
	}

	.site-nav__action--call .site-nav__action-icon {
		background: var(--amber);
		color: var(--navy-deep);
	}

	.site-nav__action-text {
		display: grid;
		gap: 0.12rem;
		min-width: 0;
	}

	.site-nav__action-label {
		font-family: var(--font-display);
		font-weight: 800;
		font-size: 0.65rem;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--amber);
		line-height: 1;
	}

	.site-nav__action-value {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: 0.9rem;
		line-height: 1.25;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: var(--navy-deep);
	}

	.header-cta {
		width: 100%;
		max-width: none;
		justify-content: center;
		padding-top: 1rem;
		padding-bottom: 1rem;
		font-size: 0.98rem;
	}

	.site-header__top {
		font-size: 0.75rem;
	}

	body.is-nav-open .site-header__top {
		display: none;
	}

	.bauvora-form__row,
	.project-highlights,
	.project-grid,
	.service-cards,
	.service-cards--energy,
	.services-energy__grid,
	.home-services__cols,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.projects-mosaic .project-tile,
	.projects-mosaic .project-tile--featured {
		grid-column: span 12;
		min-height: 240px;
	}

	.projects-mosaic .project-tile--featured .project-tile__media img,
	.projects-mosaic .project-tile:not(.project-tile--featured) .project-tile__media img {
		min-height: 240px;
	}

	.projects-hero h1,
	.services-hero h1,
	.about-hero h1,
	.page-hero h1 {
		max-width: none;
	}

	.project-tile__cta {
		opacity: 1;
		transform: none;
	}

	.hero {
		min-height: 100svh;
	}

	.hero__content {
		align-self: end;
		padding-top: clamp(7rem, 18vh, 9rem);
		padding-bottom: clamp(3.5rem, 10vh, 5rem);
	}

	.hero__lead {
		font-size: 1.05rem;
		max-width: 34ch;
	}

	.about-process__steps {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.about-contact__meta li,
	.project-meta-list li {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.site-footer__bar-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.75rem;
	}

	.site-footer__legal {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 0.35rem 0.85rem;
		max-width: 22rem;
	}

	.site-footer__legal .menu--legal {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 0.35rem 0.85rem;
	}

	.site-footer__legal .menu--legal a,
	.site-footer__legal .link-button {
		font-size: 0.78rem;
		white-space: nowrap;
	}

	.site-footer__cta-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1.25rem;
	}

	.site-footer__cta-title {
		max-width: 18ch;
		margin-inline: auto;
	}

	.site-footer__cta-actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		max-width: 22rem;
		margin-inline: auto;
	}

	.site-footer__grid {
		justify-items: center;
		text-align: center;
		gap: 2.25rem;
	}

	.site-footer__brand,
	.site-footer__col {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 22rem;
	}

	.site-footer__lead {
		max-width: none;
		width: 100%;
		margin-inline: 0;
		text-align: center;
		text-wrap: balance;
		line-height: 1.45;
	}

	.site-footer h3 {
		margin-inline: auto;
	}

	.site-footer .menu {
		align-items: center;
	}

	.footer-contact {
		justify-items: center;
		width: 100%;
	}

	.site-logo--footer {
		margin-inline: auto;
	}

	.site-logo--footer img {
		width: min(220px, 68vw);
	}

	.site-footer {
		padding-bottom: 5.5rem; /* room for floating call button */
	}

	.cta-band {
		margin-left: 0.75rem;
		margin-right: 0.75rem;
	}

	.page-toc {
		gap: 0.4rem;
	}

	.page-toc a {
		font-size: 0.8rem;
		padding: 0.4rem 0.7rem;
	}

	.contact-form-wrap {
		padding: 1.1rem;
	}

	.contact-details {
		padding: 1.1rem;
	}

	.contact-form-wrap .bauvora-form {
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.bauvora-form__row {
		grid-template-columns: 1fr;
	}

	.bauvora-cookie-banner {
		inset: auto 0.75rem calc(0.75rem + env(safe-area-inset-bottom));
		max-width: none;
		left: 0.75rem;
		right: 0.75rem;
	}

	.bauvora-cookie-modal__panel {
		max-width: calc(100vw - 1.5rem);
		margin: 1rem;
	}

	.map-embed {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 640px) {
	:root {
		--crepi-size: 280px;
	}

	.header-cta--bar .header-cta__full {
		display: none;
	}

	.header-cta--bar .header-cta__short {
		display: inline;
	}

	.header-cta--bar {
		padding: 0.5rem 0.65rem;
		font-size: 0.72rem;
	}

	.home-services__list,
	.home-services__col--energy .home-services__list {
		grid-template-columns: 1fr;
	}

	.home-services__item-body em {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.home-intro__aside-groups {
		grid-template-columns: 1fr;
	}

	.home-intro__aside-group + .home-intro__aside-group {
		border-left: 0;
		border-top: 1px solid rgba(0, 48, 140, 0.1);
	}

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

	.site-header__meta-sep {
		opacity: 0.7;
	}

	.site-header__meta-item--loc {
		display: none;
	}

	.hero__actions .btn,
	.cta-band__actions .btn,
	.projects-close .btn,
	.about-close .btn,
	.services-close .btn,
	.site-footer__cta-actions .btn,
	.about-contact__actions .btn,
	.projects-empty__actions .btn {
		max-width: none;
		width: 100%;
	}

	.about-contact__actions,
	.projects-empty__actions,
	.hero__actions,
	.cta-band__actions {
		width: 100%;
	}

	.services-hero__jump,
	.about-hero__jump,
	.projects-filters {
		width: 100%;
	}

	.services-hero__jump a,
	.about-hero__jump a,
	.projects-filters__chip {
		flex: 1 1 auto;
		text-align: center;
		justify-content: center;
	}

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

	.section__head h2,
	.services-block__head h2,
	.about-story__body h2,
	.about-values__head h2 {
		font-size: clamp(1.45rem, 7vw, 1.9rem);
	}
}

@media (max-width: 480px) {
	body {
		font-size: 1rem;
	}

	.site-header__inner {
		padding-top: 0.7rem;
		padding-bottom: 0.7rem;
	}

	.site-header__top {
		font-size: 0.78rem;
	}

	.site-header__meta-item--phone .site-header__meta-value {
		max-width: 28vw;
	}

	.site-header__quote {
		font-size: 0.62rem;
		padding: 0.3rem 0.45rem;
	}

	.site-header__quote-full {
		display: none;
	}

	.site-header__quote-short {
		display: inline;
	}

	.site-header__meta-label {
		font-size: 0.66rem;
	}

	.service-switcher {
		top: 6.25rem;
	}

	body:has(.site-header.is-scrolled) .service-switcher {
		top: 4.1rem;
	}

	.service-switcher__group {
		grid-template-columns: 1fr;
	}

	.service-switcher__group--energy {
		grid-template-columns: 1fr 1fr;
	}

	.service-switcher__item {
		font-size: 0.76rem;
		padding: 0.6rem 0.55rem;
	}

	.hero__brand {
		font-size: clamp(1.45rem, 8vw, 1.9rem);
	}

	.hero__title {
		font-size: clamp(1.45rem, 7.5vw, 1.85rem);
	}

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

	.about-close,
	.projects-close,
	.services-close {
		width: calc(100% - 1.5rem);
		margin-left: 0.75rem;
		margin-right: 0.75rem;
	}

	.services-block__process .services-close {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media (min-width: 1025px) {
	.nav-backdrop {
		display: none !important;
	}

	.header-contact-btns {
		display: inline-flex;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
