:root {
	--ink: #0b1018;
	--ink-soft: #111923;
	--panel: #151e2a;
	--panel-2: #1b2634;
	--line: rgba(255, 255, 255, 0.1);
	--muted: #9ba5b3;
	--white: #f8fafc;
	--accent: #ef3b24;
	--accent-2: #ffb548;
	--navy: #1b2940;
	--container: 1220px;
	--header-height: 126px;
	--radius: 8px;
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
	margin: 0;
	overflow-x: hidden;
	overflow-x: clip;
	background: var(--ink);
	color: var(--muted);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
	color: var(--white);
	font-family: "Manrope", Arial, sans-serif;
	line-height: 1.13;
}

h1 {
	margin-bottom: 26px;
	font-size: clamp(3.1rem, 5.2vw, 5rem);
	font-weight: 700;
	letter-spacing: -0.055em;
}

h2 {
	margin-bottom: 22px;
	font-size: clamp(2.2rem, 3.6vw, 3.55rem);
	font-weight: 650;
	letter-spacing: -0.045em;
}

h3 {
	font-size: 1.25rem;
	letter-spacing: -0.025em;
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.section {
	padding: 120px 0;
}

.skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	border-radius: 4px;
	background: var(--white);
	color: var(--ink);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: none;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--accent-2);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.section-heading {
	max-width: 760px;
}

.section-heading > p:last-child {
	max-width: 680px;
	margin-bottom: 0;
	font-size: 1.04rem;
}

.section-heading--center {
	margin: 0 auto 56px;
	text-align: center;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
	gap: 60px;
	align-items: end;
	max-width: none;
	margin-bottom: 54px;
}

.section-heading--split h2,
.section-heading--split p {
	margin-bottom: 0;
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	min-height: 58px;
	padding: 0 24px;
	overflow: hidden;
	border: 1px solid var(--accent-2);
	border-radius: 6px;
	background: var(--accent-2);
	color: var(--ink);
	font-weight: 700;
	transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.button::before {
	position: absolute;
	inset: 0;
	background: var(--accent);
	content: "";
	transform: translateY(105%);
	transition: transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.button span,
.button i {
	position: relative;
	z-index: 1;
	font-style: normal;
}

.button:hover,
.button:focus-visible {
	border-color: var(--accent);
	color: #fff;
	transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
	transform: none;
}

.button--dark {
	border-color: var(--line);
	background: rgba(9, 13, 19, 0.78);
	color: #fff;
	backdrop-filter: blur(10px);
}

.button--dark::before {
	background: #fff;
}

.button--dark:hover,
.button--dark:focus-visible {
	border-color: #fff;
	color: var(--ink);
}

.button--compact {
	min-height: 52px;
	padding-inline: 20px;
}

.site-header {
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	color: #d8dde5;
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}

.site-header.is-fixed {
	position: fixed;
	background: rgba(9, 13, 19, 0.94);
	box-shadow: 0 14px 50px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(18px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-fixed .topbar {
	display: none;
}

.topbar {
	border-bottom: 1px solid var(--line);
	font-size: 0.77rem;
}

.topbar__inner {
	display: flex;
	min-height: 38px;
	align-items: center;
	justify-content: space-between;
}

.topbar a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.topbar a:hover {
	color: #fff;
}

.topbar svg {
	width: 15px;
	fill: currentColor;
}

.nav-shell {
	display: grid;
	grid-template-columns: 240px 1fr auto;
	min-height: 88px;
	align-items: center;
	border-bottom: 1px solid var(--line);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	justify-self: start;
	color: #fff;
}

.brand__mark {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 7px;
	background: #fff;
}

.brand__mark img {
	width: 41px;
	height: 41px;
	object-fit: contain;
}

.brand__copy {
	display: grid;
	line-height: 1.05;
}

.brand__copy strong {
	font-family: "Manrope", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.035em;
}

.brand__copy small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.site-nav a {
	padding: 11px 17px;
	border: 1px solid transparent;
	border-radius: 6px;
	color: #edf0f5;
	font-size: 0.91rem;
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
	border-color: rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.05);
	color: var(--accent-2);
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 13px;
	border: 0;
	border-radius: 6px;
	background: var(--accent-2);
}

.menu-toggle span {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
	position: relative;
	min-height: 790px;
	padding: 196px 0 78px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(6, 9, 14, 0.98) 0%, rgba(6, 9, 14, 0.9) 46%, rgba(6, 9, 14, 0.46) 100%),
		linear-gradient(0deg, var(--ink) 0%, transparent 32%),
		var(--hero-image) center/cover no-repeat;
}

.hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 140px;
	background: linear-gradient(transparent, var(--ink));
	content: "";
}

.hero__grid-lines {
	position: absolute;
	inset: 0;
	opacity: 0.17;
	background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 120px 120px;
	mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
	gap: 76px;
	align-items: center;
}

.hero__copy {
	padding-top: 24px;
}

.hero__summary {
	max-width: 630px;
	margin-bottom: 34px;
	color: #b1bac7;
	font-size: 1.08rem;
	line-height: 1.75;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero__visual {
	position: relative;
	padding: 14px 0 48px;
}

.hero__image-wrap {
	position: relative;
	height: 490px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 35%;
	transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero__visual:hover img {
	transform: scale(1.035);
}

.hero__image-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(130deg, transparent 40%, rgba(255, 181, 72, 0.24) 100%);
}

.achievement-card {
	position: absolute;
	right: -18px;
	bottom: 2px;
	display: flex;
	min-width: 290px;
	align-items: center;
	gap: 17px;
	padding: 19px 22px;
	border-left: 4px solid var(--accent-2);
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
	color: var(--ink);
}

.achievement-card__icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 181, 72, 0.16);
	color: var(--accent-2);
	font-size: 1.35rem;
}

