@font-face {
	font-family: "EB Garamond";
	src: url("../fonts/EBGaramond-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-ExtraBold.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--ord-cobalt: #2457ff;
	--ord-night: #090b11;
	--ord-cloud: #f0f2f8;
	--ord-carbon: #11141d;
	--ord-steel: #a7adbd;
	--ord-paper: #f3f1ec;
	--ord-paper-deep: #e7e2d8;
	--ord-line: rgba(240, 242, 248, 0.14);
	--ord-line-dark: rgba(9, 11, 17, 0.14);
	--ord-gutter: clamp(20px, 4vw, 72px);
	--ord-section: clamp(88px, 10vw, 168px);
	--ord-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ord-night);
	color: var(--ord-cloud);
	font-family: "Inter", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 200;
	pointer-events: none;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

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

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

a,
button,
input,
textarea,
select {
	transition: color 260ms var(--ord-ease), background-color 260ms var(--ord-ease), border-color 260ms var(--ord-ease), transform 260ms var(--ord-ease);
}

:focus-visible {
	outline: 2px solid var(--ord-cobalt);
	outline-offset: 4px;
}

.ordeliva-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	padding: 12px 18px;
	background: var(--ord-cobalt);
	color: var(--ord-cloud);
	transform: translateY(-180%);
}

.ordeliva-skip-link:focus {
	transform: translateY(0);
}

.ordeliva-site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	gap: 36px;
	height: 74px;
	min-height: 74px;
	padding: 0 var(--ord-gutter);
	overflow: visible;
	background: rgba(9, 11, 17, 0.86);
	border-bottom: 1px solid var(--ord-line);
	backdrop-filter: blur(18px);
}

.ordeliva-brand {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
}

.ordeliva-custom-logo {
	width: 100%;
	max-height: 56px;
	object-fit: contain;
	object-position: left center;
}

.ordeliva-default-lockup {
	display: inline-flex;
	align-items: center;
	gap: 13px;
}

.ordeliva-default-symbol {
	width: 27px;
	height: 32px;
	object-fit: contain;
}

.ordeliva-default-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	transform: translateY(3px);
}

.ordeliva-default-wordmark {
	color: var(--ord-cloud);
	font-family: "EB Garamond", Georgia, serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1;
	white-space: nowrap;
}

