@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap");

:root {
	--udc-ink: #0b1014;
	--udc-ink-soft: #151b20;
	--udc-paper: #f1eee7;
	--udc-paper-deep: #dedad0;
	--udc-gold: #f2bd29;
	--udc-gold-soft: #d9a923;
	--udc-white: #fff;
	--udc-line: rgba(11, 16, 20, .17);
	--udc-line-light: rgba(255, 255, 255, .19);
	--udc-ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }
body.udc-premium-site {
	margin: 0;
	overflow-x: hidden;
	background: var(--udc-ink);
	color: var(--udc-ink);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
body.udc-premium-site.menu-open { overflow: hidden; }
body.udc-premium-site * { box-sizing: border-box; }
body.udc-premium-site a { color: inherit; text-decoration: none; }
body.udc-premium-site img { display: block; max-width: 100%; }
body.udc-premium-site button,
body.udc-premium-site input,
body.udc-premium-site textarea,
body.udc-premium-site select { font: inherit; }
body.udc-premium-site .site-header,
body.udc-premium-site .site-footer,
body.udc-premium-site .page-header { display: none !important; }
body.udc-premium-site .elementor,
body.udc-premium-site .elementor-element,
body.udc-premium-site .elementor-widget-container { margin: 0; padding: 0; }

.udc-wrap {
	width: min(1280px, calc(100% - 120px));
	margin-inline: auto;
}
.udc-page { background: var(--udc-paper); }
.udc-site-content {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	background: var(--udc-paper);
	box-shadow: 0 25px 70px rgba(0, 0, 0, .4);
}
.udc-eyebrow {
	margin: 0;
	color: var(--udc-white);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .21em;
	line-height: 1.3;
	text-transform: uppercase;
}
.udc-eyebrow::before {
	display: inline-block;
	width: 28px;
	height: 1px;
	margin: 0 12px 3px 0;
	background: currentColor;
	content: "";
}
.udc-eyebrow-dark { color: var(--udc-ink); }
.udc-eyebrow-gold { color: var(--udc-gold); }
.udc-section-index {
	display: block;
	color: rgba(11, 16, 20, .48);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
}

/* Global header */
.udc-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: minmax(245px, 1fr) auto minmax(245px, 1fr);
	align-items: center;
	width: 100%;
	height: 98px;
	padding: 0 48px;
	color: var(--udc-white);
	border-bottom: 1px solid transparent;
	transition: height .45s var(--udc-ease), background-color .45s, border-color .45s;
}
.udc-header.is-scrolled,
.udc-header.menu-active {
	height: 78px;
	background: rgba(11, 16, 20, .94);
	border-color: var(--udc-line-light);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}
.udc-brand {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	width: max-content;
}
.udc-brand-mark {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 54px;
	height: 38px;
	padding: 3px 2px;
	color: var(--udc-gold);
	border: 1px solid rgba(242, 189, 41, .55);
	transform: skewX(-7deg);
}
.udc-brand-mark::before,
.udc-brand-mark::after {
	position: absolute;
	inset: 4px auto 4px 33.333%;
	width: 1px;
	background: rgba(242, 189, 41, .4);
	content: "";
}
.udc-brand-mark::after { left: 66.666%; }
.udc-brand-mark i {
	display: grid;
	place-items: center;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	transform: skewX(7deg);
}
.udc-brand-name { display: flex; flex-direction: column; }
.udc-brand-name b {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .08em;
	line-height: 1.35;
	text-transform: uppercase;
}
.udc-brand-name small {
	color: rgba(255, 255, 255, .7);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.udc-desktop-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(22px, 2.2vw, 40px);
	margin: 0;
	padding: 0;
	list-style: none;
}
.udc-desktop-nav a {
	position: relative;
	display: block;
	padding: 15px 0;
	color: rgba(255, 255, 255, .8);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: color .25s;
}
.udc-desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 9px;
	left: 0;
	height: 1px;
	background: var(--udc-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--udc-ease);
}
.udc-desktop-nav a:hover,
.udc-desktop-nav .current-menu-item > a { color: var(--udc-white); }
.udc-desktop-nav a:hover::after,
.udc-desktop-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}
.udc-header-actions {
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 22px;
}
.udc-header-call {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.udc-header-call i { color: var(--udc-gold); font-size: 16px; font-style: normal; }
.udc-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--udc-line-light);
	border-radius: 50%;
	cursor: pointer;
}
.udc-menu-toggle span {
	display: block;
	width: 16px;
	height: 1px;
	margin: 5px auto;
	background: var(--udc-white);
	transition: transform .3s, margin .3s;
}
.udc-menu-toggle[aria-expanded="true"] span:first-child { margin-bottom: -1px; transform: rotate(45deg); }
.udc-menu-toggle[aria-expanded="true"] span:last-child { margin-top: 0; transform: rotate(-45deg); }
.udc-mobile-panel {
	position: fixed;
	z-index: 2;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 130px 9vw 55px;
	visibility: hidden;
	background: var(--udc-ink);
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity .4s, transform .5s var(--udc-ease), visibility .4s;
}
.udc-mobile-panel.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.udc-mobile-panel ul { margin: 0; padding: 0; list-style: none; }
.udc-mobile-panel li { overflow: hidden; border-bottom: 1px solid var(--udc-line-light); }
.udc-mobile-panel li a {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	font-family: "Italiana", Georgia, serif;
	font-size: clamp(35px, 9vw, 64px);
	line-height: 1.05;
}
.udc-mobile-panel li a::after { color: var(--udc-gold); content: "↗"; font-family: "DM Sans"; font-size: 19px; }
.udc-mobile-panel > div { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 35px; color: rgba(255,255,255,.65); font-size: 12px; }
.udc-side-rail {
	position: fixed;
	z-index: 9;
	right: 18px;
	bottom: 42px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, .65);
	font-size: 8px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: .19em;
	text-transform: uppercase;
	transform: rotate(-90deg) translateX(100%);
	transform-origin: right bottom;
}
.udc-side-rail i { width: 46px; height: 1px; background: var(--udc-gold); }
.udc-side-rail b { color: var(--udc-white); font-weight: 500; }