.achievement-card svg {
	width: 28px;
	fill: var(--accent-2);
}

.achievement-card span:last-child {
	display: grid;
}

.achievement-card strong {
	font-size: 0.98rem;
}

.achievement-card small {
	color: #7b8490;
}

.hero-animate {
	animation: heroReveal 0.85s both;
}

.hero-animate:nth-child(2) {
	animation-delay: 0.1s;
}

.hero-animate:nth-child(3) {
	animation-delay: 0.2s;
}

.hero-animate:nth-child(4) {
	animation-delay: 0.3s;
}

.hero__visual.hero-animate {
	animation-delay: 0.22s;
}

@keyframes heroReveal {
	from {
		opacity: 0;
		filter: blur(14px);
		transform: translateY(42px);
	}
	to {
		opacity: 1;
		filter: none;
		transform: none;
	}
}

[data-reveal] {
	opacity: 0;
	filter: blur(12px);
	transform: translateY(54px);
	transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.credentials {
	padding-top: 96px;
}

.page-hero {
	position: relative;
	display: grid;
	min-height: 670px;
	align-items: end;
	padding: 210px 0 105px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(6, 9, 14, 0.97), rgba(6, 9, 14, 0.78) 58%, rgba(6, 9, 14, 0.5)),
		linear-gradient(0deg, var(--ink), transparent 40%),
		var(--page-hero-image) center/cover no-repeat;
}

.page-hero::before {
	position: absolute;
	inset: 0;
	opacity: 0.16;
	background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 120px 120px;
	content: "";
}

.page-hero__inner {
	position: relative;
	z-index: 2;
}

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

.page-hero__inner > p:last-child {
	max-width: 680px;
	margin-bottom: 0;
	color: #c0c7d1;
	font-size: 1.08rem;
}

.page-hero--contact {
	background-position: center 45%;
}

.home-feature {
	background: var(--ink-soft);
}

.home-feature__grid {
	display: grid;
	grid-template-columns: minmax(440px, 0.92fr) minmax(0, 0.78fr);
	gap: 86px;
	align-items: center;
}

.home-feature__image {
	position: relative;
}

.home-feature__image::after {
	position: absolute;
	right: -24px;
	bottom: -24px;
	width: 45%;
	height: 45%;
	border-right: 2px solid var(--accent-2);
	border-bottom: 2px solid var(--accent-2);
	content: "";
}

.home-feature__image img {
	width: 100%;
	height: 510px;
	border-radius: var(--radius);
	object-fit: cover;
}

.home-feature__copy p:not(.eyebrow) {
	margin-bottom: 32px;
	font-size: 1.04rem;
}

.text-link {
	display: inline-block;
	margin-top: 14px;
	color: var(--accent-2);
	font-weight: 700;
	transition: color 0.3s ease, transform 0.3s ease;
}

.text-link:hover {
	color: #fff;
	transform: translateX(4px);
}

.service-grid--preview .service-card {
	min-height: 440px;
}

.featured-project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.projects--preview {
	background: var(--ink-soft);
}