.ordeliva-default-copy small {
	color: var(--ord-steel);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.17em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.ordeliva-nav-list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.35vw, 40px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ordeliva-nav-list > li {
	position: relative;
	display: flex;
	align-items: center;
}

.ordeliva-nav-list > li > a,
.ordeliva-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 44px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ordeliva-nav-list a:hover,
.ordeliva-nav-list a:focus-visible,
.ordeliva-header-cta:hover {
	color: var(--ord-cobalt);
}

.ordeliva-nav-list > .menu-item-has-children > a > span,
.ord-nav-menu-arrow {
	color: var(--ord-cobalt);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	transition: transform 220ms var(--ord-ease);
}

.ordeliva-nav-list > .menu-item-has-children::after,
.ord-nav-item--has-menu::after {
	content: "";
	position: absolute;
	top: 100%;
	right: -18px;
	left: -18px;
	height: 15px;
}

.ordeliva-nav-list .sub-menu,
.ord-nav-submenu {
	position: absolute;
	top: calc(100% + 15px);
	right: 0;
	z-index: 110;
	width: 340px;
	margin: 0;
	padding: 26px;
	background: rgba(17, 20, 29, 0.98);
	border: 1px solid rgba(240, 242, 248, 0.17);
	box-shadow: inset 0 3px 0 var(--ord-cobalt), 0 28px 70px rgba(6, 10, 28, 0.54);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 180ms ease, visibility 180ms ease, transform 260ms var(--ord-ease);
}

.ordeliva-nav-list .ord-menu-craft > .sub-menu {
	position: fixed;
	top: 74px;
	right: auto;
	left: 50%;
	width: min(680px, calc(100vw - 2 * var(--ord-gutter)));
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 28px;
	transform: translate(-50%, 10px);
}

.ordeliva-nav-list .sub-menu li + li,
.ord-nav-submenu--craft li + li {
	border-top: 1px solid rgba(240, 242, 248, 0.1);
}

.ordeliva-nav-list .sub-menu a {
	min-height: 48px;
	display: flex;
	align-items: center;
	color: var(--ord-steel);
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: none;
}

.ordeliva-nav-list .menu-item-has-children:hover > .sub-menu,
.ordeliva-nav-list .menu-item-has-children:focus-within > .sub-menu,
.ord-nav-item--has-menu:hover .ord-nav-submenu,
.ord-nav-item--has-menu:focus-within .ord-nav-submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.ordeliva-nav-list .ord-menu-craft:hover > .sub-menu,
.ordeliva-nav-list .ord-menu-craft:focus-within > .sub-menu {
	transform: translate(-50%, 0);
}

.ordeliva-nav-list .menu-item-has-children:hover > a > span,
.ordeliva-nav-list .menu-item-has-children:focus-within > a > span,
.ord-nav-item--has-menu:hover .ord-nav-menu-arrow,
.ord-nav-item--has-menu:focus-within .ord-nav-menu-arrow {
	transform: rotate(45deg);
}

.ord-nav-submenu--craft {
	position: fixed;
	top: 74px;
	right: auto;
	left: 50%;
	width: min(840px, calc(100vw - 2 * var(--ord-gutter)));
	display: grid;
	grid-template-columns: minmax(220px, 0.62fr) minmax(360px, 1fr);
	gap: 42px;
	padding: 28px;
	transform: translate(-50%, 10px);
}

.ord-nav-item--has-menu:hover .ord-nav-submenu--craft,
.ord-nav-item--has-menu:focus-within .ord-nav-submenu--craft {
	transform: translate(-50%, 0);
}

.ord-nav-submenu-intro {
	padding: 8px 32px 5px 4px;
	border-right: 1px solid rgba(240, 242, 248, 0.14);
}

.ord-nav-submenu-intro > span,
.ord-nav-submenu-heading {
	display: block;
	color: var(--ord-cobalt);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ord-nav-submenu-intro p {
	margin: 20px 0 0;
	color: var(--ord-steel);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.65;
	text-transform: none;
}

.ord-nav-submenu-intro > a {
	min-height: 36px;
	margin-top: 22px;
	padding-bottom: 4px;
	display: inline-flex;
	align-items: center;
	border-bottom: 1px solid rgba(240, 242, 248, 0.45);
	color: var(--ord-cloud);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ord-nav-submenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ord-nav-submenu--craft li > a {
	min-height: 50px;
	display: grid;
	grid-template-columns: 32px 1fr 18px;
	align-items: center;
	gap: 12px;
	color: var(--ord-steel);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: none;
}

.ord-nav-submenu--craft small {
	color: var(--ord-cobalt);
	font-size: 12px;
	font-weight: 700;
}

.ord-nav-submenu--craft b,
.ord-nav-submenu--compact b {
	color: var(--ord-cobalt);
	font-size: 14px;
	font-weight: 500;
	transition: transform 180ms ease;
}

.ord-nav-submenu--craft a:hover b,
.ord-nav-submenu--craft a:focus-visible b,
.ord-nav-submenu--compact a:hover b,
.ord-nav-submenu--compact a:focus-visible b {
	transform: translate(3px, -3px);
}

.ord-nav-submenu--compact .ord-nav-submenu-heading {
	margin-bottom: 17px;
}

.ord-nav-submenu--compact > a {
	min-height: 52px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-top: 1px solid rgba(240, 242, 248, 0.12);
	color: var(--ord-steel);
	font-size: 12px;
	letter-spacing: 0.03em;
	text-transform: none;
}

.ordeliva-mobile-menu {
	display: none;
}

.ordeliva-header-cta {
	justify-self: end;
}

.ordeliva-header-cta::after {
	content: "↗";
	margin-left: 12px;
	color: var(--ord-cobalt);
	font-size: 18px;
}

.ordeliva-page,
.ordeliva-entry,
.ordeliva-content-shell {
	min-height: 60vh;
}

.ordeliva-content-shell {
	padding: var(--ord-section) var(--ord-gutter);
}

.ordeliva-entry {
	max-width: 960px;
	margin: 0 auto;
}

.ordeliva-entry > h1 {
	font-size: clamp(54px, 8vw, 126px);
	line-height: 0.92;
	letter-spacing: -0.045em;
}

.ordeliva-site-footer {
	display: block;
	padding: 0 var(--ord-gutter) 30px;
	background: var(--ord-night);
	border-top: 1px solid var(--ord-line);
	color: var(--ord-steel);
}

.ordeliva-footer-main {
	padding: 78px 0 68px;
	display: grid;
	grid-template-columns: minmax(250px, 1.3fr) minmax(125px, 0.58fr) minmax(145px, 0.72fr) minmax(145px, 0.66fr) minmax(235px, 1fr);
	align-items: start;
	gap: clamp(32px, 4vw, 76px);
}

.ordeliva-footer-brand .ordeliva-default-lockup,
.ordeliva-footer-lockup {
	display: inline-flex;
	align-items: center;
	gap: 17px;
}

.ordeliva-footer-lockup img {
	width: 32px;
	height: 38px;
}

.ordeliva-footer-lockup strong {
	position: relative;
	top: 3px;
	color: var(--ord-cloud);
	font-family: "EB Garamond", Georgia, serif;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1;
}

.ordeliva-footer-brand p {
	max-width: 330px;
	margin: 25px 0 0;
	color: var(--ord-steel);
	font-size: 14px;
	line-height: 1.65;
}

.ordeliva-footer-project-link {
	width: max-content;
	min-height: 44px !important;
	margin-top: 30px;
	display: inline-flex;
	align-items: center;
	gap: 28px;
	border-bottom: 1px solid rgba(240, 242, 248, 0.46);
	color: var(--ord-cloud);
	font-size: 12px !important;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.ordeliva-footer-project-link span {
	color: var(--ord-cobalt);
	font-size: 16px;
}

.ordeliva-footer-project-link:hover span {
	transform: translate(3px, -3px);
}

.ordeliva-footer-heading {
	display: block;
	margin-bottom: 25px;
	color: var(--ord-cobalt);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ordeliva-footer-main nav,
.ordeliva-footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	color: var(--ord-steel);
	font-size: 13px;
	line-height: 1.45;
}

.ordeliva-footer-main nav a,
.ordeliva-footer-contact > a {
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	font-size: 13px;
}

.ordeliva-footer-main nav a:hover,
.ordeliva-footer-main nav a:focus-visible,
.ordeliva-footer-contact > a:hover,
.ordeliva-footer-contact > a:focus-visible {
	color: var(--ord-cloud);
	transform: translateX(3px);
}

.ordeliva-footer-service {
	margin-top: 18px;
	color: #747b8d;
	font-size: 12px;
	letter-spacing: 0.04em;
}

.ordeliva-footer-email-status {
	margin: 8px 0 4px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	overflow-wrap: anywhere;
}

.ordeliva-footer-email-status strong {
	color: var(--ord-cloud);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.ordeliva-footer-email-status small {
	color: var(--ord-cobalt);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.11em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ordeliva-social-links {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ordeliva-social-links > a,
.ordeliva-social-links > span {
	width: 38px;
	height: 38px;
	min-height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(240, 242, 248, 0.24);
	background: rgba(240, 242, 248, 0.04);
	color: var(--ord-steel);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.ordeliva-social-links > a:hover {
	border-color: var(--ord-cobalt);
	background: var(--ord-cobalt);
	color: var(--ord-cloud);
	transform: translateY(-3px);
}

.ordeliva-social-links > span {
	opacity: 0.68;
}

.ordeliva-footer-bottom {
	min-height: 64px;
	padding-top: 22px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 28px;
	border-top: 1px solid rgba(240, 242, 248, 0.13);
	color: #747b8d;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ordeliva-footer-bottom nav {
	display: flex;
	flex-direction: row;
	gap: 25px;
}

.ordeliva-footer-bottom > a:last-child {
	justify-self: end;
	text-align: right;
}

.ordeliva-footer-bottom a:hover,
.ordeliva-footer-bottom a:focus-visible {
	color: var(--ord-cloud);
}

#how-we-work {
	scroll-margin-top: 106px;
}

.ordeliva-error {
	min-height: 72vh;
	padding: var(--ord-section) var(--ord-gutter);
}

.ordeliva-error h1 {
	max-width: 900px;
	font-size: clamp(48px, 8vw, 118px);
	line-height: 0.92;
	letter-spacing: -0.04em;
}

.ord-el-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	display: grid !important;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	gap: 36px;
	width: 100%;
	height: 74px;
	min-height: 74px;
	padding: 0 var(--ord-gutter);
	overflow: visible !important;
	background: rgba(9, 11, 17, 0.86);
	border-bottom: 1px solid var(--ord-line);
	backdrop-filter: blur(18px);
}

.ord-el-header.e-con,
.ord-el-header > .e-con-inner,
.elementor-location-header,
.elementor-location-header > .elementor,
.elementor-location-header .elementor-element {
	overflow: visible;
}

.ord-el-header__logo {
	display: grid !important;
	grid-template-columns: 27px minmax(0, auto);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 13px;
	row-gap: 2px;
	width: max-content !important;
	max-width: 100%;
	overflow: visible !important;
}

.ord-el-header__symbol {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 27px !important;
	align-self: center;
}

.ord-el-header__symbol img {
	width: 27px !important;
	height: 32px !important;
	object-fit: contain;
}

.ord-el-header__wordmark,
.ord-el-header__descriptor {
	grid-column: 2;
	min-width: 0;
	width: max-content !important;
}

.ord-el-header__wordmark .elementor-heading-title {
	color: var(--ord-cloud);
	font-family: "EB Garamond", Georgia, serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1;
	white-space: nowrap;
}

.ord-el-header__descriptor .elementor-heading-title {
	color: var(--ord-steel);
	font-family: "Inter", system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.17em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.ord-el-header__navigation {
	min-width: 0;
	width: auto !important;
	justify-self: center;
	overflow: visible !important;
}

.ord-el-header__navigation .elementor-widget-container {
	display: block;
	overflow: visible !important;
}

.ord-el-header__cta .elementor-button {
	min-height: 44px;
	padding: 12px 14px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--ord-cloud);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ord-el-header__cta .elementor-button:hover {
	background: transparent;
	color: var(--ord-cobalt);
}

.ord-el-header__cta {
	justify-self: end;
}

.ord-el-header__cta .elementor-button::after {
	content: "↗";
	margin-left: 12px;
	color: var(--ord-cobalt);
	font-size: 18px;
}

.ord-el-footer {
	display: block !important;
	padding: 0 var(--ord-gutter) 30px;
	background: var(--ord-night);
	border-top: 1px solid var(--ord-line);
	color: var(--ord-steel);
}

.ord-el-footer__markup,
.ord-el-footer__markup .elementor-widget-container {
	width: 100%;
}

.ordeliva-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	background: var(--ord-cobalt);
	color: var(--ord-cloud);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Elementor design system */
.elementor {
	--e-global-color-primary: var(--ord-cobalt);
	--e-global-color-secondary: var(--ord-carbon);
	--e-global-color-text: var(--ord-cloud);
	--e-global-color-accent: var(--ord-cobalt);
	font-family: "Inter", system-ui, sans-serif;
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4 {
	margin: 0;
}

.ord-hero,
.ord-page-hero {
	position: relative;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-end;
	min-height: min(880px, calc(100dvh - 82px));
	padding: clamp(110px, 12vw, 190px) var(--ord-gutter) clamp(70px, 8vw, 118px);
	overflow: hidden;
	isolation: isolate;
	background: var(--ord-carbon);
}

.ord-hero::after,
.ord-page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(9, 11, 17, 0.86) 0%, rgba(9, 11, 17, 0.42) 55%, rgba(9, 11, 17, 0.12) 100%);
	pointer-events: none;
}

.ord-hero > .e-con-inner,
.ord-page-hero > .e-con-inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: inherit;
	padding: 0;
}

.ord-kicker .elementor-heading-title {
	font-size: clamp(13px, 1vw, 16px);
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--ord-cloud);
}

.ord-display .elementor-heading-title,
.ord-page-title .elementor-heading-title {
	max-width: 1180px;
	font-size: clamp(58px, 8.7vw, 148px);
	font-weight: 800;
	letter-spacing: -0.052em;
	line-height: 0.88;
	color: var(--ord-cloud);
}

.ord-page-title .elementor-heading-title {
	font-size: clamp(56px, 7.6vw, 126px);
}

.ord-lede {
	max-width: 700px;
	color: var(--ord-cloud);
	font-size: clamp(18px, 1.45vw, 24px);
	line-height: 1.48;
}

.ord-lede p {
	margin: 0;
}

.ord-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.ord-button .elementor-button {
	min-height: 54px;
	padding: 17px 25px;
	border-radius: 0;
	background: var(--ord-cobalt);
	color: var(--ord-cloud);
	border: 1px solid var(--ord-cobalt);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ord-button .elementor-button:hover {
	background: var(--ord-cloud);
	border-color: var(--ord-cloud);
	color: var(--ord-night);
	transform: translateY(-2px);
}

.ord-button--ghost .elementor-button {
	background: rgba(9, 11, 17, 0.28);
	border-color: rgba(240, 242, 248, 0.5);
	color: var(--ord-cloud);
}

.ord-section {
	padding: var(--ord-section) var(--ord-gutter);
	background: var(--ord-night);
	color: var(--ord-cloud);
}

.ord-section--light {
	background: var(--ord-cloud);
	color: var(--ord-night);
}

.ord-section--cobalt {
	background: var(--ord-cobalt);
	color: var(--ord-cloud);
}

.ord-section > .e-con-inner,
.ord-section > .elementor-element {
	width: 100%;
	max-width: 1560px;
	margin-right: auto;
	margin-left: auto;
}

.ord-section-heading .elementor-heading-title {
	max-width: 1180px;
	font-size: clamp(44px, 6.1vw, 104px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.93;
	color: currentColor;
}

.ord-section-heading--serif .elementor-heading-title {
	font-family: "EB Garamond", Georgia, serif;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 0.96;
}

.ord-copy {
	max-width: 760px;
	color: currentColor;
	font-size: clamp(17px, 1.2vw, 21px);
	line-height: 1.7;
}

.ord-copy p:last-child {
	margin-bottom: 0;
}

.ord-grid {
	display: grid !important;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1px;
	background: var(--ord-line);
	border: 1px solid var(--ord-line);
}

.ord-section--light .ord-grid {
	background: var(--ord-line-dark);
	border-color: var(--ord-line-dark);
}

.ord-card {
	grid-column: span 4;
	min-width: 0;
	padding: clamp(30px, 4vw, 64px);
	background: var(--ord-carbon);
	color: var(--ord-cloud);
}

.ord-section--light .ord-card {
	background: var(--ord-cloud);
	color: var(--ord-night);
}

.ord-card--wide {
	grid-column: span 6;
}

.ord-card--full {
	grid-column: span 12;
}

.ord-card .elementor-heading-title {
	font-size: clamp(26px, 2.2vw, 38px);
	font-weight: 600;
	line-height: 1.1;
	color: currentColor;
}

.ord-card .elementor-widget-text-editor {
	color: var(--ord-steel);
	font-size: 16px;
	line-height: 1.65;
}

.ord-section--light .ord-card .elementor-widget-text-editor {
	color: #515767;
}

.ord-image {
	position: relative;
	overflow: hidden;
	background: var(--ord-carbon);
}

.ord-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 760ms var(--ord-ease);
}

.ord-image:hover img {
	transform: scale(1.025);
}

.ord-image::after {
	content: "ORDELIVA";
	position: absolute;
	top: 18px;
	right: 20px;
	color: var(--ord-cloud);
	font-family: "EB Garamond", Georgia, serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-shadow: 0 1px 8px rgba(9, 11, 17, 0.55);
	pointer-events: none;
}

.ord-media-ledger {
	display: grid !important;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1px;
	background: var(--ord-line);
}

.ord-media-card {
	grid-column: span 6;
	background: var(--ord-carbon);
}

.ord-media-card .elementor-widget-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.ord-media-card__copy {
	padding: clamp(26px, 3.2vw, 52px);
}

.ord-media-card__copy .elementor-heading-title {
	font-size: clamp(30px, 3vw, 52px);
	line-height: 1.02;
	letter-spacing: -0.035em;
	color: var(--ord-cloud);
}

.ord-media-card__copy .elementor-widget-text-editor {
	color: var(--ord-steel);
}

.ord-index-list {
	border-top: 1px solid var(--ord-line);
}

.ord-index-row {
	display: grid;
	grid-template-columns: 70px 1.2fr 1fr auto;
	align-items: center;
	gap: clamp(18px, 3vw, 56px);
	min-height: 112px;
	padding: 22px 0;
	border-bottom: 1px solid var(--ord-line);
}

.ord-index-row .elementor-widget-text-editor {
	margin: 0;
	color: var(--ord-steel);
}

.ord-index-row .elementor-heading-title {
	font-size: clamp(24px, 2.2vw, 38px);
	color: var(--ord-cloud);
}

.ord-cta {
	display: grid !important;
	grid-template-columns: minmax(0, 1.4fr) auto;
	align-items: end;
	gap: 40px;
}

.ord-cta .ord-section-heading .elementor-heading-title {
	font-size: clamp(50px, 7.4vw, 126px);
}

.ord-contact-route {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--ord-line);
}

.ord-contact-route > .e-con {
	padding: clamp(32px, 4vw, 68px);
	background: var(--ord-carbon);
}

.ord-contact-route a {
	color: var(--ord-cloud);
}

.ord-contact-route a:hover {
	color: var(--ord-cobalt);
}

.ord-legal {
	max-width: 960px;
}

.ord-legal h2 {
	margin-top: 2.4em;
	color: var(--ord-cloud);
	font-size: 30px;
}

.ord-legal p,
.ord-legal li {
	color: var(--ord-steel);
}

/*
 * Elementor 4 compatibility.
 * Elementor kits can attach global colours, typography and button fills after
 * the theme stylesheet. These scoped declarations preserve the approved
 * ORDELIVA identity without changing the editor's global defaults.
 */
body .elementor .ord-el-header.e-con {
	position: fixed !important;
	inset: 0 0 auto !important;
	z-index: 1000 !important;
	width: 100% !important;
	height: 74px !important;
	min-height: 74px !important;
	padding: 0 var(--ord-gutter) !important;
	gap: 36px !important;
	overflow: visible !important;
	background: rgba(9, 11, 17, 0.86) !important;
	border-bottom: 1px solid var(--ord-line) !important;
	backdrop-filter: blur(18px) !important;
}

body .elementor .ord-el-header__logo.e-con {
	width: max-content !important;
	height: 40px !important;
	min-height: 40px !important;
	padding: 0 !important;
	column-gap: 13px !important;
	row-gap: 2px !important;
	align-self: center !important;
	align-content: center !important;
}

body .elementor .ord-el-header__navigation,
body .elementor .ord-el-header__navigation .elementor-widget-container {
	height: auto !important;
	min-height: 0 !important;
	overflow: visible !important;
}

body .elementor .ord-el-header__navigation,
body .elementor .ord-el-header__cta {
	align-self: center !important;
}

.elementor .ord-el-header__cta .elementor-button-icon {
	display: none !important;
}

.elementor .ord-el-header__wordmark .elementor-heading-title {
	color: var(--ord-cloud) !important;
	font-family: "EB Garamond", serif !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	letter-spacing: 0.16em !important;
	line-height: 1 !important;
}

.elementor .ord-el-header__descriptor .elementor-heading-title {
	color: var(--ord-steel) !important;
	font-family: "Inter", system-ui, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.17em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.elementor .ord-el-header__cta .elementor-button {
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--ord-cloud) !important;
	box-shadow: none !important;
}

.elementor .ord-el-header__cta .elementor-button:hover {
	background: transparent !important;
	color: var(--ord-cobalt) !important;
}

.elementor .ord-kicker .elementor-heading-title,
.elementor .ord-display .elementor-heading-title,
.elementor .ord-page-title .elementor-heading-title {
	color: var(--ord-cloud) !important;
}

.elementor .ord-display .elementor-heading-title,
.elementor .ord-page-title .elementor-heading-title {
	font-weight: 800 !important;
	letter-spacing: -0.052em !important;
	line-height: 0.88 !important;
}

.elementor .ord-lede,
.elementor .ord-lede p {
	color: var(--ord-cloud) !important;
}

.elementor .ord-button .elementor-button {
	border-color: var(--ord-cobalt) !important;
	border-radius: 0 !important;
	background: var(--ord-cobalt) !important;
	color: var(--ord-cloud) !important;
	box-shadow: none !important;
}

.elementor .ord-button .elementor-button:hover {
	border-color: var(--ord-cloud) !important;
	background: var(--ord-cloud) !important;
	color: var(--ord-night) !important;
}

.elementor .ord-button--ghost .elementor-button {
	border-color: rgba(240, 242, 248, 0.5) !important;
	background: rgba(9, 11, 17, 0.28) !important;
	color: var(--ord-cloud) !important;
}

.elementor .ord-section-heading .elementor-heading-title,
.elementor .ord-card .elementor-heading-title {
	color: currentColor !important;
}

.elementor .ord-media-card__copy .elementor-heading-title,
.elementor .ord-index-row .elementor-heading-title {
	color: var(--ord-cloud) !important;
}

@media (max-width: 1280px) {
	.ordeliva-footer-main {
		grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(125px, 0.7fr));
	}

	.ordeliva-footer-contact {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(125px, 0.7fr));
		align-items: center;
		gap: 12px clamp(32px, 4vw, 76px);
		padding-top: 34px;
		border-top: 1px solid rgba(240, 242, 248, 0.12);
	}

	.ordeliva-footer-contact .ordeliva-footer-heading,
	.ordeliva-footer-contact .ordeliva-footer-email-status,
	.ordeliva-footer-contact .ordeliva-footer-service,
	.ordeliva-footer-contact .ordeliva-social-links {
		margin: 0;
	}
}

@media (max-width: 1180px) {
	.ordeliva-site-header {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.ordeliva-primary-nav {
		display: none;
	}

	.ord-el-header {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.ord-el-header__navigation {
		display: block !important;
		width: auto !important;
		justify-self: end;
	}

	.ordeliva-mobile-menu {
		position: static;
		display: block;
	}

	.ordeliva-mobile-menu > summary {
		min-width: 74px;
		min-height: 44px;
		padding: 0 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--ord-cloud);
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		cursor: pointer;
		list-style: none;
	}

	.ordeliva-mobile-menu > summary::-webkit-details-marker {
		display: none;
	}

	.ordeliva-mobile-menu > summary::after {
		content: "+";
		margin-left: 10px;
		color: var(--ord-cobalt);
		font-size: 17px;
		font-weight: 500;
		transition: transform 220ms var(--ord-ease);
	}

	.ordeliva-mobile-menu[open] > summary::after {
		transform: rotate(45deg);
	}

	.ordeliva-mobile-menu:not([open]) > nav {
		display: none;
	}

	.ordeliva-mobile-menu > nav {
		position: fixed;
		top: 74px;
		right: 0;
		left: 0;
		z-index: 120;
		width: 100vw;
		max-width: none;
		max-height: calc(100dvh - 74px);
		padding: 30px var(--ord-gutter) 36px;
		display: grid;
		grid-template-columns: 1.35fr 1fr 1fr;
		align-items: start;
		gap: 24px;
		overflow-y: auto;
		background: rgba(9, 11, 17, 0.985);
		border-top: 1px solid var(--ord-line);
		border-bottom: 3px solid var(--ord-cobalt);
		box-shadow: 0 30px 70px rgba(6, 10, 28, 0.55);
	}

	body.ord-mobile-menu-open {
		overflow: hidden;
	}

	.ordeliva-mobile-menu-group strong {
		display: block;
		padding: 4px 18px 14px;
		color: var(--ord-cobalt);
		font-size: 12px;
		letter-spacing: 0.16em;
		text-transform: uppercase;
	}

	.ordeliva-mobile-menu-group a {
		min-height: 46px;
		padding: 0 18px;
		display: flex;
		align-items: center;
		border-top: 1px solid rgba(240, 242, 248, 0.1);
		color: var(--ord-steel);
		font-size: 13px;
	}

	.ordeliva-mobile-nav-list,
	.ordeliva-mobile-menu > nav > .ordeliva-nav-list {
		grid-column: 1 / -1;
		margin: 0;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 28px;
		list-style: none;
	}

	.ordeliva-mobile-nav-list ul,
	.ordeliva-mobile-menu > nav > .ordeliva-nav-list ul {
		position: static;
		width: auto;
		margin: 12px 0 0;
		padding: 0;
		display: block;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		list-style: none;
	}

	.ordeliva-mobile-nav-list > li > a,
	.ordeliva-mobile-menu > nav > .ordeliva-nav-list > li > a {
		color: var(--ord-cobalt);
		font-size: 12px;
		font-weight: 800;
		letter-spacing: 0.16em;
		text-transform: uppercase;
	}

	.ordeliva-mobile-nav-list li a,
	.ordeliva-mobile-menu > nav > .ordeliva-nav-list li a {
		min-height: 44px;
		display: flex;
		align-items: center;
		color: var(--ord-steel);
		font-size: 13px;
		letter-spacing: 0.03em;
		text-transform: none;
	}

	.ord-card {
		grid-column: span 6;
	}
}

@media (max-width: 760px) {
	body .elementor .ord-el-header.e-con {
		height: 66px !important;
		min-height: 66px !important;
	}

	body {
		font-size: 16px;
	}

	.ordeliva-site-header {
		height: 66px;
		min-height: 66px;
	}

	.ord-el-header {
		height: 66px;
		min-height: 66px;
	}

	.ordeliva-brand {
		width: auto;
	}

	.ordeliva-header-cta {
		font-size: 10px;
	}

	.ord-hero,
	.ord-page-hero {
		min-height: calc(100dvh - 72px);
	}

	.ord-card,
	.ord-card--wide,
	.ord-media-card {
		grid-column: span 12;
	}

	.ord-index-row {
		grid-template-columns: 44px 1fr;
		gap: 12px;
		min-height: 94px;
	}

	.ord-index-row > :nth-child(3),
	.ord-index-row > :nth-child(4) {
		grid-column: 2;
	}

	.ord-cta,
	.ord-contact-route {
		grid-template-columns: 1fr;
	}

	.ordeliva-mobile-menu > nav {
		top: 66px;
		max-height: calc(100dvh - 66px);
		grid-template-columns: 1fr 1fr;
	}

	.ordeliva-mobile-menu-group--craft {
		grid-row: span 2;
	}

	.ordeliva-mobile-nav-list,
	.ordeliva-mobile-menu > nav > .ordeliva-nav-list {
		grid-template-columns: 1fr 1fr;
	}

	.ordeliva-footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 52px 30px;
		padding: 68px 0 58px;
	}

	.ordeliva-footer-brand,
	.ordeliva-footer-contact {
		grid-column: 1 / -1;
	}

	.ordeliva-footer-contact {
		display: flex;
		padding-top: 38px;
	}

	.ordeliva-footer-contact .ordeliva-footer-heading {
		margin-bottom: 17px;
	}

	.ordeliva-footer-contact .ordeliva-footer-service {
		margin-top: 18px;
	}

	.ordeliva-footer-contact .ordeliva-social-links {
		margin-top: 16px;
	}

	.ordeliva-footer-bottom {
		grid-template-columns: 1fr auto;
		gap: 18px;
	}

	.ordeliva-footer-bottom > a:last-child {
		display: none;
	}
}

@media (max-width: 560px) {
	.ordeliva-site-header,
	.ord-el-header {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.ordeliva-header-cta,
	.ord-el-header__cta {
		display: none;
	}

	.ordeliva-mobile-menu > nav,
	.ordeliva-mobile-nav-list,
	.ordeliva-mobile-menu > nav > .ordeliva-nav-list {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.ordeliva-mobile-menu > nav {
		padding: 24px 22px 34px;
	}

	.ordeliva-mobile-menu-group--craft {
		grid-row: auto;
	}

	.ordeliva-site-footer,
	.ord-el-footer {
		padding-inline: 22px;
	}

	.ordeliva-footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 52px 26px;
	}

	.ordeliva-footer-column--craft {
		grid-row: span 2;
	}

	.ordeliva-footer-main nav a,
	.ordeliva-footer-contact > a {
		min-height: 44px;
	}

	.ordeliva-footer-bottom {
		min-height: 90px;
		padding: 22px 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

@media (max-width: 420px) {
	.ordeliva-default-copy small,
	.ord-el-header__descriptor {
		display: none;
	}
}

body.admin-bar .ordeliva-site-header,
body.admin-bar .ord-el-header {
	top: 32px !important;
}

@media (max-width: 782px) {
	body.admin-bar .ordeliva-site-header,
	body.admin-bar .ord-el-header {
		top: 46px !important;
	}
}

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

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