/* Hero slider */
.udc-hero {
	position: relative;
	isolation: isolate;
	height: 100svh;
	min-height: 720px;
	overflow: hidden;
	background: var(--udc-ink);
	color: var(--udc-white);
	--hero-mx: 50%;
	--hero-my: 50%;
}
.udc-hero::after {
	position: absolute;
	z-index: 4;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle 330px at var(--hero-mx) var(--hero-my), rgba(242, 189, 41, .11), transparent 68%);
	content: "";
	mix-blend-mode: screen;
	opacity: .75;
	transition: opacity .4s;
}
.udc-hero-slide {
	position: absolute;
	inset: 0;
	visibility: hidden;
	opacity: 1;
	pointer-events: none;
}
.udc-hero-slide.is-active {
	z-index: 2;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
.udc-hero-slide.is-leaving {
	z-index: 3;
	visibility: visible;
	opacity: 1;
	pointer-events: none;
}
.udc-hero-slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: inset(0 100% 0 0);
	transform: scale(1.15) translate3d(-2.5%, 0, 0);
	filter: saturate(.7) contrast(1.08) brightness(.9);
	transition: clip-path 1.35s var(--udc-ease), transform 9s linear, filter 1.2s;
}
.udc-hero-slide[data-layout="right"] > img {
	clip-path: inset(0 0 0 100%);
	transform: scale(1.15) translate3d(2.5%, 0, 0);
	object-position: center;
}
.udc-hero-slide[data-layout="center"] > img {
	clip-path: inset(50% 0 50% 0);
	transform: scale(1.13);
	object-position: center;
}
.udc-hero-slide.is-active > img {
	clip-path: inset(0);
	transform: scale(1.015) translate3d(0, 0, 0);
	filter: saturate(.86) contrast(1.06) brightness(.94);
}
.udc-hero-slide.is-leaving[data-layout="left"] > img { clip-path: inset(0 0 0 100%); transform: scale(1.08) translate3d(2%, 0, 0); transition-duration: 1.05s; }
.udc-hero-slide.is-leaving[data-layout="right"] > img { clip-path: inset(0 100% 0 0); transform: scale(1.08) translate3d(-2%, 0, 0); transition-duration: 1.05s; }
.udc-hero-slide.is-leaving[data-layout="center"] > img { clip-path: inset(50% 0 50% 0); transform: scale(1.09); transition-duration: 1.05s; }
.udc-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 8, 11, .84) 0%, rgba(4, 8, 11, .47) 48%, rgba(4, 8, 11, .15) 80%),
		linear-gradient(0deg, rgba(4, 8, 11, .55) 0%, transparent 46%);
}
.udc-hero-slide[data-layout="right"] .udc-hero-shade {
	background:
		linear-gradient(270deg, rgba(4, 8, 11, .88) 0%, rgba(4, 8, 11, .49) 48%, rgba(4, 8, 11, .12) 82%),
		linear-gradient(0deg, rgba(4, 8, 11, .62) 0%, transparent 52%);
}
.udc-hero-slide[data-layout="center"] .udc-hero-shade {
	background:
		linear-gradient(90deg, rgba(4, 8, 11, .48), rgba(4, 8, 11, .66) 50%, rgba(4, 8, 11, .38)),
		linear-gradient(0deg, rgba(4, 8, 11, .72), transparent 64%);
}
.udc-hero-shade::after {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
	background-size: calc(100% / 12) 100%;
	content: "";
	mask-image: linear-gradient(to bottom, transparent 8%, black 50%, transparent 95%);
	opacity: .35;
}
.udc-hero-copy {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -45%);
}
.udc-hero-slide[data-layout="right"] .udc-hero-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	transform: translate(-50%, -44%);
}
.udc-hero-slide[data-layout="center"] .udc-hero-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transform: translate(-50%, -40%);
}
.udc-hero-copy .udc-eyebrow {
	margin-bottom: 30px;
	opacity: 0;
	transform: translate3d(-55px, 0, 0);
	transition: opacity .75s .28s, transform .9s .28s var(--udc-ease);
}
.udc-hero-slide[data-layout="right"] .udc-eyebrow { transform: translate3d(55px, 0, 0); }
.udc-hero-slide[data-layout="center"] .udc-eyebrow { transform: translate3d(0, -25px, 0); }
.udc-hero h1,
.udc-inner-hero h1 {
	max-width: 980px;
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(60px, 7.45vw, 126px);
	font-weight: 300;
	letter-spacing: -.062em;
	line-height: .86;
}
.udc-hero h1 > span,
.udc-hero h1 > em,
.udc-inner-hero h1 > span,
.udc-inner-hero h1 > em { display: block; overflow: hidden; }
.udc-hero h1 em,
.udc-inner-hero h1 em {
	margin: 13px 0 0 clamp(35px, 9vw, 145px);
	color: var(--udc-gold);
	font-family: "Italiana", Georgia, serif;
	font-size: 1.03em;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -.045em;
}
.udc-char {
	display: inline-block;
	opacity: 0;
	transform: translateY(115%) rotate(4deg);
	transition: transform .9s var(--udc-ease), opacity .55s;
	transition-delay: calc(45ms * var(--char-index));
	white-space: pre;
}
.udc-word {
	display: inline-block;
	white-space: nowrap;
}
.is-active .udc-char,
.udc-inner-copy.is-ready .udc-char { opacity: 1; transform: translateY(0) rotate(0); }
.udc-hero [data-split="from-left"] .udc-char,
.udc-inner-hero [data-split="from-left"] .udc-char {
	filter: blur(8px);
	transform: translate3d(-135px, 0, 0) rotateY(-38deg);
	transform-origin: left center;
}
.udc-hero [data-split="from-right"] .udc-char,
.udc-inner-hero [data-split="from-right"] .udc-char {
	filter: blur(8px);
	transform: translate3d(135px, 0, 0) rotateY(38deg);
	transform-origin: right center;
}
.udc-hero-slide.is-active [data-split] .udc-char,
.udc-inner-copy.is-ready [data-split] .udc-char {
	filter: blur(0);
	opacity: 1;
	transform: translate3d(0, 0, 0) rotateY(0);
	transition-duration: 1.05s, .65s, .8s;
	transition-property: transform, opacity, filter;
	transition-timing-function: var(--udc-ease);
	transition-delay: calc(.34s + 34ms * var(--char-index));
}
.udc-hero-slide.is-leaving [data-split="from-left"] .udc-char {
	filter: blur(7px);
	opacity: 0;
	transform: translate3d(120px, 0, 0) rotateY(30deg);
	transition-delay: calc(14ms * var(--char-reverse));
	transition-duration: .68s;
}
.udc-hero-slide.is-leaving [data-split="from-right"] .udc-char {
	filter: blur(7px);
	opacity: 0;
	transform: translate3d(-120px, 0, 0) rotateY(-30deg);
	transition-delay: calc(14ms * var(--char-reverse));
	transition-duration: .68s;
}
.udc-hero-intro {
	max-width: 470px;
	margin: 34px 0 0 clamp(38px, 9vw, 150px);
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.75;
	opacity: 0;
	transform: translate3d(-60px, 0, 0);
	transition: opacity .8s 1.05s, transform .95s 1.05s var(--udc-ease);
}
.udc-hero-actions {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 32px 0 0 clamp(38px, 9vw, 150px);
	opacity: 0;
	transform: translate3d(-60px, 0, 0);
	transition: opacity .8s 1.18s, transform .95s 1.18s var(--udc-ease);
}
.udc-hero-slide[data-layout="right"] .udc-hero-intro,
.udc-hero-slide[data-layout="right"] .udc-hero-actions {
	margin-right: clamp(38px, 9vw, 150px);
	margin-left: 0;
	transform: translate3d(60px, 0, 0);
}
.udc-hero-slide[data-layout="center"] .udc-hero-intro,
.udc-hero-slide[data-layout="center"] .udc-hero-actions {
	margin-right: 0;
	margin-left: 0;
	transform: translate3d(0, 28px, 0);
}
.udc-hero-slide.is-active .udc-eyebrow,
.udc-hero-slide.is-active .udc-hero-intro,
.udc-hero-slide.is-active .udc-hero-actions { opacity: 1; transform: translateY(0); }
.udc-hero-slide.is-leaving .udc-eyebrow,
.udc-hero-slide.is-leaving .udc-hero-intro,
.udc-hero-slide.is-leaving .udc-hero-actions {
	opacity: 0;
	transform: translate3d(0, 34px, 0);
	transition-delay: 0s;
}
.udc-hero-slide[data-layout="right"] h1 { max-width: 1050px; }
.udc-hero-slide[data-layout="right"] h1 em { margin-right: clamp(35px, 8vw, 130px); margin-left: 0; }
.udc-hero-slide[data-layout="center"] h1 { max-width: 1160px; }
.udc-hero-slide[data-layout="center"] h1 em { margin-right: 0; margin-left: 0; }
.udc-hero-ghost {
	position: absolute;
	z-index: 1;
	top: 13%;
	right: 4.5%;
	color: transparent;
	font-size: clamp(150px, 23vw, 390px);
	font-weight: 300;
	letter-spacing: -.09em;
	line-height: .7;
	-webkit-text-stroke: 1px rgba(255,255,255,.12);
	opacity: 0;
	transform: translate3d(90px, 0, 0);
	transition: opacity 1s .35s, transform 1.3s .35s var(--udc-ease);
}
.udc-hero-slide[data-layout="right"] .udc-hero-ghost { right: auto; left: 4%; transform: translate3d(-90px, 0, 0); }
.udc-hero-slide[data-layout="center"] .udc-hero-ghost { top: 20%; right: 50%; transform: translate3d(50%, -45px, 0); }
.udc-hero-slide.is-active .udc-hero-ghost { opacity: .48; transform: translate3d(0, 0, 0); }
.udc-hero-slide.is-active[data-layout="center"] .udc-hero-ghost { transform: translate3d(50%, 0, 0); }
.udc-hero-slide.is-leaving .udc-hero-ghost { opacity: 0; transition-delay: 0s; }
.udc-hero-meter {
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 28px;
	display: flex;
	align-items: center;
	gap: 13px;
	color: rgba(255,255,255,.55);
	font-size: 8px;
	font-weight: 500;
	letter-spacing: .17em;
	text-transform: uppercase;
	transform: rotate(-90deg) translateX(-50%);
	transform-origin: left center;
}
.udc-hero-meter i { display: block; width: 58px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.udc-hero-meter i::after {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--udc-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
}
.udc-hero-slide.is-active .udc-hero-meter i::after { animation: udc-progress 7s .35s linear; }
.udc-hero-meter b { color: rgba(255,255,255,.78); font-weight: 500; }
.udc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 23px;
	min-height: 58px;
	padding: 0 24px;
	border: 0;
	border-radius: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .3s, color .3s, transform .3s;
}
.udc-button:hover { transform: translateY(-2px); }
.udc-button i { font-size: 17px; font-style: normal; }
.udc-button-gold { background: var(--udc-gold); color: var(--udc-ink) !important; }
.udc-button-gold:hover { background: var(--udc-white); }
.udc-text-link,
.udc-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 6px;
	border-bottom: 1px solid currentColor;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.udc-text-link i,