.credential-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.credential-card {
	min-height: 230px;
	padding: 32px;
	border-right: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent);
}

.credential-card:last-child {
	border-right: 0;
}

.credential-card__icon {
	display: block;
	margin-bottom: 46px;
	color: var(--accent-2);
	font-family: "Manrope", sans-serif;
	font-size: 2rem;
	font-weight: 700;
}

.credential-card h3 {
	margin-bottom: 10px;
}

.credential-card p {
	margin-bottom: 0;
	font-size: 0.9rem;
}

.principle-strip {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

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

.mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.mission-grid article {
	position: relative;
	min-height: 470px;
	padding: 54px;
}

.mission-grid article + article {
	border-left: 1px solid var(--line);
}

.mission-grid article > span {
	position: absolute;
	top: 36px;
	right: 38px;
	color: rgba(255, 255, 255, 0.08);
	font-family: "Manrope", sans-serif;
	font-size: 6rem;
	font-weight: 800;
	line-height: 1;
}

.mission-grid h2 {
	font-size: clamp(2rem, 3vw, 3.1rem);
}

.promise-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 24px;
}

.promise-row span {
	padding: 22px;
	border: 1px solid var(--line);
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
}

.promise-row span + span {
	border-left: 0;
}

.principles-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.principles-grid article {
	min-height: 330px;
	padding: 30px 25px;
	border-right: 1px solid var(--line);
}

.principles-grid article:last-child {
	border-right: 0;
}

.principles-grid span {
	display: block;
	margin-bottom: 100px;
	color: var(--accent-2);
	font-weight: 700;
}

.principles-grid h3 {
	margin-bottom: 12px;
}

.principles-grid p {
	margin: 0;
	font-size: 0.84rem;
}

.principle-strip div {
	display: grid;
	gap: 4px;
	padding: 22px 24px;
	border-right: 1px solid var(--line);
}

.principle-strip div:last-child {
	border-right: 0;
}

.principle-strip strong {
	color: #fff;
}

.principle-strip span {
	font-size: 0.75rem;
}

.about {
	background: var(--ink-soft);
}

.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
	gap: 90px;
	align-items: center;
}

.about__points {
	display: grid;
	gap: 6px;
	margin: 34px 0 38px;
}

.about__points > div {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.about__points span {
	color: var(--accent-2);
	font-size: 0.76rem;
	font-weight: 700;
}

.about__points p {
	margin: 0;
}

.about__points strong {
	display: block;
	margin-bottom: 3px;
	color: #fff;
}

.about__visual {
	position: relative;
	padding: 0 0 58px 54px;
}

.about__visual > img {
	width: 100%;
	height: 610px;
	border-radius: var(--radius);
	object-fit: cover;
	box-shadow: var(--shadow);
}

.about__visual::before {
	position: absolute;
	z-index: -1;
	inset: 48px 45px 10px 0;
	border: 1px solid rgba(255, 181, 72, 0.45);
	border-radius: var(--radius);
	content: "";
}

.about__quote {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 330px;
	padding: 25px 28px;
	border-radius: 6px;
	background: var(--accent-2);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.about__quote svg {
	width: 28px;
	margin-bottom: 8px;
	fill: var(--ink);
}

.about__quote p {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.5;
}

.services {
	overflow: hidden;
}

.service-detail {
	overflow: hidden;
}

.service-detail:nth-of-type(even) {
	background: var(--ink-soft);
}

.service-detail__grid {
	display: grid;
	grid-template-columns: minmax(440px, 0.9fr) minmax(0, 0.8fr);
	gap: 90px;
	align-items: center;
}

.service-detail--reverse .service-detail__image {
	order: 2;
}

.service-detail__image {
	position: relative;
	height: 570px;
	overflow: hidden;
	border-radius: var(--radius);
}

.service-detail__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-detail__image--portrait img {
	object-position: center 35%;
}

.service-detail__image > span {
	position: absolute;
	right: 20px;
	bottom: 12px;
	color: rgba(255, 255, 255, 0.82);
	font-family: "Manrope", sans-serif;
	font-size: 7rem;
	font-weight: 800;
	line-height: 1;
}

.service-detail__copy > p:not(.eyebrow) {
	margin-bottom: 28px;
	font-size: 1.04rem;
}

.service-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
	margin: 0 0 34px;
	padding: 0;
	list-style: none;
}

.service-list li {
	position: relative;
	padding: 13px 0 13px 24px;
	border-bottom: 1px solid var(--line);
	color: #e5e9ef;
	font-size: 0.86rem;
}

.service-list li::before {
	position: absolute;
	top: 18px;
	left: 2px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent-2);
	content: "";
}

