:root {
	--umr-accent: #e2ad6b;
	--umr-accent-light: #f3c98f;
	--umr-panel: rgba(17, 20, 22, 0.92);
	--umr-line: rgba(255, 255, 255, 0.22);
}

html {
	font-size: 19px;
}

body,
input,
select,
textarea,
button {
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-weight: 400;
	line-height: 1.7;
}

body {
	background: #111416;
	overflow-x: hidden;
}

#bg {
	height: 100dvh;
}

#wrapper {
	min-height: 100dvh;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--umr-accent);
	outline-offset: 3px;
}

#main article:focus {
	outline: none;
}

body.is-loading-site {
	overflow: hidden;
}

body > #wrapper,
body > .language-switcher {
	transition: opacity 0.32s ease-in-out;
}

body.is-loading-site > #wrapper,
body.is-loading-site > .language-switcher {
	opacity: 0;
}

.site-loader {
	position: fixed;
	z-index: 20000;
	inset: 0;
	display: grid;
	place-items: center;
	padding:
		calc(env(safe-area-inset-top, 0px) + 1.5rem)
		calc(env(safe-area-inset-right, 0px) + 1.5rem)
		calc(env(safe-area-inset-bottom, 0px) + 1.5rem)
		calc(env(safe-area-inset-left, 0px) + 1.5rem);
	overflow: hidden;
	background: #111416;
	opacity: 0;
	visibility: visible;
	transition: none;
	will-change: opacity;
}

.site-loader:before {
	display: none;
}

.site-loader.is-complete {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-loader__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 23rem);
	text-align: center;
}

.site-loader__logo {
	display: block;
	width: 5.5rem;
	height: 5.5rem;
	margin: 0 auto 1.75rem;
	overflow: visible;
	filter: drop-shadow(0 0.45rem 1.2rem rgba(0, 0, 0, 0.42));
	opacity: 0.82;
	transform: scale(0.96);
}

.site-loader__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.site-loader__meter {
	position: relative;
	width: 100%;
	height: 2px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.16);
}

.site-loader__meter span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--umr-accent), #ffe0b1, var(--umr-accent));
	background-size: 200% 100%;
	box-shadow: 0 0 1rem rgba(226, 173, 107, 0.5);
	transform: scaleX(0);
	transform-origin: left center;
	will-change: transform, background-position;
}

.site-loader__value {
	position: relative;
	display: block;
	height: 1em;
	margin-top: 0.75rem;
	overflow: hidden;
	color: #fff;
	font-size: clamp(2.6rem, 12vw, 4.8rem);
	font-variant-numeric: tabular-nums;
	font-weight: 300;
	letter-spacing: -0.08em;
	line-height: 1;
}

.site-loader__complete {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	z-index: 2;
	line-height: 1;
	pointer-events: none;
}

.site-loader__numbers {
	display: flex;
	flex-direction: column;
	transform: translateY(0);
	will-change: transform;
}

.site-loader__numbers span {
	display: block;
	flex: 0 0 1em;
	height: 1em;
	line-height: 1;
}

.site-loader.is-animating .site-loader__meter span {
	animation:
		site-loader-fill 1s linear forwards,
		site-loader-bar-flow 0.8s linear infinite;
	animation-delay:
		var(--loader-start-delay, 0ms),
		var(--loader-start-delay, 0ms);
}

.site-loader.is-animating .site-loader__numbers {
	animation:
		site-loader-count 1s steps(100, end) forwards,
		site-loader-counter-hide 0.01s linear forwards;
	animation-delay:
		var(--loader-start-delay, 0ms),
		calc(1s + var(--loader-start-delay, 0ms));
}

.site-loader.is-animating .site-loader__complete {
	animation: site-loader-complete-show 0.01s linear forwards;
	animation-delay: calc(1s + var(--loader-start-delay, 0ms));
}

.site-loader.is-animating .site-loader__logo {
	animation: site-loader-pulse 1.8s ease-in-out infinite;
	animation-delay: var(--loader-start-delay, 0ms);
}

.site-loader.is-animating {
	animation:
		site-loader-appear 0.24s ease-out forwards,
		site-loader-dismiss 0.32s ease-in-out forwards;
	animation-delay:
		0s,
		calc(1.5s + var(--loader-start-delay, 0ms));
}

.site-loader.is-language-cover {
	visibility: visible;
	pointer-events: auto;
	animation: site-loader-appear 0.24s ease-out forwards;
}

.site-loader.is-language-cover .site-loader__panel {
	opacity: 0;
}

@keyframes site-loader-pulse {
	0%,
	100% {
		opacity: 0.82;
		transform: scale(0.96);
	}

	50% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes site-loader-fill {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}

@keyframes site-loader-count {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-100em);
	}
}

@keyframes site-loader-counter-hide {
	to {
		opacity: 0;
	}
}

