:root {
	--ink: #061322;
	--ink-soft: #18334c;
	--steel: #58758c;
	--ice: #83cdf4;
	--ice-bright: #bceaff;
	--cloud: #edf3f6;
	--paper: #f7f9fa;
	--white: #ffffff;
	--line: rgba(16, 49, 75, 0.16);
	--content: min(1180px, calc(100vw - 64px));
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
}

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

button,
input,
textarea {
	font: inherit;
}

:focus-visible {
	outline: 2px solid var(--ice-bright);
	outline-offset: 3px;
}

.section-shell {
	width: var(--content);
	margin: 0 auto;
}

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	height: 92px;
	padding: 0 max(32px, calc((100vw - 1180px) / 2));
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--white);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	font-size: 17px;
	font-weight: 560;
	letter-spacing: -0.02em;
}

.brand img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
}

.brand b {
	font-size: 0.66em;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-header nav {
	display: flex;
	gap: 34px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

.site-header nav a,
.header-cta {
	transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
	color: var(--ice-bright);
}

.header-cta {
	justify-self: end;
	font-size: 13px;
	font-weight: 600;
}

.header-cta span,
.button > span:last-child {
	margin-left: 9px;
}

.hero {
	position: relative;
	min-height: 920px;
	overflow: hidden;
	color: var(--white);
	background:
		radial-gradient(circle at 75% 44%, rgba(86, 173, 222, 0.22), transparent 29%),
		linear-gradient(112deg, #071522 0%, #0b2135 58%, #102c42 100%);
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	opacity: 0.2;
	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: 64px 64px;
	mask-image: linear-gradient(90deg, transparent, black 42%, black);
}

.antigravity-field {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	opacity: 0.72;
	pointer-events: none;
}

.antigravity-field canvas {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 920px;
	padding: 132px 0 78px;
}

.hero-copy {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.hero-copy .eyebrow,
.hero-actions {
	justify-content: center;
}

.hero-copy h1 {
	margin-right: auto;
	margin-left: auto;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 26px;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.13em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 26px;
	height: 1px;
	background: currentColor;
}

h1,
h2,
h3,
p {
	text-wrap: pretty;
}

h1 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(58px, 6.3vw, 92px);
	font-weight: 480;
	letter-spacing: -0.065em;
	line-height: 0.98;
}

.hero-intro {
	max-width: 610px;
	margin: 34px auto 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 19px;
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 42px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 0;
	font-size: 13px;
	font-weight: 650;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
	background: var(--ice-bright);
	color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--white);
}

.button-secondary {
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	border-color: rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	order: -1;
	width: 100%;
	min-height: 0;
	margin-bottom: 32px;
}

.hero-identity {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(290px, 32vw);
	filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.38));
}

.hero-identity > img {
	width: min(220px, 76%);
	height: auto;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.hero-wordmark {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 2px;
	color: var(--white);
	text-align: center;
}

.hero-wordmark strong {
	font-size: clamp(34px, 3.2vw, 44px);
	font-weight: 480;
	letter-spacing: -0.055em;
	line-height: 1;
}

.hero-wordmark span {
	margin-top: 12px;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--ice-bright);
}

.experience-section {
	border-bottom: 1px solid var(--line);
	background: #f4f7f9;
}

.experience-shell {
	padding: 28px 0;
}

.experience-row {
	display: grid;
	grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
	gap: 56px;
	align-items: center;
	padding: 22px 0;
}

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

.experience-row > p {
	max-width: 380px;
	margin: 0;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.7;
	text-transform: uppercase;
	color: var(--steel);
}

.brand-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
}

.brand-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 96px;
	padding: 14px 22px;
	border: 1px solid var(--line);
	background: var(--white);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.brand-tile:hover,
.brand-tile:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(16, 49, 75, 0.3);
	box-shadow: 0 12px 32px rgba(7, 28, 46, 0.07);
}

.brand-tile img {
	display: block;
	max-width: 100%;
	max-height: 68px;
	object-fit: contain;
}

.brand-tile .nasa-logo {
	width: 76px;
}

.brand-tile .thermo-logo {
	width: 170px;
	max-height: 62px;
}

.esa-tile {
	overflow: hidden;
}

.brand-tile .esa-logo {
	width: 170px;
	max-height: none;
	transform: scale(1.85);
}