.service-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 0 34px;
	border: 1px solid var(--line);
}

.service-metrics div {
	display: grid;
	padding: 18px;
	border-right: 1px solid var(--line);
}

.service-metrics div:last-child {
	border-right: 0;
}

.service-metrics strong {
	color: #fff;
}

.service-metrics span {
	font-size: 0.69rem;
}

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

.service-card {
	position: relative;
	min-height: 510px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--panel);
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.5s ease;
}

.service-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(4, 7, 12, 0.98) 0%, rgba(4, 7, 12, 0.55) 50%, rgba(4, 7, 12, 0.08) 100%);
	transition: background 0.4s ease;
}

.service-card__content {
	position: absolute;
	inset: auto 0 0;
	padding: 28px;
}

.service-card__content > span {
	color: var(--accent-2);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.service-card h3 {
	margin: 12px 0 10px;
	font-size: 1.35rem;
}

.service-card p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.55;
}

.service-card a {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #fff;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.service-card:hover img {
	filter: saturate(1.14);
	transform: scale(1.07);
}

.service-card:hover a {
	background: var(--accent-2);
	color: var(--ink);
	opacity: 1;
	transform: none;
}

.transformation {
	padding-top: 30px;
}

.comparison {
	position: relative;
	height: min(62vw, 610px);
	min-height: 470px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--panel);
	box-shadow: var(--shadow);
}

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

.comparison__base {
	position: absolute;
	inset: 0;
}

.comparison__before {
	position: absolute;
	inset: 0;
	width: 52%;
	overflow: hidden;
	border-right: 2px solid #fff;
}

.comparison__before img {
	width: calc(100vw - max(48px, (100vw - var(--container)) / 2) * 2);
	max-width: var(--container);
	filter: saturate(0.82) contrast(1.08);
}

.comparison__line {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: 52%;
	width: 2px;
	background: #fff;
	transform: translateX(-1px);
	pointer-events: none;
}

.comparison__line span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-weight: 800;
	transform: translate(-50%, -50%);
}

.comparison input {
	position: absolute;
	z-index: 4;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: ew-resize;
	opacity: 0;
}

.comparison__label {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	padding: 8px 12px;
	border-radius: 3px;
	background: rgba(8, 12, 17, 0.76);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.comparison__label--before {
	left: 20px;
}

.comparison__label--after {
	right: 20px;
}

.project-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line);
	border-top: 0;
}

.project-facts div {
	display: grid;
	padding: 22px 26px;
	border-right: 1px solid var(--line);
}

.project-facts div:last-child {
	border-right: 0;
}

.project-facts strong {
	color: #fff;
}

.project-facts span {
	font-size: 0.76rem;
}

.projects {
	background: var(--ink-soft);
	overflow: hidden;
}

.projects-page {
	background: var(--ink-soft);
}

.projects-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

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

.projects-grid .project-card__image {
	height: 440px;
}

.projects-grid--portfolio .project-card__image {
	height: 330px;
}

.projects-grid--portfolio .project-card h3 {
	margin-bottom: 18px;
	font-size: 1.28rem;
}

.project-extra {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	font-size: 0.75rem;
}

.project-controls {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.project-controls button {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.project-controls button:hover {
	border-color: var(--accent-2);
	background: var(--accent-2);
	color: var(--ink);
}

.section-action {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.project-rail {
	display: grid;
	grid-auto-columns: minmax(310px, 34%);
	grid-auto-flow: column;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.project-rail::-webkit-scrollbar {
	display: none;
}

.project-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--panel);
	scroll-snap-align: start;
}

.project-card__image {
	position: relative;
	height: 360px;
	overflow: hidden;
}

.project-card__image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(8, 12, 18, 0.6), transparent 50%);
	content: "";
}

.project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-card__image--placeholder {
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 183, 59, 0.22), transparent 32%),
		linear-gradient(135deg, rgba(21, 35, 54, 0.96), rgba(8, 13, 22, 0.98));
}

.project-card__image--placeholder strong,
.project-card__image--placeholder em {
	position: relative;
	z-index: 2;
	display: block;
	text-align: center;
}

