@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-line: rgba(240, 242, 248, 0.14);
	--ord-line-dark: rgba(9, 11, 17, 0.14);
	--ord-gutter: clamp(22px, 4.2vw, 78px);
	--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: 17px;
	line-height: 1.65;
	-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: sticky;
	top: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	min-height: 82px;
	padding: 12px var(--ord-gutter);
	background: rgba(9, 11, 17, 0.94);
	border-bottom: 1px solid var(--ord-line);
	backdrop-filter: blur(10px);
}

.ordeliva-brand {
	display: inline-flex;
	align-items: center;
	width: min(216px, 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: 14px;
}

.ordeliva-default-symbol {
	width: 34px;
	height: 41px;
	object-fit: contain;
}

.ordeliva-default-wordmark {
	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;
	white-space: nowrap;
}

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

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

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

.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: grid;
	grid-template-columns: 1.3fr 0.8fr 1fr;
	gap: clamp(36px, 7vw, 110px);
	padding: clamp(62px, 8vw, 112px) var(--ord-gutter);
	background: var(--ord-night);
	border-top: 1px solid var(--ord-line);
	color: var(--ord-steel);
}

.ordeliva-site-footer .ordeliva-default-lockup {
	margin-bottom: 28px;
}

.ordeliva-site-footer p {
	max-width: 420px;
	margin: 0;
	font-size: 15px;
}

.ordeliva-site-footer nav,
.ordeliva-footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.ordeliva-site-footer a {
	min-height: 32px;
	font-size: 15px;
}

.ordeliva-site-footer a:hover {
	color: var(--ord-cloud);
}

.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: sticky;
	top: 0;
	z-index: 100;
	display: grid !important;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	min-height: 82px;
	padding: 12px var(--ord-gutter);
	background: rgba(9, 11, 17, 0.94);
	border-bottom: 1px solid var(--ord-line);
	backdrop-filter: blur(10px);
}

.ord-el-header__logo {
	display: flex;
	align-items: center;
	gap: 14px;
	width: auto;
}

.ord-el-header__symbol {
	width: 34px;
}

.ord-el-header__symbol img {
	width: 34px;
	height: 41px;
	object-fit: contain;
}

.ord-el-header__wordmark .elementor-heading-title,
.ord-el-footer__wordmark .elementor-heading-title {
	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;
	white-space: nowrap;
}

.ord-el-header__nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: clamp(6px, 1vw, 18px);
}

.ord-el-nav-link .elementor-button,
.ord-el-header__cta .elementor-button,
.ord-el-footer__link .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-nav-link .elementor-button:hover,
.ord-el-header__cta .elementor-button:hover,
.ord-el-footer__link .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: grid !important;
	grid-template-columns: 1.3fr 0.8fr 1fr;
	gap: clamp(36px, 7vw, 110px);
	padding: clamp(62px, 8vw, 112px) var(--ord-gutter);
	background: var(--ord-night);
	border-top: 1px solid var(--ord-line);
	color: var(--ord-steel);
}

.ord-el-footer__logo {
	display: flex;
	align-items: center;
	gap: 14px;
	width: auto;
	margin-bottom: 28px;
}

.ord-el-footer__symbol {
	width: 34px;
}

.ord-el-footer__symbol img {
	width: 34px;
	height: 41px;
}

.ord-el-footer__brand .elementor-widget-text-editor,
.ord-el-footer__contact .elementor-widget-text-editor {
	max-width: 420px;
	color: var(--ord-steel);
	font-size: 15px;
}

.ord-el-footer__contact a {
	color: var(--ord-cloud);
}

.ord-el-footer__links {
	align-items: flex-start;
	gap: 2px;
}

.ord-el-footer__link .elementor-button {
	justify-content: flex-start;
	padding: 4px 0;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
}

.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.
 */
.elementor .ord-el-header__wordmark .elementor-heading-title,
.elementor .ord-el-footer__wordmark .elementor-heading-title {
	top: 3px !important;
	color: var(--ord-cloud) !important;
	font-family: "EB Garamond", serif !important;
	font-size: 25px !important;
	font-weight: 600 !important;
	letter-spacing: 0.16em !important;
	line-height: 1 !important;
}

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

.elementor .ord-el-nav-link .elementor-button:hover,
.elementor .ord-el-header__cta .elementor-button:hover,
.elementor .ord-el-footer__link .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: 1180px) {
	.ordeliva-site-header {
		grid-template-columns: 1fr auto;
	}

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

	.ord-el-header {
		grid-template-columns: 1fr auto;
	}

	.ord-el-header__nav {
		display: none;
	}

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

@media (max-width: 760px) {
	body {
		font-size: 16px;
	}

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

	.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-site-footer {
		grid-template-columns: 1fr;
	}

	.ord-el-footer {
		grid-template-columns: 1fr;
	}
}

@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;
	}
}