.brand-tile .axisray-logo {
	width: 118px;
	max-height: 72px;
}

.brand-tile .microsoft-logo {
	width: 164px;
	max-height: 42px;
}

.brand-name {
	color: var(--ink-soft);
	font-size: 24px;
	font-weight: 630;
	letter-spacing: -0.035em;
}

.work-section {
	padding: 128px 0;
	background: #eaf1f5;
}

.studio-section {
	padding: 136px 0;
}

.section-heading {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 80px;
	align-items: end;
	margin-bottom: 68px;
}

.section-heading h2,
.studio-copy h2,
.contact-section h2 {
	margin: 0;
	font-size: clamp(46px, 5vw, 70px);
	font-weight: 480;
	letter-spacing: -0.06em;
	line-height: 1.02;
}

.section-heading > p {
	margin: 0 0 4px;
	color: var(--steel);
	font-size: 16px;
	line-height: 1.7;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: start;
}

.project-card {
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 32px;
	border: 1px solid rgba(16, 49, 75, 0.14);
	background: var(--white);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(7, 28, 46, 0.09);
}

.project-featured {
	grid-column: span 2;
	display: grid;
	grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1.24fr);
	grid-template-rows: auto auto auto auto;
	column-gap: 48px;
	min-height: 380px;
	color: var(--white);
	background:
		radial-gradient(circle at 23% 54%, rgba(103, 190, 236, 0.32), transparent 25%),
		linear-gradient(145deg, #081a2a, #123c5a);
}

.project-logo {
	display: grid;
	place-items: center;
	width: min(210px, 100%);
	aspect-ratio: 1;
	margin: 28px auto 0;
	padding: 18px;
	background: var(--white);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2), 0 0 80px rgba(103, 190, 236, 0.13);
}

.project-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.snap-project-logo {
	display: block;
	width: 88px;
	height: 88px;
	margin-top: 24px;
	border-radius: 20px;
	object-fit: contain;
}

.project-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--steel);
}

.project-topline p {
	margin: 0;
}

.project-featured .project-topline {
	grid-column: 1 / -1;
	color: rgba(255, 255, 255, 0.55);
}

.project-body {
	max-width: 500px;
	margin-top: 32px;
}

.project-body h3 {
	margin: 0 0 16px;
	font-size: clamp(28px, 2.5vw, 40px);
	font-weight: 500;
	letter-spacing: -0.05em;
}

.project-body p {
	margin: 0;
	color: var(--steel);
	font-size: 15px;
	line-height: 1.68;
}

.project-featured .project-body {
	grid-column: 2;
	grid-row: 2;
	align-self: end;
	margin-top: 0;
}

.project-featured .project-body p {
	color: rgba(255, 255, 255, 0.66);
}

.project-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.project-card li {
	padding: 7px 10px;
	background: #edf3f6;
	color: var(--ink-soft);
	font-family: var(--font-mono);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.project-featured li {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.78);
}

.project-featured .project-logo {
	grid-column: 1;
	grid-row: 2 / 5;
	align-self: center;
	margin-top: 16px;
}

.project-featured ul {
	grid-column: 2;
	grid-row: 3;
}

.project-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	margin-top: 24px;
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(16, 49, 75, 0.3);
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 650;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--ink-soft);
	transition: border-color 180ms ease, color 180ms ease;
}

.project-link:hover,
.project-link:focus-visible {
	border-color: var(--ink);
	color: var(--ink);
}

.project-featured .project-link {
	grid-column: 2;
	grid-row: 4;
	border-color: rgba(188, 234, 255, 0.45);
	color: var(--ice-bright);
}

.project-featured .project-link:hover,
.project-featured .project-link:focus-visible {
	border-color: var(--white);
	color: var(--white);
}

.capabilities-section {
	padding: 96px 0;
	color: var(--white);
	background: var(--ink);
}

.section-heading-light > p,
.capability-list article > p {
	color: rgba(255, 255, 255, 0.58);
}

.capability-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.capability-list article {
	min-height: 235px;
	padding: 28px 34px 0 0;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.capability-list article:not(:first-child) {
	padding-left: 34px;
}

.capability-list article:last-child {
	border-right: 0;
}

.capability-list span {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--ice);
}