.project-card__image--placeholder strong {
	color: rgba(255, 255, 255, 0.12);
	font-family: "Archivo Black", sans-serif;
	font-size: clamp(5rem, 12vw, 8rem);
	line-height: 1;
}

.project-card__image--placeholder em {
	max-width: 220px;
	margin-top: -12px;
	color: #fff;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-card:hover img {
	transform: scale(1.055);
}

.project-card__image span {
	position: absolute;
	z-index: 2;
	top: 18px;
	left: 18px;
	padding: 6px 10px;
	border-radius: 3px;
	background: var(--accent-2);
	color: var(--ink);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
}

.project-card__body {
	padding: 24px;
}

.project-card__body > p {
	margin-bottom: 8px;
	color: var(--accent-2);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-card h3 {
	margin-bottom: 24px;
	font-size: 1.45rem;
}

.project-card dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0;
	border-top: 1px solid var(--line);
}

.project-card dl div {
	padding-top: 16px;
}

.project-card dt {
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-card dd {
	margin: 2px 0 0;
	color: #fff;
	font-size: 0.86rem;
}

.statistics {
	position: relative;
	min-height: 700px;
	padding: 120px 0;
	overflow: hidden;
	background: var(--stats-image) center/cover fixed no-repeat;
}

.statistics__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 10, 15, 0.96), rgba(7, 10, 15, 0.83) 65%, rgba(7, 10, 15, 0.7));
}

.statistics__inner {
	position: relative;
	z-index: 2;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 80px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-grid > div {
	display: grid;
	min-height: 220px;
	align-content: center;
	justify-content: center;
	padding: 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
}

.stat-grid > div:last-child {
	border-right: 0;
}

.stat-grid strong {
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: clamp(3rem, 5vw, 5.1rem);
	font-weight: 700;
	line-height: 1;
}

.stat-grid span {
	margin-top: 12px;
	color: #c3c9d2;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.statistics__copy {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
}

.statistics__copy p {
	max-width: 720px;
	margin: 0;
	color: #e0e4e9;
	font-family: "Manrope", sans-serif;
	font-size: clamp(1.5rem, 2.2vw, 2.25rem);
	line-height: 1.35;
}

.process {
	position: relative;
	height: 300vh;
	background: var(--ink);
}

.process--page {
	height: auto;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line);
}

.process-grid article {
	min-height: 310px;
	padding: 32px;
	border-right: 1px solid var(--line);
}

.process-grid article:last-child {
	border-right: 0;
}

.process-grid span {
	display: block;
	margin-bottom: 96px;
	color: var(--accent-2);
	font-family: "Manrope", sans-serif;
	font-size: 2rem;
	font-weight: 700;
}

.process-grid p {
	margin: 0;
	font-size: 0.85rem;
}

.process__sticky {
	position: sticky;
	top: 0;
	display: grid;
	height: 100vh;
	align-items: center;
	overflow: hidden;
}

.process__sticky .section-heading {
	margin-bottom: 58px;
}

.process__viewport {
	overflow: hidden;
}