.udc-arrow-link i { color: var(--udc-gold); font-size: 17px; font-style: normal; transition: transform .3s; }
.udc-text-link:hover i,
.udc-arrow-link:hover i { transform: translate(3px, -3px); }
.udc-hero-controls {
	position: absolute;
	z-index: 5;
	right: 60px;
	bottom: 48px;
	display: flex;
	align-items: center;
	gap: 22px;
}
.udc-hero-controls > button {
	width: 42px;
	height: 42px;
	padding: 0;
	color: var(--udc-white);
	background: rgba(11,16,20,.25);
	border: 1px solid var(--udc-line-light);
	border-radius: 50%;
	cursor: pointer;
	transition: background .3s, color .3s;
}
.udc-hero-controls > button:hover { color: var(--udc-ink); background: var(--udc-gold); }
.udc-hero-controls > div { display: flex; align-items: center; gap: 12px; }
.udc-hero-controls [data-udc-dot] {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 5px 0;
	color: rgba(255,255,255,.45);
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 9px;
}
.udc-hero-controls [data-udc-dot] i {
	display: block;
	width: 26px;
	height: 1px;
	overflow: hidden;
	background: rgba(255,255,255,.25);
}
.udc-hero-controls [data-udc-dot].is-active { color: var(--udc-white); }
.udc-hero-controls [data-udc-dot].is-active i::after {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--udc-gold);
	content: "";
	transform-origin: left;
	animation: udc-progress 7s linear;
}
@keyframes udc-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.udc-scroll-cue {
	position: absolute;
	z-index: 5;
	bottom: 48px;
	left: 60px;
	display: flex;
	align-items: center;
	gap: 13px;
	color: rgba(255,255,255,.7);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .17em;
	text-transform: uppercase;
}
.udc-scroll-cue i { color: var(--udc-gold); font-size: 18px; font-style: normal; animation: udc-bob 1.8s infinite; }
@keyframes udc-bob { 50% { transform: translateY(6px); } }