.capability-list h3 {
	margin: 62px 0 18px;
	font-size: 25px;
	font-weight: 520;
	letter-spacing: -0.04em;
}

.capability-list p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

.studio-section {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 100px;
}

.studio-detail > p {
	margin: 0 0 24px;
	color: var(--steel);
	font-size: 17px;
	line-height: 1.75;
}

.studio-detail > p:first-child {
	color: var(--ink-soft);
	font-size: 21px;
}

.principles {
	margin-top: 64px;
	border-top: 1px solid var(--line);
}

.principles > div {
	display: grid;
	grid-template-columns: 46px 1fr 1.2fr;
	gap: 18px;
	align-items: start;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}

.principles span {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--steel);
}

.principles strong {
	font-size: 14px;
}

.principles p {
	margin: 0;
	color: var(--steel);
	font-size: 13px;
	line-height: 1.5;
}

.contact-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	color: var(--white);
	background: linear-gradient(120deg, #0e2e48, #081825);
}

.contact-section::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	opacity: 0.18;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(90deg, transparent 35%, black);
	pointer-events: none;
}

.contact-stage {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 610px;
	overflow: hidden;
}

.contact-stage-inner { position: relative; z-index: 2; }

.contact-copy {
	position: relative;
	z-index: 2;
	width: min(51%, 600px);
	padding: 120px 0;
}

.contact-copy > p:not(.eyebrow) {
	max-width: 560px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 17px;
	line-height: 1.7;
}