.process__rail {
	display: grid;
	grid-template-columns: repeat(5, minmax(340px, 1fr));
	gap: 18px;
	width: max-content;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.process__rail article {
	width: 420px;
	min-height: 300px;
	padding: 38px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(145deg, var(--panel-2), var(--panel));
}

.process__rail span {
	color: var(--accent-2);
	font-family: "Manrope", sans-serif;
	font-size: 3.2rem;
	font-weight: 700;
}

.process__rail h3 {
	margin: 74px 0 12px;
	font-size: 1.4rem;
}

.process__rail p {
	margin: 0;
}

.process__progress {
	height: 3px;
	margin-top: 36px;
	overflow: hidden;
	background: var(--line);
}

.process__progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.leadership {
	background: var(--ink-soft);
}

.leadership__grid {
	display: grid;
	grid-template-columns: 0.72fr 1fr;
	gap: 90px;
	align-items: center;
}

.leadership__portrait {
	position: relative;
}

.leadership__portrait img {
	width: 100%;
	height: 560px;
	border-radius: var(--radius);
	object-fit: cover;
	object-position: center top;
}

.leadership__portrait > div {
	position: absolute;
	right: -22px;
	bottom: -24px;
	display: grid;
	min-width: 235px;
	padding: 20px 24px;
	border-radius: 5px;
	background: var(--accent-2);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.leadership__portrait span {
	font-size: 0.76rem;
}

.leadership__copy h2 {
	font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.leadership__copy > p:not(.eyebrow) {
	max-width: 670px;
	font-size: 1.04rem;
}

.signature {
	margin-top: 34px;
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
}

.signature span {
	display: block;
	margin-top: 3px;
	color: var(--muted);
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(470px, 0.86fr);
	gap: 90px;
	align-items: start;
}

.contact-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 38px 0;
}

.contact-links a {
	display: grid;
	padding: 17px 18px;
	border: 1px solid var(--line);
	border-radius: 5px;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.contact-links a:hover {
	border-color: var(--accent-2);
	background: rgba(255, 181, 72, 0.06);
	transform: translateY(-2px);
}

.contact-links span,
.branch-grid span {
	font-size: 0.65rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.contact-links strong {
	color: #fff;
	font-size: 0.85rem;
}

.branch-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--line);
	border-radius: 5px;
}

.branch-grid div {
	padding: 22px;
}

.branch-grid div + div {
	border-left: 1px solid var(--line);
}

.branch-grid strong {
	display: block;
	margin: 5px 0;
	color: #fff;
	font-size: 1.1rem;
}

.branch-grid p {
	margin: 0;
	font-size: 0.82rem;
}

.contact-form-wrap {
	padding: 38px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--panel);
	box-shadow: var(--shadow);
}

.contact-direct {
	margin-top: 28px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 5px;
}

.contact-direct h3 {
	margin-bottom: 5px;
	font-size: 0.78rem;
}

.contact-direct a {
	color: var(--accent-2);
	font-size: 0.88rem;
}

.contact-banner {
	padding: 80px 0;
	background: var(--ink-soft);
}

.contact-banner__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--line);
}

.contact-banner__grid > div {
	padding: 46px;
}

.contact-banner__grid > div + div {
	border-left: 1px solid var(--line);
}

.contact-banner h2 {
	font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.contact-banner a {
	color: var(--accent-2);
	font-weight: 700;
}

.statistics--inner {
	min-height: 650px;
}

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

.field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-form label {
	display: grid;
	gap: 8px;
}

.contact-form label > span {
	color: #d6dce5;
	font-size: 0.74rem;
	font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 4px;
	outline: 0;
	background: #0e151e;
	color: #fff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input,
.contact-form select {
	height: 50px;
	padding: 0 14px;
}

.contact-form textarea {
	min-height: 145px;
	padding: 14px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--accent-2);
	box-shadow: 0 0 0 3px rgba(255, 181, 72, 0.1);
}

.contact-form .button {
	width: 100%;
	cursor: pointer;
}

.form-privacy {
	margin: -5px 0 0;
	font-size: 0.7rem;
	text-align: center;
}

.form-notice {
	margin-bottom: 18px;
	padding: 13px 15px;
	border-radius: 4px;
	font-size: 0.82rem;
}

.form-notice--success {
	border: 1px solid rgba(62, 207, 142, 0.3);
	background: rgba(62, 207, 142, 0.1);
	color: #83e2b8;
}

.form-notice--error {
	border: 1px solid rgba(239, 59, 36, 0.35);
	background: rgba(239, 59, 36, 0.1);
	color: #ff9a8c;
}

.honeypot {
	position: absolute;
	left: -9999px;
}

.final-cta {
	padding: 110px 0;
	background:
		linear-gradient(rgba(21, 30, 42, 0.94), rgba(21, 30, 42, 0.94)),
		repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.04) 120px);
	text-align: center;
}

.final-cta__inner {
	max-width: 920px;
}