@keyframes site-loader-complete-show {
	to {
		opacity: 1;
	}
}

@keyframes site-loader-bar-flow {
	from {
		background-position: 100% 0;
	}

	to {
		background-position: -100% 0;
	}
}

@keyframes site-loader-appear {
	from {
		opacity: 0;
		visibility: visible;
	}

	to {
		opacity: 1;
		visibility: visible;
	}
}

@keyframes site-loader-dismiss {
	from {
		opacity: 1;
		visibility: visible;
	}

	to {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

.language-switcher {
	position: fixed;
	z-index: 9999;
	top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
	right: calc(env(safe-area-inset-right, 0px) + 0.75rem);
	display: flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.22rem;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 2.5rem;
	background: rgba(15, 18, 20, 0.82);
	box-shadow: 0 0.35rem 1.4rem rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease,
		border-color 0.2s ease;
}

.language-switcher a {
	display: grid;
	place-items: center;
	min-width: 2rem;
	height: 1.7rem;
	padding: 0 0.45rem;
	border: 0;
	border-radius: 2rem;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.06rem;
	line-height: 1;
	text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	outline: none;
}

.language-switcher a.active {
	background: var(--umr-accent);
	color: #151719;
}

body.is-article-visible .language-switcher {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-0.5rem);
}

#bg:before {
	background-image: linear-gradient(to top, rgba(11, 13, 15, 0.82), rgba(11, 13, 15, 0.38)), url("../../images/overlay.png");
}

#bg:after {
	background-image: url("../../images/umr-bg-v2.webp");
	background-position: 58% center;
}

#header {
	width: 100%;
	max-width: 64rem;
}

#header .logo {
	display: grid;
	place-items: center;
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(15, 18, 20, 0.34);
	box-shadow: 0 0 0 0.55rem rgba(255, 255, 255, 0.035);
	backdrop-filter: blur(8px);
	line-height: 1;
}

#header .logo .company-logo {
	display: block;
	width: 5.4rem;
	height: 5.4rem;
	object-fit: contain;
	filter: drop-shadow(0 0.18rem 0.35rem rgba(0, 0, 0, 0.38));
}

#header .content {
	width: min(100%, 48rem);
	border-color: rgba(255, 255, 255, 0.62);
}

#header .content .inner {
	padding: 2.6rem 3.5rem 2.8rem;
}

#header .content h1 {
	margin: 0.18rem 0 0.75rem;
	font-size: clamp(2.65rem, 7vw, 4.8rem);
	line-height: 1;
	letter-spacing: 0.42em;
	text-indent: 0.42em;
}

#header .content p {
	max-width: 100%;
	text-transform: none;
	overflow-wrap: anywhere;
}

#header .content .eyebrow {
	margin-bottom: 0.9rem;
	color: var(--umr-accent-light);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.18rem;
	line-height: 1.65;
	text-transform: uppercase;
}

#header .content .hero-copy {
	font-size: 0.98rem;
	line-height: 1.75;
	letter-spacing: 0.07rem;
}

.hero-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem 1.4rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.hero-tags li {
	position: relative;
	padding: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12rem;
	text-transform: uppercase;
}

.hero-tags li:not(:last-child):after {
	content: "◆";
	position: absolute;
	right: -0.95rem;
	color: var(--umr-accent);
	font-size: 0.45rem;
}

#header nav {
	width: min(100%, 48rem);
}

#header nav ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 4rem;
	width: 100%;
	background: rgba(15, 18, 20, 0.34);
	border-color: rgba(255, 255, 255, 0.62);
	backdrop-filter: blur(10px);
}

#header nav ul li {
	min-width: 0;
	border-color: rgba(255, 255, 255, 0.62);
}

#header nav ul li:nth-child(n+4) {
	border-top: 1px solid rgba(255, 255, 255, 0.62);
}

#header nav ul li:nth-child(4) {
	border-left: 0;
}

#header nav.use-middle:after {
	display: none;
}

#header nav ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	height: 4rem;
	padding: 0.55rem 0.8rem;
	box-sizing: border-box;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.09rem;
	overflow-wrap: break-word;
	text-align: center;
	white-space: normal;
}

#header nav ul li a:hover,
#header nav ul li a:focus {
	background: rgba(226, 173, 107, 0.18);
	color: var(--umr-accent-light);
}

#main article {
	width: 44rem;
	padding: 4.5rem 3rem 2rem;
	background: var(--umr-panel);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(16px);
}