.contact-address {
	display: grid; gap: 8px; width: max-content; max-width: 100%;
	margin-top: 42px; padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-address span {
	font-family: var(--font-mono); font-size: 9px; font-weight: 600;
	letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.contact-address strong {
	font-size: clamp(14px, 1.5vw, 18px); font-weight: 540;
	letter-spacing: -0.02em; color: var(--ice-bright);
}

.contact-visual {
	position: absolute; top: 0; right: 0; bottom: 0; z-index: 0;
	width: 49%; overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0%, black 30%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, black 30%);
}
.contact-visual img {
	display: block; width: 100%; height: 100%; object-fit: cover;
	object-position: center; opacity: 0.88;
}

.contact-form-shell { position: relative; z-index: 2; padding: 72px 0 112px; }
.contact-form {
	position: relative; z-index: 3; display: grid; gap: 20px;
	width: min(100%, 860px); margin: 0 auto; padding: clamp(26px, 3.2vw, 42px);
	border: 1px solid rgba(188, 234, 255, 0.2);
	background: rgba(5, 20, 32, 0.82);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-field { display: grid; gap: 9px; }
.contact-field label {
	display: flex; justify-content: space-between; gap: 12px; font-family: var(--font-mono);
	font-size: 9px; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; color: rgba(255,255,255,.72);
}
.contact-field label span { font-weight: 500; color: rgba(255,255,255,.36); }
.contact-field input, .contact-field textarea {
	width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0;
	background: rgba(255,255,255,.055); color: var(--white); font-size: 14px;
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.contact-field input { height: 50px; padding: 0 15px; }
.contact-field textarea { min-height: 148px; padding: 14px 15px; line-height: 1.55; resize: vertical; }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: rgba(255,255,255,.33); }
.contact-field input:hover, .contact-field textarea:hover { border-color: rgba(188,234,255,.42); }
.contact-field input:focus, .contact-field textarea:focus {
	border-color: var(--ice-bright); background: rgba(255,255,255,.08); box-shadow: 0 0 0 2px rgba(188,234,255,.13);
}
.contact-submit { width: 100%; margin-top: 2px; font-family: inherit; cursor: pointer; }
.contact-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.contact-form-note { margin: -5px 0 0; font-size: 11px; line-height: 1.5; color: rgba(255,255,255,.42); }
.contact-form-status { min-height: 20px; }
.contact-form-status p { margin: 0; font-size: 12px; font-weight: 580; line-height: 1.55; }
.contact-form-success { color: var(--ice-bright); }
.contact-form-error { color: #ffd0d0; }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer {
	width: 100%;
	background: var(--paper);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	min-height: 124px;
	font-size: 11px;
	color: var(--steel);
}

.footer-inner > p {
	margin: 0;
	text-align: center;
}

.footer-inner > p:last-child {
	text-align: right;
}

.footer-inner .brand {
	color: var(--ink);
}

@media (max-width: 980px) {
	:root {
		--content: min(100% - 40px, 760px);
	}

	.site-header {
		grid-template-columns: 1fr auto;
		padding: 0 20px;
	}

	.site-header nav {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero-inner {
		min-height: 900px;
		padding: 112px 0 72px;
	}

	.hero-visual {
		margin-bottom: 28px;
	}

	.hero-identity {
		width: min(290px, 46vw);
	}

	.experience-row,
	.section-heading,
	.studio-section {
		grid-template-columns: 1fr;
	}

	.experience-row {
		gap: 18px;
		padding: 28px 0;
	}

	.section-heading {
		gap: 30px;
	}

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

	.project-featured {
		min-height: 380px;
	}

	.studio-section {
		gap: 52px;
	}

	.contact-stage { min-height: 610px; }

	.contact-copy { width: min(54%, 560px); padding: 96px 0; }

	.contact-visual { width: 52%; }

	.contact-form-shell { padding: 58px 0 88px; }

	.contact-form { width: min(100%, 760px); }
}

@media (max-width: 680px) {
	:root {
		--content: calc(100% - 32px);
	}

	.site-header {
		height: 76px;
		padding: 0 16px;
	}

	.header-cta {
		font-size: 0;
	}

	.header-cta::before {
		content: "Enquire";
		font-size: 12px;
	}

	.header-cta span {
		font-size: 12px;
	}

	.hero-inner {
		min-height: auto;
		padding: 100px 0 64px;
	}

	h1 {
		font-size: clamp(50px, 15vw, 68px);
	}

	.hero-intro {
		font-size: 17px;
	}

	.hero-actions,
	.hero-actions .button {
		width: 100%;
	}

	.hero-visual {
		margin-bottom: 22px;
	}

	.hero-identity {
		width: min(250px, 72vw);
	}

	.hero-wordmark strong {
		font-size: 36px;
	}

	.experience-shell {
		padding: 18px 0;
	}

	.brand-tiles {
		gap: 8px;
	}

	.brand-tile {
		height: 84px;
		padding: 12px;
	}

	.brand-name {
		font-size: 20px;
	}

	.work-section,
	.studio-section,
	.capabilities-section {
		padding: 92px 0;
	}

	.project-grid,
	.capability-list {
		grid-template-columns: 1fr;
	}

	.project-card,
	.project-featured {
		min-height: 0;
	}

	.project-featured {
		grid-column: auto;
		display: flex;
		flex-direction: column;
	}

	.project-featured .project-topline,
	.project-featured .project-logo,
	.project-featured .project-body,
	.project-featured ul,
	.project-featured .project-link {
		grid-column: auto;
		grid-row: auto;
	}

	.project-featured .project-logo {
		width: min(190px, 72%);
		margin: 28px auto 8px;
	}

	.project-featured .project-body {
		margin-top: 24px;
	}

	.project-card {
		padding: 26px;
	}

	.project-body {
		margin-top: 28px;
	}

	.capability-list article,
	.capability-list article:not(:first-child) {
		min-height: 230px;
		padding: 28px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}

	.capability-list h3 {
		margin-top: 44px;
	}

	.principles > div {
		grid-template-columns: 38px 1fr;
	}

	.principles p {
		grid-column: 2;
	}

	.contact-section h2 { font-size: 49px; }

	.contact-stage { align-items: flex-start; min-height: 720px; }

	.contact-copy { width: 100%; padding: 82px 0 0; }

	.contact-visual {
		top: auto; right: 0; bottom: 0; width: 100%; height: 330px;
		mask-image: linear-gradient(180deg, transparent 0%, black 36%);
		-webkit-mask-image: linear-gradient(180deg, transparent 0%, black 36%);
	}
	.contact-visual img { opacity: .58; object-position: center 36%; }

	.contact-form-shell { padding: 48px 0 68px; }
	.contact-form-row { grid-template-columns: 1fr; }
	.contact-form { gap: 18px; padding: 24px 20px; }
	.contact-address { margin-top: 32px; }
	.contact-address strong { font-size: 14px; }

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 36px 0;
	}

	.footer-inner > p,
	.footer-inner > p:last-child {
		text-align: left;
	}
}

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

	.antigravity-field {
		display: none;
	}
}