.final-cta h2 {
	font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.final-cta__inner > p:not(.eyebrow) {
	margin-bottom: 32px;
}

.final-cta__inner > div {
	display: flex;
	justify-content: center;
	gap: 14px;
}

.site-footer {
	padding: 78px 0 22px;
	border-top: 1px solid var(--line);
	background: #070b10;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.55fr 0.7fr 1fr 1fr;
	gap: 55px;
	padding-bottom: 58px;
}

.brand--footer {
	margin-bottom: 22px;
}

.footer__grid > div:first-child > p {
	max-width: 350px;
	font-size: 0.86rem;
}

.footer__grid h3 {
	margin-bottom: 20px;
	font-size: 0.88rem;
}

.footer__grid > div:not(:first-child) {
	display: grid;
	align-content: start;
	gap: 9px;
}

.footer__grid a,
.footer__grid p {
	font-size: 0.8rem;
}

.footer__grid a:hover {
	color: var(--accent-2);
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 0.74rem;
}

.whatsapp-float {
	position: fixed;
	z-index: 800;
	right: 24px;
	bottom: 24px;
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	transition: transform 0.3s ease;
}

.whatsapp-float:hover {
	transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
	width: 29px;
	fill: #fff;
}

@media (max-width: 1120px) {
	:root {
		--container: 960px;
	}

	.nav-shell {
		grid-template-columns: 205px 1fr auto;
	}

	.site-nav a {
		padding-inline: 11px;
	}

	.hero__inner {
		grid-template-columns: 1fr 0.85fr;
		gap: 40px;
	}

	.hero__image-wrap {
		height: 440px;
	}

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

	.credential-card:nth-child(2) {
		border-right: 0;
	}

	.credential-card:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.principle-strip {
		grid-template-columns: repeat(3, 1fr);
	}

	.principle-strip div:nth-child(3) {
		border-right: 0;
	}

	.principle-strip div:nth-child(-n + 3) {
		border-bottom: 1px solid var(--line);
	}

	.about__grid,
	.leadership__grid,
	.contact__grid {
		gap: 55px;
	}

	.home-feature__grid,
	.service-detail__grid {
		gap: 55px;
	}

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

	.service-card {
		min-height: 470px;
	}

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

	.principles-grid article {
		border-bottom: 1px solid var(--line);
	}

	.principles-grid article:nth-child(3) {
		border-right: 0;
	}

	.principles-grid article:nth-child(n + 4) {
		border-bottom: 0;
	}

	.projects-grid--portfolio {
		grid-template-columns: 1fr 1fr;
	}

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

	.process-grid article:nth-child(2) {
		border-right: 0;
	}

	.process-grid article:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}
}