body > .viewport-close {
	-webkit-appearance: none;
	appearance: none;
	display: none;
	position: fixed;
	z-index: 10000;
	top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
	right: calc(env(safe-area-inset-right, 0px) + 0.75rem);
	width: 1.75rem;
	height: 1.75rem;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 50%;
	background-color: rgba(15, 18, 20, 0.92);
	box-shadow: 0 0 0 0.15rem rgba(15, 18, 20, 0.28), 0 0.25rem 0.9rem rgba(0, 0, 0, 0.42);
	color: transparent;
	font-size: 0;
	line-height: 1;
	letter-spacing: 0;
	overflow: hidden;
	text-indent: -9999px;
	white-space: nowrap;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

body > .viewport-close:before,
body > .viewport-close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.6rem;
	height: 1px;
	background: #fff;
	transform-origin: center;
}

body > .viewport-close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

body > .viewport-close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-article-visible > .viewport-close {
	display: block;
}

body > .viewport-close:hover,
body > .viewport-close:focus-visible {
	background-color: rgba(226, 173, 107, 0.18);
	border-color: var(--umr-accent);
	outline: none;
}

#main article .image.main {
	margin: 0 0 2rem;
}

#main article .image.main img {
	width: 100%;
	height: 17rem;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.82) contrast(1.04);
}

.section-index {
	margin: 0 0 0.7rem;
	color: var(--umr-accent-light);
	font-family: "Courier New", monospace;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.14rem;
	text-transform: uppercase;
}

h1.major,
h2.major,
h3.major,
h4.major,
h5.major,
h6.major {
	border-color: var(--umr-accent);
}

h2.major {
	max-width: calc(100% - 2.5rem);
	font-size: clamp(1.55rem, 4.5vw, 2.35rem);
	line-height: 1.2;
	letter-spacing: 0.14rem;
}

.lead {
	font-size: 1.08rem;
	font-weight: 400;
	line-height: 1.65;
}

.director-message {
	margin: 0 0 2.25rem;
	border: 1px solid var(--umr-line);
	background: rgba(255, 255, 255, 0.025);
}

.director-portrait {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #151719;
}

.director-portrait:after {
	content: "";
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(to top, rgba(9, 11, 12, 0.92), rgba(9, 11, 12, 0));
	pointer-events: none;
}

.director-portrait img {
	display: block;
	width: 100%;
	height: auto;
	filter: saturate(0.92) contrast(1.02);
}

.director-portrait figcaption {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.25rem 1.4rem;
	text-align: left;
}

.director-portrait figcaption strong,
.director-portrait figcaption span {
	display: block;
}

.director-portrait figcaption strong {
	margin-bottom: 0.2rem;
	font-size: 1.02rem;
	line-height: 1.35;
	letter-spacing: 0.03rem;
}

.director-portrait figcaption span {
	color: var(--umr-accent-light);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
}

.director-address {
	position: relative;
	padding: 1.5rem 1.6rem 1.65rem;
	border-top: 1px solid var(--umr-line);
}

.director-address:before {
	content: "“";
	position: absolute;
	top: 1rem;
	right: 1.35rem;
	color: rgba(226, 173, 107, 0.18);
	font-family: Georgia, serif;
	font-size: 5rem;
	line-height: 1;
}

.director-kicker {
	position: relative;
	z-index: 1;
	margin: 0 4rem 1rem 0;
	color: var(--umr-accent-light);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
}

.director-address blockquote {
	margin: 0;
	padding: 0 0 0 1.15rem;
	border-left: 2px solid var(--umr-accent);
	font-style: normal;
}

.director-address blockquote p {
	margin: 0 0 0.9rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
	line-height: 1.65;
}

.director-address blockquote p:last-child {
	margin-bottom: 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 2rem 0;
	background: var(--umr-line);
	border: 1px solid var(--umr-line);
}

.feature-grid > div {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1.2rem;
	background: rgba(20, 24, 26, 0.97);
}

.feature-grid strong {
	color: var(--umr-accent-light);
	font-size: 0.9rem;
	letter-spacing: 0.03rem;
	text-transform: uppercase;
}

.feature-grid span {
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.92rem;
	line-height: 1.45;
}

.service-list {
	margin: 2rem 0;
	border-top: 1px solid var(--umr-line);
}

.service-list section {
	display: grid;
	grid-template-columns: 2.5rem 1fr;
	gap: 1rem;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--umr-line);
}

.service-list section > span {
	color: var(--umr-accent);
	font-family: "Courier New", monospace;
	font-size: 0.8rem;
}

.service-list h3 {
	margin: 0 0 0.35rem;
	font-size: 1.08rem;
	letter-spacing: 0.08rem;
}

.service-list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
}

.capability-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.capability-tags li {
	padding: 0.42rem 0.7rem;
	border: 1px solid var(--umr-line);
	border-radius: 3rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.8rem;
}

.house-direction,
.process-section {
	margin: 2.6rem 0 0;
	padding: 1.65rem;
	border: 1px solid var(--umr-line);
	background: rgba(255, 255, 255, 0.025);
}