/* Home sections */
.udc-intro,
.udc-page-intro {
	display: grid;
	grid-template-columns: minmax(180px, .72fr) 2.28fr;
	gap: 55px;
	padding-block: 145px 155px;
}
.udc-intro > div:first-child { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.udc-intro h2,
.udc-page-intro h2 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(40px, 5vw, 80px);
	font-weight: 300;
	letter-spacing: -.055em;
	line-height: 1.03;
}
.udc-intro-bottom {
	display: grid;
	grid-template-columns: 1.3fr .7fr;
	gap: 80px;
	align-items: end;
	margin: 55px 0 0 clamp(0px, 8vw, 140px);
}
.udc-intro-bottom p {
	margin: 0;
	color: rgba(11,16,20,.66);
	font-size: 16px;
	line-height: 1.85;
}
.udc-services-band {
	padding: 135px 0;
	color: var(--udc-white);
	background: var(--udc-ink);
}
.udc-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 60px;
	margin-bottom: 70px;
}
.udc-section-head h2 {
	max-width: 750px;
	margin: 19px 0 0;
	font-size: clamp(40px, 4.45vw, 72px);
	font-weight: 300;
	letter-spacing: -.052em;
	line-height: 1.02;
}
.udc-service-list { border-top: 1px solid var(--udc-line-light); }
.udc-service-list article {
	position: relative;
	display: grid;
	grid-template-columns: 100px minmax(240px, .85fr) 1.3fr 60px;
	gap: 25px;
	align-items: center;
	min-height: 150px;
	border-bottom: 1px solid var(--udc-line-light);
	transition: padding .4s var(--udc-ease), background .4s;
}
.udc-service-list article::before {
	position: absolute;
	inset: 0 -25px;
	z-index: 0;
	background: var(--udc-gold);
	content: "";
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .4s var(--udc-ease);
}
.udc-service-list article > * { position: relative; z-index: 1; }
.udc-service-list article:hover { color: var(--udc-ink); padding-inline: 20px; }
.udc-service-list article:hover::before { transform: scaleY(1); }
.udc-service-list article > span { color: var(--udc-gold); font-size: 11px; }
.udc-service-list article:hover > span { color: var(--udc-ink); }
.udc-service-list h3 { margin: 0; font-size: clamp(21px, 2vw, 30px); font-weight: 400; letter-spacing: -.03em; }
.udc-service-list p { max-width: 590px; margin: 0; color: rgba(255,255,255,.57); font-size: 14px; line-height: 1.72; }
.udc-service-list article:hover p { color: rgba(11,16,20,.68); }
.udc-service-list b { justify-self: end; font-size: 22px; font-weight: 400; }
.udc-projects-band { padding-block: 145px 165px; }
.udc-section-head-light h2 { color: var(--udc-ink); }
.udc-project-grid {
	display: grid;
	grid-template-columns: 1.1fr .75fr;
	grid-template-rows: repeat(2, minmax(340px, 39vw));
	gap: 22px;
}
.udc-project-card { position: relative; overflow: hidden; color: var(--udc-white) !important; }
.udc-project-1 { grid-row: 1 / span 2; }
.udc-project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--udc-ease); }
.udc-project-card > span { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,8,11,.72), transparent 58%); transition: background .4s; }
.udc-project-card:hover img { transform: scale(1.045); }
.udc-project-card > div { position: absolute; right: 36px; bottom: 35px; left: 36px; }
.udc-project-card small { color: var(--udc-gold); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.udc-project-card h3 { margin: 10px 0 0; font-size: clamp(27px, 3vw, 52px); font-weight: 300; letter-spacing: -.045em; }
.udc-project-card > b { position: absolute; top: 28px; right: 30px; font-size: 9px; font-weight: 500; letter-spacing: .18em; }
.udc-process { padding-block: 145px; color: var(--udc-white); background: #13191e; }
.udc-process-grid { display: grid; grid-template-columns: 1fr 1.18fr; gap: 90px; }
.udc-process h2 { max-width: 550px; margin: 25px 0 0; font-size: clamp(45px, 5vw, 78px); font-weight: 300; letter-spacing: -.055em; line-height: 1; }
.udc-process ol { margin: 0; padding: 0; border-top: 1px solid var(--udc-line-light); list-style: none; }
.udc-process li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 26px 0; border-bottom: 1px solid var(--udc-line-light); }
.udc-process li > span { color: var(--udc-gold); font-size: 10px; }
.udc-process h3 { margin: 0 0 7px; font-size: 25px; font-weight: 400; }
.udc-process li p { margin: 0; color: rgba(255,255,255,.54); font-size: 13px; }
.udc-journal-preview { padding: 145px 0; background: #dcd8cf; }
.udc-journal-grid { display: grid; grid-template-columns: .82fr 1.3fr; gap: 9vw; align-items: start; }
.udc-journal-preview h2 { margin: 24px 0 0; font-size: clamp(42px, 4.7vw, 72px); font-weight: 300; letter-spacing: -.055em; line-height: 1.03; }
.udc-journal-card { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--udc-paper); }
.udc-journal-card img { width: 100%; height: 100%; min-height: 370px; object-fit: cover; }
.udc-journal-card > div { display: flex; flex-direction: column; padding: 40px; }
.udc-journal-card small { color: rgba(11,16,20,.5); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.udc-journal-card h3 { margin: 24px 0 auto; font-size: clamp(26px, 2.3vw, 37px); font-weight: 300; letter-spacing: -.04em; line-height: 1.12; }

/* Inner pages */
.udc-inner-hero {
	position: relative;
	height: 78svh;
	min-height: 670px;
	overflow: hidden;
	color: var(--udc-white);
	background: var(--udc-ink);
}
.udc-inner-hero > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); animation: udc-inner-zoom 12s both; }
@keyframes udc-inner-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.udc-inner-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,8,11,.87), rgba(4,8,11,.35) 70%), linear-gradient(0deg, rgba(4,8,11,.56), transparent 55%); }
.udc-inner-copy { position: absolute; right: 0; bottom: 70px; left: 0; }
.udc-inner-copy .udc-eyebrow { margin-bottom: 25px; }
.udc-inner-copy h1 { font-size: clamp(56px, 6.7vw, 112px); }
.udc-contact .udc-inner-copy h1 { font-size: clamp(50px, 5.35vw, 88px); }
.udc-inner-copy > div:last-child {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 50px;
	margin: 35px 0 0 clamp(35px, 9vw, 145px);
}
.udc-inner-copy > div:last-child p { max-width: 580px; margin: 0; color: rgba(255,255,255,.75); }
.udc-inner-copy > div:last-child > span { color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.udc-page-intro { grid-template-columns: .52fr 2fr; }
.udc-page-intro > div > p:last-child { max-width: 650px; margin: 40px 0 0 22%; color: rgba(11,16,20,.64); font-size: 16px; line-height: 1.85; }
.udc-statement-image { position: relative; height: 76vh; min-height: 620px; overflow: hidden; }
.udc-statement-image > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.62) saturate(.66); }
.udc-statement-image > div { position: absolute; inset: 0; display: flex; align-items: center; }
.udc-statement-image blockquote {
	max-width: 1000px;
	margin: 0;
	color: var(--udc-white);
	font-family: "Italiana", Georgia, serif;
	font-size: clamp(43px, 6vw, 91px);
	font-style: italic;
	letter-spacing: -.03em;
	line-height: 1.05;
}
.udc-values { padding: 140px 0; color: var(--udc-white); background: var(--udc-ink); }
.udc-values-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.udc-values h2 { max-width: 570px; margin: 22px 0 0; font-size: clamp(45px, 5.3vw, 82px); font-weight: 300; letter-spacing: -.055em; line-height: 1; }
.udc-values-grid > div:last-child { border-top: 1px solid var(--udc-line-light); }
.udc-values-grid article { display: grid; grid-template-columns: 62px 170px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--udc-line-light); }
.udc-values-grid article span { color: var(--udc-gold); font-size: 10px; }
.udc-values-grid article h3 { margin: 0; font-size: 25px; font-weight: 400; }
.udc-values-grid article p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }
.udc-service-catalog { padding-bottom: 150px; }
.udc-service-catalog > article {
	display: grid;
	grid-template-columns: 1.15fr 1fr .72fr;
	gap: 65px;
	padding: 55px 0;
	border-top: 1px solid var(--udc-line);
}
.udc-service-catalog > article:last-child { border-bottom: 1px solid var(--udc-line); }
.udc-service-catalog article > div { display: grid; grid-template-columns: 55px 1fr; gap: 20px; }
.udc-service-catalog article span { color: var(--udc-gold-soft); font-size: 10px; }
.udc-service-catalog h2 { margin: -8px 0 0; font-size: clamp(31px, 3.3vw, 51px); font-weight: 300; letter-spacing: -.045em; line-height: 1.07; }
.udc-service-catalog article > p { margin: 0; color: rgba(11,16,20,.64); line-height: 1.8; }
.udc-service-catalog ul { margin: 0; padding: 0; list-style: none; }
.udc-service-catalog li { padding: 10px 0; border-bottom: 1px solid var(--udc-line); font-size: 12px; }
.udc-service-catalog li::before { margin-right: 9px; color: var(--udc-gold-soft); content: "↗"; }
.udc-delivery-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--udc-line-light); border-left: 1px solid var(--udc-line-light); }
.udc-delivery-steps article { min-height: 265px; padding: 30px; border-right: 1px solid var(--udc-line-light); border-bottom: 1px solid var(--udc-line-light); }
.udc-delivery-steps span { color: var(--udc-gold); font-size: 9px; }
.udc-delivery-steps h3 { margin: 74px 0 12px; font-size: 26px; font-weight: 400; }
.udc-delivery-steps p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }
.udc-project-catalog { padding-bottom: 155px; }
.udc-project-catalog > article { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: center; margin-bottom: 120px; }
.udc-project-catalog > article.is-reverse { grid-template-columns: .75fr 1.25fr; }
.udc-project-catalog > article.is-reverse .udc-catalog-image { grid-column: 2; }
.udc-project-catalog > article.is-reverse > div { grid-column: 1; grid-row: 1; }
.udc-catalog-image { position: relative; height: min(68vw, 760px); overflow: hidden; }
.udc-catalog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--udc-ease); }
.udc-catalog-image:hover img { transform: scale(1.04); }
.udc-catalog-image span { position: absolute; top: 25px; right: 25px; display: grid; place-items: center; width: 54px; height: 54px; color: var(--udc-ink); background: var(--udc-gold); border-radius: 50%; font-size: 10px; }
.udc-project-catalog article > div h2 { margin: 20px 0; font-size: clamp(44px, 5vw, 75px); font-weight: 300; letter-spacing: -.055em; line-height: .98; }
.udc-project-catalog article > div > p { color: rgba(11,16,20,.64); line-height: 1.8; }
.udc-project-catalog dl { margin: 35px 0; border-top: 1px solid var(--udc-line); }
.udc-project-catalog dl div { display: grid; grid-template-columns: 120px 1fr; padding: 11px 0; border-bottom: 1px solid var(--udc-line); }
.udc-project-catalog dt { color: rgba(11,16,20,.45); font-size: 10px; text-transform: uppercase; }
.udc-project-catalog dd { margin: 0; font-size: 12px; }
.udc-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 18px; padding-bottom: 145px; }
.udc-team-grid article { min-width: 0; }
.udc-team-portrait { position: relative; aspect-ratio: .79; margin: 0; background: #1a1d1f; overflow: hidden; }
.udc-team-portrait > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) contrast(1.02); transition: transform .8s var(--udc-ease), filter .6s var(--udc-ease); }
.udc-team-grid article:nth-child(n+5) .udc-team-portrait > img { transform: scale(1.16); }
.udc-team-number { position: absolute; top: 18px; right: 18px; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; color: var(--udc-ink); background: rgba(214,180,107,.94); font-size: 9px; letter-spacing: .08em; }
.udc-team-overlay { position: absolute; inset: auto 0 0; z-index: 1; padding: 70px 22px 20px; color: rgba(255,255,255,.9); background: linear-gradient(180deg, transparent, rgba(7,10,12,.92)); transform: translateY(18px); opacity: 0; transition: transform .5s var(--udc-ease), opacity .45s var(--udc-ease); }
.udc-team-overlay p { margin: 0; color: inherit; font-size: 12px; letter-spacing: 0; line-height: 1.65; }
.udc-team-portrait:hover > img { transform: scale(1.025); filter: saturate(1) contrast(1.03); }
.udc-team-grid article:nth-child(n+5) .udc-team-portrait:hover > img { transform: scale(1.19); }
.udc-team-portrait:hover .udc-team-overlay,
.udc-team-portrait:focus-within .udc-team-overlay { transform: translateY(0); opacity: 1; }
.udc-team-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--udc-gold); background: linear-gradient(145deg, #202427, #0c1013); font-family: "Italiana", serif; font-size: 50px; letter-spacing: .02em; }
.udc-team-caption { padding: 18px 2px 0; border-top: 1px solid transparent; }
.udc-team-grid h3 { margin: 0; font-size: 24px; font-weight: 400; letter-spacing: -.035em; }
.udc-team-caption > p { margin: 7px 0 0; color: rgba(11,16,20,.53); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.udc-team-message { text-align: center; }
.udc-team-message h2 { margin-inline: auto; }
.udc-team-message .udc-button { margin-top: 35px; }
.udc-insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 70px 32px; padding-bottom: 150px; }
.udc-insight-grid article.is-featured { display: grid; grid-template-columns: 1.35fr .65fr; grid-column: 1 / -1; gap: 65px; align-items: center; }
.udc-insight-image { position: relative; display: block; height: 440px; overflow: hidden; }
.udc-insight-grid .is-featured .udc-insight-image { height: 650px; }
.udc-insight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--udc-ease); }
.udc-insight-image:hover img { transform: scale(1.04); }
.udc-insight-image span { position: absolute; top: 20px; left: 20px; padding: 9px 12px; color: var(--udc-ink); background: var(--udc-gold); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.udc-insight-grid article > div { padding-top: 25px; }
.udc-insight-grid h2 { margin: 20px 0; font-size: clamp(31px, 3.4vw, 54px); font-weight: 300; letter-spacing: -.045em; line-height: 1.08; }
.udc-insight-grid article > div > p:not(.udc-eyebrow) { color: rgba(11,16,20,.62); line-height: 1.75; }
.udc-contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; padding-bottom: 150px; }
.udc-contact-grid h2 { margin: 0 0 40px; font-size: clamp(35px, 4vw, 61px); font-weight: 300; letter-spacing: -.05em; }
.udc-contact-grid dl { margin: 0; border-top: 1px solid var(--udc-line); }
.udc-contact-grid dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--udc-line); }
.udc-contact-grid dt { color: rgba(11,16,20,.45); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.udc-contact-grid dd { display: flex; flex-direction: column; margin: 0; font-size: 13px; }
.udc-contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 27px 22px; }
.udc-contact-form label { display: flex; flex-direction: column; gap: 8px; }
.udc-contact-form label > span { color: rgba(11,16,20,.54); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.udc-contact-form input,
.udc-contact-form select,
.udc-contact-form textarea { width: 100%; padding: 13px 0; color: var(--udc-ink); background: transparent; border: 0; border-bottom: 1px solid var(--udc-line); border-radius: 0; outline: none; transition: border-color .25s; }
.udc-contact-form textarea { resize: vertical; }
.udc-contact-form input:focus,
.udc-contact-form select:focus,
.udc-contact-form textarea:focus { border-color: var(--udc-gold-soft); }
.udc-contact-form .udc-full { grid-column: 1 / -1; }
.udc-contact-form .udc-button { justify-self: start; }
.udc-honeypot { position: absolute !important; left: -9999px; }
.udc-form-success { padding: 16px; color: #1b542d; background: #d9efdf; }
.udc-contact-visual { position: relative; height: 70vh; min-height: 600px; overflow: hidden; background: var(--udc-ink); }
.udc-contact-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.45) brightness(.48); }
.udc-contact-visual > div { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--udc-white); }
.udc-contact-visual span { font-size: 10px; letter-spacing: .2em; }
.udc-contact-visual strong { color: var(--udc-gold); font-family: "Italiana", serif; font-size: clamp(78px, 12vw, 180px); font-weight: 400; letter-spacing: -.04em; }