@media (max-width: 900px) {
	:root {
		--header-height: 100px;
	}

	.section {
		padding: 88px 0;
	}

	.container {
		width: min(calc(100% - 36px), var(--container));
	}

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

	.nav-cta {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.menu-toggle.is-active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle.is-active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.is-active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		z-index: -1;
		inset: 0;
		display: grid;
		align-content: center;
		gap: 8px;
		padding: 110px 24px 50px;
		background: rgba(7, 11, 16, 0.98);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.site-nav a {
		padding: 12px;
		font-family: "Manrope", sans-serif;
		font-size: 1.8rem;
		text-align: center;
	}

	.hero {
		padding-top: 164px;
	}

	.page-hero {
		min-height: 580px;
		padding-top: 180px;
	}

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

	.hero__copy {
		max-width: 760px;
	}

	.hero__visual {
		width: min(100%, 660px);
	}

	.about__grid,
	.leadership__grid,
	.contact__grid {
		grid-template-columns: 1fr;
	}

	.home-feature__grid,
	.service-detail__grid {
		grid-template-columns: 1fr;
	}

	.home-feature__image {
		max-width: 720px;
	}

	.service-detail--reverse .service-detail__image {
		order: 0;
	}

	.about__visual {
		max-width: 650px;
	}

	.section-heading--split {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.project-rail {
		grid-auto-columns: minmax(300px, 55%);
	}

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

	.featured-project-grid article:last-child {
		grid-column: 1 / -1;
	}

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

	.mission-grid article + article {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

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

	.principles-grid article,
	.principles-grid article:nth-child(3),
	.principles-grid article:nth-child(n + 4) {
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.principles-grid article:nth-child(even) {
		border-right: 0;
	}

	.principles-grid article:last-child {
		border-bottom: 0;
	}

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

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

	.stat-grid > div:nth-child(2) {
		border-right: 0;
	}

	.stat-grid > div:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}

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

	.process {
		height: auto;
		padding: 100px 0;
	}

	.process__sticky {
		position: static;
		display: block;
		height: auto;
		overflow: visible;
	}

	.process__rail {
		grid-template-columns: 1fr;
		width: 100%;
		transform: none !important;
	}

	.process__rail article {
		width: 100%;
		min-height: 250px;
	}

	.process__progress {
		display: none;
	}

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

	.leadership__portrait {
		max-width: 620px;
	}

	.contact__grid {
		max-width: 760px;
	}

	.footer__grid {
		grid-template-columns: 1.3fr 0.7fr 1fr;
	}

	.footer__grid > div:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

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

	.container {
		width: min(calc(100% - 30px), var(--container));
	}

	.topbar__inner {
		font-size: 0.68rem;
	}

	.topbar__inner > span {
		max-width: 155px;
	}

	.brand__mark {
		width: 40px;
		height: 40px;
	}

	.brand__copy strong {
		font-size: 1.05rem;
	}

	.hero {
		min-height: 0;
		padding: 144px 0 68px;
		background-position: 42% center;
	}

	.page-hero {
		min-height: 540px;
		padding: 160px 0 75px;
		background-position: 58% center;
	}

	.page-hero h1 {
		font-size: clamp(2.5rem, 12vw, 3.7rem);
	}

	h1 {
		font-size: clamp(2.55rem, 13vw, 4rem);
	}

	h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.hero__summary {
		font-size: 1rem;
	}

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

	.hero__image-wrap {
		height: 430px;
	}

	.achievement-card {
		right: 10px;
		left: 10px;
		bottom: 0;
		min-width: 0;
	}

	.credential-grid,
	.principle-strip,
	.service-grid,
	.featured-project-grid,
	.promise-row,
	.principles-grid,
	.process-grid,
	.service-metrics,
	.project-facts,
	.contact-links,
	.branch-grid,
	.contact-banner__grid,
	.field-grid,
	.footer__grid {
		grid-template-columns: 1fr;
	}

	.featured-project-grid article:last-child {
		grid-column: auto;
	}

	.home-feature__image img {
		height: 390px;
	}

	.mission-grid article {
		min-height: 0;
		padding: 36px 24px;
	}

	.mission-grid article > span {
		font-size: 4rem;
	}

	.promise-row span + span {
		border-top: 0;
		border-left: 1px solid var(--line);
	}

	.principles-grid article,
	.principles-grid article:nth-child(3),
	.principles-grid article:nth-child(n + 4),
	.principles-grid article:nth-child(even) {
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.principles-grid article:last-child {
		border-bottom: 0;
	}

	.principles-grid span {
		margin-bottom: 50px;
	}

	.service-detail__image {
		height: 450px;
	}

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

	.service-metrics div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.service-metrics div:last-child {
		border-bottom: 0;
	}

	.projects-grid .project-card__image {
		height: 330px;
	}

	.process-grid article,
	.process-grid article:nth-child(2) {
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.process-grid article:last-child {
		border-bottom: 0;
	}

	.process-grid span {
		margin-bottom: 50px;
	}

	.credential-card,
	.credential-card:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.credential-card:last-child {
		border-bottom: 0;
	}

	.principle-strip div,
	.principle-strip div:nth-child(3) {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.principle-strip div:last-child {
		border-bottom: 0;
	}

	.about__visual {
		padding: 0 0 82px;
	}

	.about__visual::before {
		display: none;
	}

	.about__visual > img {
		height: 440px;
	}

	.about__quote {
		right: 10px;
		left: 10px;
		max-width: none;
	}

	.service-card {
		min-height: 460px;
	}

	.comparison {
		height: 500px;
		min-height: 0;
	}

	.comparison__before img {
		width: calc(100vw - 30px);
	}

	.project-facts div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.project-facts div:last-child {
		border-bottom: 0;
	}

	.project-controls {
		justify-content: flex-start;
		margin-top: 10px;
	}

	.project-rail {
		grid-auto-columns: 86%;
	}

	.project-card__image {
		height: 300px;
	}

	.statistics {
		background-attachment: scroll;
	}

	.stat-grid > div {
		min-height: 170px;
	}

	.statistics__copy {
		gap: 30px;
	}

	.process__rail article {
		padding: 28px;
	}

	.leadership__portrait img {
		height: 440px;
	}

	.leadership__portrait > div {
		right: 10px;
		left: 10px;
		bottom: -24px;
	}

	.leadership__copy {
		padding-top: 28px;
	}

	.branch-grid div + div {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.contact-banner__grid > div {
		padding: 30px 22px;
	}

	.contact-banner__grid > div + div {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.contact-form-wrap {
		padding: 24px 18px;
	}

	.final-cta__inner > div {
		align-items: stretch;
		flex-direction: column;
	}

	.footer__grid > div:last-child {
		grid-column: auto;
	}

	.footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 50px;
		height: 50px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	[data-reveal] {
		opacity: 1;
		filter: none;
		transform: none;
	}
}

/* Let the animated How We Work rail use the full screen width */
.process__viewport,
.process__progress {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.process__rail {
	padding-right: 24px;
	padding-left: 24px;
	box-sizing: border-box;
}