.house-direction {
	border-color: rgba(226, 173, 107, 0.48);
	background:
		linear-gradient(135deg, rgba(226, 173, 107, 0.09), rgba(255, 255, 255, 0.015) 58%);
}

.house-direction h3,
.process-section h3 {
	margin: 0 0 1rem;
	font-size: clamp(1.25rem, 3vw, 1.7rem);
	line-height: 1.3;
	letter-spacing: 0.1rem;
}

.house-direction > p:not(.section-index),
.process-section > p:not(.section-index) {
	color: rgba(255, 255, 255, 0.75);
}

.house-direction > .lead {
	color: #fff;
}

.house-grid {
	margin-bottom: 1.6rem;
}

.house-comparison {
	--comparison-position: 50%;
	position: relative;
	margin: 0 0 1.75rem;
	border: 1px solid var(--umr-line);
	background: #0d1012;
	cursor: zoom-in;
	transition: border-color 0.2s ease;
}

.house-comparison-stage {
	position: relative;
	aspect-ratio: 8 / 5;
	overflow: hidden;
	background: #0d1012;
	isolation: isolate;
	touch-action: pan-y;
}

body.is-house-comparison-expanded {
	overflow: hidden;
}

.house-comparison.is-expanded {
	position: fixed;
	z-index: 10030;
	top: 50%;
	left: 0;
	width: 100vw;
	max-width: none;
	height: auto;
	margin: 0;
	border-right: 0;
	border-left: 0;
	box-shadow: 0 0 0 100vmax rgba(6, 8, 9, 0.92), 0 1rem 4rem rgba(0, 0, 0, 0.72);
	cursor: default;
	transform: translateY(-50%);
}

.house-comparison-stage > img {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
}

.house-comparison-stage > .house-comparison-before {
	z-index: 2;
	clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.house-comparison-divider {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: var(--comparison-position);
	width: 2px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.58);
	transform: translateX(-1px);
	pointer-events: none;
}

.house-comparison-divider > span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 2.8rem;
	height: 2.8rem;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 50%;
	background: rgba(17, 20, 22, 0.9);
	color: var(--umr-accent-light);
	font-size: 1.05rem;
	line-height: 1;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(8px);
	cursor: ew-resize;
	pointer-events: auto;
	touch-action: none;
	user-select: none;
	transition: transform 0.18s ease, background-color 0.18s ease;
}

.house-comparison.is-dragging .house-comparison-divider > span {
	background: rgba(226, 173, 107, 0.94);
	color: #111416;
	transform: translate(-50%, -50%) scale(1.08);
}

.house-comparison-close {
	display: none;
}

.house-comparison.is-expanded .house-comparison-close {
	position: absolute;
	z-index: 8;
	top: 0.65rem;
	right: 0.65rem;
	display: block;
	width: 2.25rem;
	min-width: 0;
	height: 2.25rem;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	background: rgba(17, 20, 22, 0.88);
	box-shadow: none;
	font-size: 0;
	line-height: 1;
	letter-spacing: 0;
}

.house-comparison.is-expanded .house-comparison-close:before,
.house-comparison.is-expanded .house-comparison-close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.85rem;
	height: 1px;
	background: #fff;
}

.house-comparison.is-expanded .house-comparison-close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.house-comparison.is-expanded .house-comparison-close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.house-comparison input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	z-index: 5;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	opacity: 0;
	pointer-events: none;
}

.house-comparison input[type="range"]::-webkit-slider-runnable-track {
	height: 100%;
	background: transparent;
}

.house-comparison input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 3rem;
	height: 3rem;
	border: 0;
	background: transparent;
}

.house-comparison input[type="range"]::-moz-range-track {
	height: 100%;
	background: transparent;
}

.house-comparison input[type="range"]::-moz-range-thumb {
	width: 3rem;
	height: 3rem;
	border: 0;
	background: transparent;
}

.house-comparison:focus-within {
	border-color: var(--umr-accent);
}

.house-comparison figcaption {
	position: relative;
	min-height: 2.2rem;
	padding: 0.5rem 0.75rem;
	border-top: 1px solid var(--umr-line);
	background: rgba(11, 14, 16, 0.88);
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.64rem;
	letter-spacing: 0.04rem;
	line-height: 1.3;
	text-align: center;
	backdrop-filter: blur(8px);
}

.house-direction .actions {
	margin-bottom: 0;
}

.process-list {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--umr-line);
}

.process-list li {
	display: grid;
	grid-template-columns: 2.5rem minmax(0, 1fr);
	gap: 1rem;
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--umr-line);
}

.process-list li > span {
	color: var(--umr-accent);
	font-family: "Courier New", monospace;
	font-size: 0.78rem;
	line-height: 1.7;
}

.process-list strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.9rem;
	letter-spacing: 0.05rem;
	text-transform: uppercase;
}

.process-list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
	line-height: 1.55;
}