/* Single project */
.udc-project-hero { position: relative; height: 100svh; min-height: 720px; color: var(--udc-white); background: var(--udc-ink); }
.udc-project-hero > img { width: 100%; height: 100%; object-fit: cover; }
.udc-project-hero > div:first-of-type { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,8,11,.77), rgba(4,8,11,.14) 68%); }
.udc-project-hero > .udc-wrap { position: absolute; right: 0; bottom: 80px; left: 0; }
.udc-project-hero h1 { max-width: 1050px; margin: 23px 0 0; font-size: clamp(64px, 9vw, 145px); font-weight: 300; letter-spacing: -.065em; line-height: .86; }
.udc-project-hero .udc-scroll-cue { right: 0; bottom: 0; left: auto; }
.udc-project-story { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; padding-block: 145px; }
.udc-project-story dl { margin-top: 45px; }
.udc-project-story dl > div { padding: 13px 0; border-bottom: 1px solid var(--udc-line); }
.udc-project-story dt { color: rgba(11,16,20,.45); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.udc-project-story dd { margin: 4px 0 0; }
.udc-project-story h2 { margin: 22px 0 38px; font-size: clamp(38px, 4.2vw, 66px); font-weight: 300; letter-spacing: -.05em; line-height: 1.06; }
.udc-rich-text { max-width: 700px; color: rgba(11,16,20,.67); line-height: 1.85; }
.udc-rich-text h2 { color: var(--udc-ink); font-size: 34px; }

/* Animated reveal footer */
.udc-footer {
	position: fixed;
	z-index: 1;
	right: 0;
	bottom: 0;
	left: 0;
	min-height: max(760px, 100svh);
	overflow: hidden;
	color: var(--udc-white);
	background: #070b0e;
	--footer-x: 50%;
	--footer-y: 50%;
	--footer-shift-x: 0px;
	--footer-shift-y: 0px;
}
.udc-footer-canvas,
.udc-footer-aurora,
.udc-footer-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.udc-footer-canvas { z-index: 1; }
.udc-footer-aurora {
	z-index: 0;
	background:
		radial-gradient(circle 250px at var(--footer-x) var(--footer-y), rgba(242,189,41,.18), rgba(242,189,41,.055) 42%, transparent 72%),
		radial-gradient(circle 520px at var(--footer-x) var(--footer-y), rgba(51,97,112,.12), transparent 70%);
	opacity: 0;
	transform: scale(.84);
	transition: opacity .45s, transform .7s var(--udc-ease);
}
.udc-footer.is-pointer-active .udc-footer-aurora { opacity: 1; transform: scale(1); }
.udc-footer-grid {
	z-index: 0;
	opacity: .3;
	background-image:
		linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 70px 70px;
	mask-image: linear-gradient(to bottom, transparent, black 25%, black);
	transform: perspective(900px) rotateX(var(--grid-rx, 0deg)) rotateY(var(--grid-ry, 0deg)) scale(1.04);
	transition: transform .3s ease-out, opacity .4s;
}
.udc-footer.is-pointer-active .udc-footer-grid { opacity: .54; }
.udc-footer-signature {
	position: absolute;
	z-index: 0;
	right: -2vw;
	bottom: 4vh;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	pointer-events: none;
	color: transparent;
	font-size: clamp(130px, 18vw, 320px);
	font-weight: 300;
	letter-spacing: -.085em;
	line-height: .6;
	-webkit-text-stroke: 1px rgba(255,255,255,.045);
	opacity: .75;
	transform: translate3d(var(--footer-shift-x), var(--footer-shift-y), 0);
	transition: opacity .45s, transform .2s ease-out;
}
.udc-footer-signature em {
	margin-right: 8vw;
	color: rgba(242,189,41,.025);
	font-family: "Italiana", serif;
	font-style: italic;
	-webkit-text-stroke-color: rgba(242,189,41,.07);
}
.udc-footer.is-pointer-active .udc-footer-signature { opacity: 1; }
.udc-footer-cursor {
	position: absolute;
	z-index: 8;
	top: 0;
	left: 0;
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	pointer-events: none;
	border: 1px solid rgba(242,189,41,.5);
	border-radius: 50%;
	opacity: 0;
	transform: translate3d(-100px,-100px,0);
	transition: width .28s var(--udc-ease), height .28s var(--udc-ease), background .28s, border-color .28s, opacity .25s;
}
.udc-footer-cursor i {
	position: absolute;
	width: 5px;
	height: 5px;
	background: var(--udc-gold);
	border-radius: 50%;
	box-shadow: 0 0 18px var(--udc-gold);
}
.udc-footer-cursor b {
	color: var(--udc-gold);
	font-size: 7px;
	font-weight: 600;
	letter-spacing: .17em;
	opacity: 0;
	transition: opacity .25s;
}
.udc-footer.is-pointer-active .udc-footer-cursor { opacity: 1; }
.udc-footer-cursor.is-link {
	width: 104px;
	height: 104px;
	background: rgba(242,189,41,.1);
	border-color: var(--udc-gold);
}
.udc-footer-cursor.is-link i { opacity: 0; }
.udc-footer-cursor.is-link b { opacity: 1; }
.udc-footer-interact {
	margin-left: 18px;
	color: rgba(255,255,255,.4);
	font-size: 8px;
	font-weight: 400;
	letter-spacing: .12em;
}
.udc-footer-interact::before { margin-right: 10px; color: var(--udc-gold); content: "◌"; }
.udc-footer.is-interactive,
.udc-footer.is-interactive a { cursor: none; }
.udc-footer.is-interactive .udc-footer-module {
	transform: perspective(800px) rotateX(var(--module-rx, 0deg)) rotateY(var(--module-ry, 0deg)) translate3d(0, var(--module-y, 0px), 0);
}
.udc-marquee {
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 18px 0;
	border-top: 1px solid var(--udc-line-light);
	border-bottom: 1px solid var(--udc-line-light);
}
.udc-marquee > div { display: flex; width: max-content; animation: udc-marquee 29s linear infinite; }
.udc-marquee span { margin-right: 42px; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.udc-marquee i { margin-left: 42px; color: var(--udc-gold); font-style: normal; }
@keyframes udc-marquee { to { transform: translateX(-50%); } }
.udc-footer-main {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 90px;
	align-items: center;
	padding-block: 75px 62px;
	border-bottom: 1px solid var(--udc-line-light);
}
.udc-footer-main h2 {
	position: relative;
	max-width: 900px;
	margin: 22px 0 0;
	font-size: clamp(48px, 6vw, 96px);
	font-weight: 300;
	letter-spacing: -.06em;
	line-height: .98;
	text-shadow: 0 0 40px rgba(242,189,41,0);
	transition: text-shadow .5s;
}
.udc-footer.is-pointer-active .udc-footer-main h2 { text-shadow: 0 0 50px rgba(242,189,41,.08); }
.udc-orbit-cta {
	position: relative;
	display: grid;
	place-items: center;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(242,189,41,.52);
	border-radius: 50%;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .12em;
	text-align: center;
	text-transform: uppercase;
	transition: color .4s, background .4s, transform .4s var(--udc-ease);
}
.udc-orbit-cta::before,
.udc-orbit-cta::after {
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--udc-gold);
	border-radius: 50%;
	content: "";
	box-shadow: 0 0 20px var(--udc-gold);
	animation: udc-orbit 6s linear infinite;
}
.udc-orbit-cta::after { animation-direction: reverse; animation-duration: 9s; }
@keyframes udc-orbit { from { transform: rotate(0deg) translateX(80px) rotate(0deg); } to { transform: rotate(360deg) translateX(80px) rotate(-360deg); } }
.udc-orbit-cta b { color: var(--udc-gold); font-size: 21px; font-weight: 400; }
.udc-orbit-cta { transform: translate3d(var(--mag-x,0), var(--mag-y,0), 0); }
.udc-orbit-cta:hover { color: var(--udc-ink); background: var(--udc-gold); transform: translate3d(var(--mag-x,0), var(--mag-y,0), 0) rotate(-5deg) scale(1.04); }
.udc-footer-details {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.35fr 1.35fr 1fr .6fr;
	gap: 65px;
	padding-block: 45px;
	border-bottom: 1px solid var(--udc-line-light);
}
.udc-footer-details small { display: block; margin-bottom: 17px; color: var(--udc-gold); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.udc-footer-details p,
.udc-footer-details a { display: block; margin: 0 0 8px; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.6; }
.udc-footer-details a:hover { color: var(--udc-gold); }
.udc-footer-module {
	position: relative;
	padding-top: 13px;
	border-top: 1px solid transparent;
	transition: transform .25s ease-out, border-color .35s, background .35s;
	transform-style: preserve-3d;
}
.udc-footer-module::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--udc-gold);
	content: "";
	transition: width .5s var(--udc-ease);
}
.udc-footer-module:hover { --module-y: -5px; border-color: rgba(255,255,255,.08); }
.udc-footer-module:hover::before { width: 100%; }
.udc-footer-brand .udc-brand-mark { margin-bottom: 18px; }
.udc-footer-brand p { max-width: 320px; }
.udc-footer-bottom {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	padding-block: 18px;
	color: rgba(255,255,255,.38);
	font-size: 8px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

/* Scroll entrance */
[data-reveal] { opacity: 0; transform: translateY(45px); transition: opacity .85s, transform .95s var(--udc-ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
	.udc-wrap { width: min(100% - 70px, 1180px); }
	.udc-header { grid-template-columns: 1fr auto; padding-inline: 35px; }
	.udc-desktop-nav { display: none; }
	.udc-menu-toggle { display: block; }
	.udc-side-rail { display: none; }
	.udc-team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	.udc-wrap { width: calc(100% - 46px); }
	.udc-header { height: 82px; padding-inline: 23px; }
	.udc-brand-name { display: none; }
	.udc-header-call { display: none; }
	.udc-hero { min-height: 680px; }
	.udc-hero-copy { transform: translate(-50%, -47%); }
	.udc-hero-slide[data-layout="right"] .udc-hero-copy { transform: translate(-50%, -46%); }
	.udc-hero-slide[data-layout="center"] .udc-hero-copy { transform: translate(-50%, -43%); }
	.udc-hero h1,
	.udc-inner-hero h1 { font-size: clamp(54px, 12vw, 90px); }
	.udc-hero h1 em,
	.udc-inner-hero h1 em { margin-left: 0; }
	.udc-hero-intro,
	.udc-hero-actions { margin-left: 0; }
	.udc-hero-slide[data-layout="right"] .udc-hero-intro,
	.udc-hero-slide[data-layout="right"] .udc-hero-actions { margin-right: 0; }
	.udc-hero-slide[data-layout="right"] h1 em { margin-right: 0; }
	.udc-hero-meter { display: none; }
	.udc-hero-ghost { top: 17%; font-size: clamp(130px, 31vw, 280px); }
	.udc-hero-controls { right: 23px; bottom: 25px; }
	.udc-hero-controls > button { display: none; }
	.udc-scroll-cue { bottom: 27px; left: 23px; }
	.udc-intro,
	.udc-page-intro { grid-template-columns: 1fr; gap: 45px; padding-block: 95px; }
	.udc-intro > div:first-child { flex-direction: row; }
	.udc-intro-bottom,
	.udc-page-intro > div > p:last-child { margin-left: 0; }
	.udc-service-list article { grid-template-columns: 55px 1fr 38px; gap: 15px; padding-block: 25px; }
	.udc-service-list article p { grid-column: 2 / -1; }
	.udc-project-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, minmax(530px, 75vw)); }
	.udc-project-1 { grid-row: auto; }
	.udc-process-grid,
	.udc-journal-grid,
	.udc-values-grid,
	.udc-contact-grid,
	.udc-project-story { grid-template-columns: 1fr; }
	.udc-journal-card { grid-template-columns: 1fr; }
	.udc-journal-card img { min-height: 430px; }
	.udc-service-catalog > article { grid-template-columns: 1fr 1fr; gap: 35px; }
	.udc-service-catalog > article > ul { grid-column: 2; }
	.udc-delivery-steps { grid-template-columns: repeat(2, 1fr); }
	.udc-project-catalog > article,
	.udc-project-catalog > article.is-reverse { grid-template-columns: 1fr; gap: 45px; }
	.udc-project-catalog > article.is-reverse .udc-catalog-image,
	.udc-project-catalog > article.is-reverse > div { grid-column: auto; grid-row: auto; }
	.udc-catalog-image { height: 80vw; }
	.udc-team-grid { grid-template-columns: repeat(2, 1fr); }
	.udc-insight-grid article.is-featured { grid-template-columns: 1fr; gap: 20px; }
	.udc-footer-main { grid-template-columns: 1fr; gap: 35px; }
	.udc-orbit-cta { width: 125px; height: 125px; }
	@keyframes udc-orbit { from { transform: rotate(0deg) translateX(62px) rotate(0deg); } to { transform: rotate(360deg) translateX(62px) rotate(-360deg); } }
	.udc-footer-details { grid-template-columns: repeat(2, 1fr); }
	.udc-footer-cursor,
	.udc-footer-interact { display: none; }
	.udc-footer.is-interactive,
	.udc-footer.is-interactive a { cursor: auto; }
}