.project-disclosure {
	margin: 1.35rem 0 2rem;
	padding: 0.9rem 1rem;
	border-left: 2px solid var(--umr-accent);
	background: rgba(226, 173, 107, 0.075);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.82rem;
	line-height: 1.55;
}

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

.project-card {
	min-width: 0;
	border: 1px solid var(--umr-line);
	background: rgba(255, 255, 255, 0.025);
	transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.project-card:first-child,
.project-card[open] {
	grid-column: 1 / -1;
}

.project-card[open] {
	border-color: rgba(226, 173, 107, 0.72);
	background: rgba(226, 173, 107, 0.055);
}

.project-card summary {
	display: block;
	cursor: pointer;
	list-style: none;
}

.project-card summary::-webkit-details-marker {
	display: none;
}

.project-card summary:focus-visible {
	outline: 2px solid var(--umr-accent);
	outline-offset: -2px;
}

.project-card-media {
	position: relative;
	display: block;
	height: 10.5rem;
	overflow: hidden;
	background: #111416;
}

.project-card:first-child .project-card-media,
.project-card[open] .project-card-media {
	height: 15rem;
}

.project-card-media:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 10, 11, 0.68), transparent 55%);
	pointer-events: none;
}

.project-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.project-card summary:hover .project-card-media img {
	transform: scale(1.035);
	filter: brightness(1.08);
}

.project-card-number {
	position: absolute;
	z-index: 1;
	top: 0.8rem;
	left: 0.8rem;
	display: grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(14, 17, 19, 0.74);
	color: var(--umr-accent-light);
	font-family: "Courier New", monospace;
	font-size: 0.76rem;
	backdrop-filter: blur(8px);
}

.project-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 9rem;
	padding: 1.15rem;
}

.project-card:first-child .project-card-heading,
.project-card[open] .project-card-heading {
	min-height: 0;
}

.project-card-heading > span:first-child {
	min-width: 0;
}

.project-card-heading small {
	display: block;
	margin-bottom: 0.48rem;
	color: var(--umr-accent-light);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.09rem;
	text-transform: uppercase;
}

.project-card-heading strong {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 1.02rem;
	line-height: 1.35;
	letter-spacing: 0.04rem;
	text-transform: uppercase;
}

.project-card-heading em {
	display: block;
	color: rgba(255, 255, 255, 0.63);
	font-size: 0.84rem;
	font-style: normal;
	line-height: 1.45;
}

.project-card-toggle {
	position: relative;
	flex: 0 0 2rem;
	width: 2rem;
	height: 2rem;
	border: 1px solid var(--umr-line);
	border-radius: 50%;
	transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.project-card-toggle:before,
.project-card-toggle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.72rem;
	height: 1px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.project-card-toggle:after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.project-card[open] .project-card-toggle {
	transform: rotate(45deg);
	border-color: var(--umr-accent);
	background: rgba(226, 173, 107, 0.12);
}

.project-card-details {
	padding: 0 1.15rem 1.3rem;
	border-top: 1px solid var(--umr-line);
	animation: project-card-reveal 0.3s ease both;
}

.project-card-details dl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 1.2rem 0;
	background: var(--umr-line);
	border: 1px solid var(--umr-line);
}

.project-card-details dl > div {
	padding: 1rem;
	background: rgba(18, 21, 23, 0.98);
}

.project-card-details dt {
	margin-bottom: 0.45rem;
	color: var(--umr-accent-light);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
}

.project-card-details dd {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.86rem;
	line-height: 1.5;
}

.project-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	border-bottom: 0;
	color: var(--umr-accent-light);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.07rem;
	text-transform: uppercase;
}

.project-card-link span {
	font-size: 1rem;
	transition: transform 0.2s ease;
}

.project-card-link:hover span {
	transform: translateX(0.25rem);
}

@keyframes project-card-reveal {
	from {
		opacity: 0;
		transform: translateY(-0.35rem);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

.contact-links > a {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
	padding: 1rem;
	border: 1px solid var(--umr-line);
	border-bottom-style: solid;
	overflow-wrap: anywhere;
}

.contact-links > a:hover {
	border-color: var(--umr-accent);
	background: rgba(226, 173, 107, 0.08);
}

.contact-links .icon {
	color: var(--umr-accent);
}

.contact-links > a > span:last-child {
	display: flex;
	flex-direction: column;
	font-weight: 600;
}

.contact-links small {
	margin-bottom: 0.16rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.74rem;
	font-weight: 400;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
}

.email-chooser[hidden] {
	display: none;
}

.email-chooser {
	position: fixed;
	z-index: 10020;
	inset: 0;
	width: 100vw;
	height: 100dvh;
	display: grid;
	place-items: center;
	padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
	background: rgba(6, 8, 9, 0.78);
	backdrop-filter: blur(10px);
}

.email-chooser-panel {
	position: relative;
	width: min(34rem, 100%);
	max-height: calc(100dvh - 2rem);
	padding: 2rem;
	border: 1px solid var(--umr-line);
	background: rgba(17, 20, 22, 0.98);
	box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.5);
	overflow: auto;
}

.email-chooser-panel h3 {
	margin: 0 2.5rem 0.75rem 0;
	font-size: 1.35rem;
	line-height: 1.25;
}

.email-chooser-panel > p:not(.section-index):not(.email-copy-status) {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
	line-height: 1.55;
}

.email-chooser-close {
	position: absolute;
	top: 0.9rem;
	right: 0.9rem;
	width: 2rem;
	min-width: 0;
	height: 2rem;
	min-height: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
	background: transparent;
	box-shadow: none;
	font-size: 0;
	line-height: 1;
	letter-spacing: 0;
}

.email-chooser-close:before,
.email-chooser-close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.8rem;
	height: 1px;
	background: #fff;
}

.email-chooser-close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.email-chooser-close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.email-choice-list {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.6rem;
	margin-top: 1.25rem;
}

.email-choice-list > a,
.email-choice-list > button {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	min-height: 4.5rem;
	margin: 0;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--umr-line);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.025);
	box-shadow: none;
	color: #fff;
	font: inherit;
	letter-spacing: 0;
	line-height: 1.3;
	text-align: left;
	text-transform: none;
	white-space: normal;
}

.email-choice-list > a:hover,
.email-choice-list > a:focus,
.email-choice-list > button:hover,
.email-choice-list > button:focus {
	border-color: var(--umr-accent);
	background: rgba(226, 173, 107, 0.08);
	color: #fff;
}

.email-choice-list strong,
.email-choice-list small {
	display: block;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.email-choice-list strong {
	font-size: 0.88rem;
}

.email-choice-list small {
	margin-top: 0.2rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.7rem;
	line-height: 1.35;
}

.email-copy-status {
	min-height: 1.4rem;
	margin: 0.75rem 0 0;
	color: var(--umr-accent-light);
	font-size: 0.78rem;
}

.office-hours {
	display: grid;
	grid-template-columns: 1.5rem minmax(0, 1fr);
	gap: 0.85rem;
	margin: 0 0 1rem;
	padding: 1rem;
	border: 1px solid var(--umr-line);
	background: rgba(255, 255, 255, 0.025);
}

.office-hours > .icon {
	margin-top: 0.15rem;
	color: var(--umr-accent);
}

.office-hours strong {
	display: block;
	margin-bottom: 0.7rem;
	color: var(--umr-accent-light);
	font-size: 0.82rem;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
}

.office-hours dl {
	margin: 0;
}

.office-hours dl > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	padding: 0.32rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.office-hours dl > div:first-child {
	border-top: 0;
}

.office-hours dt,
.office-hours dd {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.45;
}

.office-hours dt {
	color: rgba(255, 255, 255, 0.64);
}

.office-hours dd {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	white-space: nowrap;
}

.office-map {
	position: relative;
	margin: 0 0 1rem;
	border: 1px solid var(--umr-line);
	background: #151719;
	overflow: hidden;
}

.office-map iframe {
	display: block;
	width: 100%;
	height: clamp(18rem, 52vw, 27rem);
	border: 0;
	filter: saturate(0.88) contrast(1.02);
}

.route-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route-actions li {
	display: flex;
	min-width: 0;
	padding: 0;
}

.route-actions .button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 3.5rem;
	padding: 0.55rem 3.55rem;
	box-sizing: border-box;
	line-height: 1.3;
	overflow-wrap: anywhere;
	text-align: center;
	white-space: normal;
}

.route-app-icon {
	position: absolute;
	left: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 0.5rem;
	background: #f7f7f5;
	font-size: 1.05rem;
	line-height: 1;
	letter-spacing: 0;
	text-shadow: none;
}

.route-app-icon--maps {
	color: #f04438;
}

.route-app-icon--navigator {
	color: #f1b91f;
}

.route-app-icon--2gis {
	color: #35af52;
}

.map-note {
	margin: 0.8rem 0 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.78rem;
	line-height: 1.5;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	border-color: var(--umr-accent);
	box-shadow: 0 0 0 1px var(--umr-accent);
}

textarea::placeholder,
textarea::-webkit-input-placeholder {
	overflow-wrap: break-word;
	white-space: pre-wrap;
}

input[type="tel"] {
	height: 2.75rem;
}

.required-mark {
	margin-left: 0.18rem;
	color: var(--umr-accent-light);
	font-size: 1.05em;
	font-weight: 700;
}