@media (max-width: 620px) {
	body.udc-premium-site { font-size: 15px; }
	.udc-wrap { width: calc(100% - 34px); }
	.udc-brand-mark { width: 48px; height: 34px; }
	.udc-mobile-panel { padding-inline: 22px; }
	.udc-hero { min-height: 650px; }
	.udc-hero-slide[data-layout="right"] .udc-hero-copy,
	.udc-hero-slide[data-layout="center"] .udc-hero-copy {
		align-items: flex-start;
		text-align: left;
		transform: translate(-50%, -46%);
	}
	.udc-hero-copy .udc-eyebrow { margin-bottom: 22px; }
	.udc-hero h1,
	.udc-inner-hero h1 { font-size: clamp(48px, 14.3vw, 74px); line-height: .91; }
	.udc-contact .udc-inner-copy h1 { font-size: clamp(43px, 12vw, 58px); }
	.udc-hero h1 em,
	.udc-inner-hero h1 em { margin-top: 7px; }
	.udc-hero-slide[data-layout="center"] h1 em { margin-left: 0; }
	.udc-hero-intro { max-width: 90%; margin-top: 25px; font-size: 13px; }
	.udc-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 25px; }
	.udc-hero-slide[data-layout="center"] .udc-hero-intro,
	.udc-hero-slide[data-layout="center"] .udc-hero-actions { align-self: flex-start; text-align: left; }
	.udc-button { min-height: 53px; }
	.udc-hero-controls [data-udc-dot] i { width: 16px; }
	.udc-scroll-cue { display: none; }
	.udc-intro,
	.udc-page-intro { padding-block: 78px; }
	.udc-intro h2,
	.udc-page-intro h2 { font-size: 38px; }
	.udc-intro-bottom { grid-template-columns: 1fr; gap: 28px; margin-top: 35px; }
	.udc-services-band,
	.udc-projects-band,
	.udc-process,
	.udc-journal-preview,
	.udc-values { padding-block: 85px; }
	.udc-section-head { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 45px; }
	.udc-section-head h2 { font-size: 39px; }
	.udc-service-list article { grid-template-columns: 37px 1fr 25px; }
	.udc-service-list article p { font-size: 12px; }
	.udc-project-grid { grid-template-rows: repeat(3, 125vw); }
	.udc-project-card > div { right: 22px; bottom: 22px; left: 22px; }
	.udc-project-card h3 { font-size: 34px; }
	.udc-process-grid { gap: 55px; }
	.udc-process h2 { font-size: 42px; }
	.udc-journal-card img { min-height: 340px; }
	.udc-journal-card > div { min-height: 320px; padding: 28px; }
	.udc-inner-hero { height: 74svh; min-height: 620px; }
	.udc-inner-copy { bottom: 45px; }
	.udc-inner-copy > div:last-child { margin-left: 0; }
	.udc-inner-copy > div:last-child > span { display: none; }
	.udc-statement-image { min-height: 560px; }
	.udc-values-grid article { grid-template-columns: 40px 1fr; }
	.udc-values-grid article p { grid-column: 2; }
	.udc-service-catalog { padding-bottom: 85px; }
	.udc-service-catalog > article { grid-template-columns: 1fr; gap: 25px; padding-block: 42px; }
	.udc-service-catalog > article > ul { grid-column: auto; }
	.udc-delivery-steps { grid-template-columns: 1fr; }
	.udc-delivery-steps article { min-height: 220px; }
	.udc-project-catalog { padding-bottom: 90px; }
	.udc-project-catalog > article { margin-bottom: 80px; }
	.udc-catalog-image { height: 122vw; }
	.udc-team-grid { grid-template-columns: 1fr; padding-bottom: 85px; }
	.udc-team-grid article { min-height: 370px; }
	.udc-insight-grid { grid-template-columns: 1fr; padding-bottom: 90px; }
	.udc-insight-grid article.is-featured { grid-column: auto; }
	.udc-insight-grid .is-featured .udc-insight-image,
	.udc-insight-image { height: 110vw; }
	.udc-contact-grid { padding-bottom: 90px; }
	.udc-contact-form { grid-template-columns: 1fr; }
	.udc-contact-form .udc-full { grid-column: auto; }
	.udc-contact-visual { min-height: 510px; }
	.udc-project-story { padding-block: 85px; }
	.udc-footer { min-height: 980px; }
	.udc-footer-signature { right: -4vw; bottom: 13vh; font-size: clamp(100px, 31vw, 180px); }
	.udc-footer-main { padding-block: 55px 45px; }
	.udc-footer-main h2 { font-size: 45px; }
	.udc-footer-details { grid-template-columns: 1fr; gap: 28px; padding-block: 35px; }
	.udc-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.udc-char,
	[data-reveal],
	.udc-hero-slide > img,
	.udc-inner-hero > img { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
	.udc-char { filter: none !important; }
	.udc-hero-slide > img { clip-path: inset(0) !important; }
	.udc-marquee > div,
	.udc-orbit-cta::before,
	.udc-orbit-cta::after { animation: none !important; }
	.udc-footer-cursor,
	.udc-footer-interact { display: none !important; }
	.udc-footer.is-interactive,
	.udc-footer.is-interactive a { cursor: auto !important; }
}