.file-upload {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0.85rem;
	min-height: 3.35rem;
	padding: 0.55rem;
	border: 1px solid var(--umr-line);
	background: rgba(255, 255, 255, 0.035);
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.file-upload:focus-within {
	border-color: var(--umr-accent);
	background: rgba(226, 173, 107, 0.07);
	box-shadow: 0 0 0 1px var(--umr-accent);
}

.file-upload input[type="file"] {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
	opacity: 0;
}

.file-upload-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.25rem;
	padding: 0.25rem 0.75rem;
	border: 1px solid rgba(226, 173, 107, 0.62);
	color: var(--umr-accent-light);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.05rem;
	text-transform: uppercase;
}

.file-upload-name {
	min-width: 0;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.82rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.field-hint {
	display: block;
	margin-top: 0.45rem;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.74rem;
	line-height: 1.5;
}

.message-limit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.message-limit span:last-child {
	flex: 0 0 auto;
	color: var(--umr-accent-light);
	font-variant-numeric: tabular-nums;
}

.consent-field {
	position: relative;
	display: block;
	min-width: 0;
}

.consent-field input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 1.5rem;
	z-index: 2;
	float: none;
	width: 1.7rem;
	height: 1.7rem;
	margin: 0;
	cursor: pointer;
	opacity: 0;
}

.consent-field input[type="checkbox"] + label {
	display: block;
	width: 100%;
	margin-bottom: 0;
	padding-left: 2.55rem;
	padding-right: 0;
	box-sizing: border-box;
	line-height: 1.5;
}

.consent-field input[type="checkbox"] + label:before {
	top: 0;
	left: 0;
}

.form-honey {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.form-status {
	display: none;
	margin: 0 0 1rem;
	padding: 0.75rem 0.9rem;
	border-left: 2px solid var(--umr-accent);
	background: rgba(226, 173, 107, 0.08);
	font-size: 0.82rem;
	line-height: 1.5;
}

.form-status:not(:empty) {
	display: block;
}

.form-status.is-error {
	border-left-color: #ff765f;
	background: rgba(255, 118, 95, 0.1);
	color: #ffd4cc;
}

.form-status.is-success {
	border-left-color: #78d5a3;
	background: rgba(120, 213, 163, 0.1);
	color: #c9f4dd;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
	background: var(--umr-accent);
	box-shadow: none;
	color: #151719 !important;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	height: auto;
	min-height: 2.75rem;
	line-height: 1.25;
	letter-spacing: 0.08rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 0.72rem;
	padding-bottom: 0.72rem;
	text-align: center;
	white-space: normal;
}

button,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.form-note {
	margin-top: -0.8rem;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.8rem;
}

#footer .copyright {
	font-size: 0.7rem;
	letter-spacing: 0.1rem;
}

body.thank-you-page #wrapper {
	justify-content: center;
	gap: 2rem;
}

body.thank-you-page #wrapper:before {
	display: none;
}

.thank-you-card {
	width: min(100%, 40rem);
	padding: 3.5rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--umr-panel);
	box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.46);
	text-align: center;
	backdrop-filter: blur(16px);
}

.thank-you-logo {
	display: inline-grid;
	place-items: center;
	width: 5.25rem;
	height: 5.25rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	background: rgba(15, 18, 20, 0.34);
	box-shadow: 0 0 0 0.55rem rgba(255, 255, 255, 0.035);
}

.thank-you-logo img {
	width: 4.2rem;
	height: 4.2rem;
	object-fit: contain;
	filter: drop-shadow(0 0.18rem 0.35rem rgba(0, 0, 0, 0.38));
}

.thank-you-check {
	display: grid;
	place-items: center;
	width: 2.7rem;
	height: 2.7rem;
	margin: 0 auto 1.4rem;
	border: 1px solid rgba(226, 173, 107, 0.74);
	border-radius: 50%;
	background: rgba(226, 173, 107, 0.12);
	color: var(--umr-accent-light);
	font-size: 1.35rem;
	line-height: 1;
}

.thank-you-card .section-index {
	margin-bottom: 0.85rem;
}

.thank-you-card h1 {
	margin: 0 0 1.15rem;
	font-size: clamp(2rem, 6vw, 3.25rem);
	line-height: 1.1;
	letter-spacing: 0.06rem;
	text-transform: uppercase;
}

.thank-you-copy {
	max-width: 31rem;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
	line-height: 1.7;
}

.thank-you-card .actions {
	justify-content: center;
	margin-bottom: 0;
}

@media screen and (max-width: 736px) {
	html {
		font-size: 18px;
	}

	#wrapper,
	#header,
	#header .content,
	#header .content .inner,
	#header nav {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	#header .content .inner {
		padding: 2.2rem 1.25rem 2.4rem;
	}

	#header .logo .company-logo {
		width: 4.7rem;
		height: 4.7rem;
	}

	#header .content .hero-copy {
		font-size: 0.94rem;
	}

	#header nav {
		width: 100%;
		max-width: 22rem;
	}

	#header > *:before {
		left: 50%;
	}

	#header nav ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 4rem;
		width: 100%;
	}

	#header nav ul li,
	#header nav ul li:first-child {
		border: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.62);
		border-left: 1px solid rgba(255, 255, 255, 0.62);
	}

	#header nav ul li:nth-child(1),
	#header nav ul li:nth-child(2) {
		border-top: 0;
	}

	#header nav ul li:nth-child(odd) {
		border-left: 0;
	}

	#header nav.use-middle ul li.is-middle {
		border-left: 1px solid rgba(255, 255, 255, 0.62);
	}

	#header nav ul li a {
		width: 100%;
		height: 100%;
		padding: 0.55rem 0.7rem;
		line-height: 1.3;
	}

	#main article {
		padding: 3.6rem 2rem 1rem;
	}

	input,
	select,
	textarea,
	button {
		font-size: 16px;
	}

	#main article .image.main img {
		height: 14rem;
	}

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

	.project-card:first-child,
	.project-card[open] {
		grid-column: auto;
	}

	.project-card-media,
	.project-card:first-child .project-card-media,
	.project-card[open] .project-card-media {
		height: 13rem;
	}

	.project-card-heading {
		min-height: 0;
	}

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

	.house-direction,
	.process-section {
		padding: 1.35rem 1.25rem;
	}

	.director-portrait figcaption {
		padding: 1.1rem 1.2rem;
	}

	.director-address {
		padding: 1.35rem 1.25rem 1.45rem;
	}

	.thank-you-card {
		padding: 2.5rem 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	#header {
		padding: 0.4rem 0;
	}

	#header .content h1 {
		font-size: 2.7rem;
	}

	#header .content .inner {
		padding: 1.8rem 0.7rem 2rem;
	}

	#header .content .eyebrow {
		font-size: 0.7rem;
		letter-spacing: 0.11rem;
	}

	#header .content .hero-copy {
		font-size: 0.9rem;
		letter-spacing: 0.035rem;
	}

	.hero-tags {
		gap: 0.45rem 1.15rem;
	}

	.hero-tags li {
		font-size: 0.66rem;
		letter-spacing: 0.07rem;
	}

	#header nav ul {
		flex-direction: unset;
		min-width: 0;
	}

	#header nav ul li a {
		height: 100%;
		line-height: 1.3;
		font-size: 0.75rem;
	}

	#main article {
		padding: 3.2rem 1.25rem 0.8rem;
	}

	#main article .image.main img {
		height: 11rem;
	}

	.project-card-media,
	.project-card:first-child .project-card-media,
	.project-card[open] .project-card-media {
		height: 11rem;
	}

	.project-card-heading {
		padding: 1rem;
	}

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

	.project-card-details {
		padding: 0 1rem 1.1rem;
	}

	h2.major {
		font-size: 1.5rem;
		letter-spacing: 0.08rem;
	}

	.lead {
		font-size: 1.08rem;
	}

	.director-portrait figcaption strong {
		font-size: 0.92rem;
	}

	.director-portrait figcaption span,
	.director-kicker {
		font-size: 0.66rem;
	}

	.director-address blockquote p {
		font-size: 0.9rem;
	}

	.feature-grid,
	.contact-links {
		grid-template-columns: 1fr;
	}

	.route-actions {
		grid-template-columns: 1fr;
	}

	.office-map iframe {
		height: 18rem;
	}

	.house-direction,
	.process-section {
		margin-top: 2rem;
		padding: 1.15rem;
	}

	.process-list li {
		grid-template-columns: 2rem minmax(0, 1fr);
		gap: 0.75rem;
	}

	.contact-links > a {
		overflow-wrap: anywhere;
	}

	.thank-you-card {
		padding: 2rem 1.1rem;
	}

	.thank-you-card h1 {
		font-size: 1.75rem;
	}

	.thank-you-copy {
		font-size: 0.96rem;
	}

	.file-upload {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}

	.file-upload-button {
		justify-self: stretch;
	}

	.email-chooser-panel {
		padding: 1.5rem 1.1rem 1.1rem;
	}

	.email-choice-list {
		gap: 0.45rem;
	}

	.email-choice-list > a,
	.email-choice-list > button {
		min-height: 4.15rem;
		padding: 0.65rem;
	}

	ul.actions:not(.fixed) li .button,
	ul.actions:not(.fixed) li button {
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-loader,
	.site-loader__meter span,
	.site-loader__numbers,
	.site-loader__logo {
		animation: none;
		transition-duration: 0.01ms;
	}

	.site-loader.is-animating,
	.site-loader.is-language-cover {
		opacity: 1;
	}

	.project-card,
	.project-card-media img,
	.project-card-toggle,
	.project-card-details,
	.project-card-link span {
		animation: none;
		transition: none;
	}
}
