/* ==========================================================================
   One Destination — standalone landing page
   Hand-authored plain CSS. Not part of the Parcel/SCSS build.
   ========================================================================== */
:root {
	--font-display: 'Phosphate', Impact, 'Arial Narrow Bold', sans-serif;
	--font-heading: 'Oswald', sans-serif;
	--font-body: 'Inter', sans-serif;

	--core-1: #ffffff;
	--core-2: #f4e3c9;
	--core-3: #c9a257;
	--core-4: #0b1729;
	--core-5: #162d4f;
	--hero-bg: #fef3e6;

	--brand-fluro: #0088ff;
	--brand-populate: #cb30e0;
	--brand-moonraker: #ff8d28;

	--container: 1680px;
	//--container: 1280px;
	--container-sm: 1440px;
	--gutter: 24px;
}

@media (min-width: 640px) {
	:root {
		--gutter: 32px;
	}
}

/* --------------------------------------------------------------------------
   Fonts (self-hosted, same files the rest of the theme uses — referenced
   relatively since this stylesheet lives in page-templates/, not the theme
   root).
   -------------------------------------------------------------------------- */
@font-face {
	   font-family: 'Phosphate';
	   font-style: normal;
	   font-weight: 400;
	   font-display: swap;
	   src: url('../fonts/phosphate-solid.woff2') format('woff2'),
		   url('../fonts/phosphate-solid.woff') format('woff');
   }

@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/oswald-v49-latin-700.woff2') format('woff2'),
		url('../fonts/oswald-v49-latin-700.woff') format('woff');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-v12-latin-regular.woff2') format('woff2'),
		url('../fonts/inter-v12-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/inter-v12-latin-700.woff2') format('woff2'),
		url('../fonts/inter-v12-latin-700.woff') format('woff');
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
.one-destination,
.one-destination *,
.one-destination *::before,
.one-destination *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* This stylesheet only ever loads on the One Destination template, so it's
   safe to set this directly on html rather than scoping it. */
html {
	scroll-behavior: smooth;
}

html.noscroll {
	overflow: hidden;
}

body.noscroll {
	overflow: visible;
	height: 100%;
}

.one-destination {
	background: var(--core-4);
	color: var(--core-1);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.4;
	overflow-x: hidden;
}

.one-destination img {
	display: block;
	/* max-width: 100%; */
}

.one-destination ul {
	list-style: none;
}

.one-destination a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.one-destination .container,
.one-destination .container-sm {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.one-destination .container-sm {
	max-width: var(--container-sm);
}

.one-destination main {
	overflow-x: hidden;	
}

.one-destination section {
	padding-block: 60px;
	position: relative;
}

.one-destination .eyebrow {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 20px;
	color: var(--core-4);
}

.one-destination h1,
.one-destination h2,
.one-destination h3,
.one-destination h4 {
	font-family: var(--font-display);
	text-transform: uppercase;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1;
}

.one-destination h2 {
	font-size: 28px;
}

.one-destination h3 {
	font-size: 22px;
}

.one-destination h4 {
	font-size: 20px;
}

@media (min-width: 960px) {
	.one-destination section {
		padding-block: 120px;
	}
	
	.one-destination h2 {
		font-size: 56px;
	}

	.one-destination h3 {
		font-size: 36px;
	}
	
	.one-destination .eyebrow {
		font-size: 24px;
	}	
}

.one-destination .gold {
	color: var(--core-3);
}

.anchor {
	display: block;
	position: relative;
	top: -88px;
	visibility: hidden;		
}

@media (min-width: 960px) {
	.anchor {
		top: -96px;	
	}	
}

.od-frame {
	--frame-colour: var(--core-3);
	--frame-bg: var(--core-4);
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.od-frame::after {
	border: 3px solid var(--frame-colour);
	border-radius: 30px;
	content: '';
	height: 100%;
	position: absolute;
	inset: 0;
	pointer-events: none;
	width: 100%;	
	z-index: 1;
}

.od-frame__top,
.od-frame__btm {
	position: absolute;
	inset: -3px;
	height: 33px;
	width: calc(100% + 6px);
	pointer-events: none;
	z-index: 2;
}

.od-frame__btm {
	top: auto;
	bottom: -3px;
}

.od-frame__top::before,
.od-frame__top::after,
.od-frame__btm::before,
.od-frame__btm::after {
	content: '';
	background: var(--frame-bg);
	position: absolute;
	height: 30px;
	width: 30px;
}

.od-frame__top::before {
	top: 0;
	left: 0;
	border-right: 3px solid var(--frame-colour);
	border-bottom: 3px solid var(--frame-colour);
	border-radius: 0 0 100% 0;

}

.od-frame__top::after {
	top: 0;
	right: 0;
	border-left: 3px solid var(--frame-colour);
	border-bottom: 3px solid var(--frame-colour);
	border-radius: 0 0 0 100%;
}

.od-frame__btm::before {
	bottom: 0;
	left: 0;
	border-right: 3px solid var(--frame-colour);
	border-top: 3px solid var(--frame-colour);
	border-radius: 0 100% 0 0;
}

.od-frame__btm::after {
	right: 0;
	bottom: 0;
	border-left: 3px solid var(--frame-colour);
	border-top: 3px solid var(--frame-colour);
	border-radius: 100% 0 0 0;
}

.animate-up {
	opacity: 0;
	backface-visibility: hidden;
	will-change: transform, opacity;
}

.no-js .animate-up {
	opacity: 1;
	backface-visibility: visible;
}

.fadeIn {
	animation-name: fadeIn;
	animation-duration: 1.0s;
	animation-fill-mode: both;	
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

.fadeUp {
	animation-name: fadeUp;
	animation-duration: 1.0s;
	animation-fill-mode: both;	
}

@keyframes fadeUp {
	0% {
		opacity:0;
		transform: translateY(20px);
	}
	
	100% {
		opacity:1;
		transform: translateY(0);
	}
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.one-destination .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 8px;
	border: 3px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.one-destination .btn:hover {
	transform: translateY(-2px);
}

/* Inlined icon SVGs (e.g. the "See More" chevron, injected via file_get_contents
   in the template) carry width="100%" height="100%" from their Figma export,
   meant to fill a sized wrapper that doesn't exist here — without a constraint
   they blow up to fill the whole button and swallow the label. */
.one-destination .btn svg {
	width: 16px;
	height: auto;
	flex-shrink: 0;
}

.one-destination .btn--gold {
	background: var(--core-3);
	color: var(--core-4);
}

.one-destination .btn--outline {
	background: transparent;
	border-color: var(--core-3);
	color: var(--core-3);
}

.one-destination .btn--navy {
	background: var(--core-4);
	color: var(--core-1);
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.od-nav {
	position: sticky;
	top: 0;
	z-index: 99;
	padding: 20px var(--gutter);
	background: var(--core-4);
	box-shadow: 0 4px 4px rgba(201, 162, 87, 0.25);
	transition: box-shadow 0.2s ease;
	transition-delay: 0s;
	animation: fadeIn 0.5s ease 0s both;
}

.od-nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-inline: auto;
	max-width: var(--container);
	width: 100%;
}

.od-nav__links {
	display: none;
}

.od-nav__toggle {
	display: flex;
	align-items: center;
	margin: 0 0 0 10px;
	position: relative;
	text-align: right;
}

.menu-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	height: 16px;
	line-height: 1;
	margin: 0;
	position: relative;
	text-align: right;		
	width: 24px;			
}

.menu-btn span {
	background: var(--core-1);		
	display: block;
	height: 2px;
	opacity: 1;
	position: absolute;
	left: 0;
	top: 0;
	transform: rotate(0deg);
	transition: all 0.25s ease-in-out;
	width: 100%;	
}

.menu-btn span:nth-child(2),
.menu-btn span:nth-child(3) {
	top: 7px;
}

.menu-btn span:nth-child(4) {
	top: 14px;
}

.mobile-nav {
	background: var(--core-4);
	display: flex;
	flex-direction: column;
	height: 100vh;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	visibility: hidden;
	width: 100%;
	z-index: 98;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	transition-delay: 0s;
	
	@supports (height: 100dvh) {
		height: 100dvh;
	}
}	
	
.mobile-nav .nav-top {
	margin: 0 auto;
	opacity: 0;
	padding-top: calc(var(--gutter) + 88px);
	width: 100%;
	transform: translateY(40px);
	transition: all 0.2s ease;					
}
	
.mobile-nav ul {
	list-style: none;
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--gutter);
	width: 100%;
}			
	
.mobile-nav ul li {
	margin: 0;
	padding: 0;
	text-align: right;
}
		
.mobile-nav a {
	color: var(--core-1);
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-display);
	font-size: 36px;			
	font-weight: 400;
	line-height: 1;
	margin: 16px 0 0;	
	padding: 0;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}
				
.mobile-nav a:hover {
	color: var(--core-3);				
}
			
.mobile-nav li:first-child a {
	margin-top: 0;			
}

.mobile-nav.is-visible {
	opacity: 1;
	overflow-y: auto;
	pointer-events: auto;
	-webkit-overflow-scrolling: touch;		
	visibility: visible;
	transition-delay: 0s;
}

.mobile-nav.is-visible::-webkit-scrollbar {
	display: none;
}

.mobile-nav.is-visible .nav-top {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;		
}

header.open .menu-btn span:nth-child(1),
header.open .menu-btn span:nth-child(4) {
	left: 50%;
	width: 0;			
}
			
header.open .menu-btn span:nth-child(2) {
	transform: rotate(45deg);
}
			
header.open .menu-btn span:nth-child(3) {
	transform: rotate(-45deg);
}

header.open.od-nav {
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1);
	//box-shadow: 0 4px 4px rgba(201, 162, 87, 0.25);
}

@media (min-width: 960px) {
	.od-nav {
		padding: 24px var(--gutter);
	}
	
	.od-nav-wrap {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		gap: 32px;
	}	

	.od-nav__links {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 32px;
		font-family: var(--font-body);
		font-size: 16px;
		font-weight: 700;
		grid-column: 2;
	}

	.od-nav__links a:hover {
		color: var(--core-3);
	}

	.od-nav__cta {
		grid-column: 3;
		justify-self: end;
	}

	.od-nav__toggle {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.od-hero {
	background: var(--hero-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 88px);
	overflow: hidden;
	padding-block: 0;
	position: relative;
	text-align: center;
	width: 100%;
	animation: fadeIn 0.5s ease 0.1s both;
}

.od-hero__clouds,
.od-hero__bg {
	display: flex;
	justify-content: center;
	height: 100%;
	width: 100%;
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.od-hero__clouds {
	z-index: 2;
}

.od-hero__clouds img,
.od-hero__bg img {
	display: block;
	width: auto;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	will-change: transform;
}

.od-hero__clouds img {
	transform: translateX(0);
}

.od-hero__bg img {
	transform: translateY(0);
}

.od-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	position: relative;
	z-index: 3;
}

.od-hero__lockup {
	height: auto;
	width: 100%;
	max-width: 100%;
	animation: fadeUp 0.5s ease 0.2s both;
}

.od-hero__tagline-wrap {
	color: var(--core-4);
	font-family: var(--font-display);
	font-size: 24px;
	line-height: 1.1;
	position: relative;
	display: inline-flex;
	justify-content: center;	
	align-items: center;
	margin-inline: auto;
	max-width: 320px;
	overflow: hidden;
	padding: 28px;
	text-align: center;
	width: auto;
	/* animation: fadeUp 0.5s ease 0.3s both; */
}

.od-tagline-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.od-tagline-bg::before,
.od-tagline-bg::after {
	content: '';
	position: absolute;
	width: 60%;
	height: 60%;
	background-image: url('../img/one-destination/tagline-bg.png');
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.od-tagline-bg--top::before {
	top: 0;
	left: 0;
	background-position: left top;
}

.od-tagline-bg--top::after {
	top: 0;
	right: 0;
	background-position: left top;
	transform: scaleX(-1);
}

.od-tagline-bg--bottom::before {
	left: 0;
	bottom: 0;
	background-position: left top;
	transform: scaleY(-1);
}

.od-tagline-bg--bottom::after {
	right: 0;
	bottom: 0;
	background-position: left top;
	transform: scale(-1);
}

.od-hero__tagline {
	position: relative;
	z-index: 1;
}

.od-hero__ctas {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	width: 100%;
	max-width: 320px;
	padding: 24px;
	position: relative;
	z-index: 1;
	--cutout: 16px;
	/* animation: fadeUp 0.5s ease 0.4s both; */
}

.od-hero__ctas::after {
	background: var(--core-4);
	border: 3px solid var(--core-3);
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	
	clip-path: polygon(
		0 var(--cutout),
		var(--cutout) var(--cutout),
		var(--cutout) 0,
		calc(100% - var(--cutout)) 0,
		calc(100% - var(--cutout)) var(--cutout),
		100% var(--cutout),
		100% calc(100% - var(--cutout)),
		calc(100% - var(--cutout)) calc(100% - var(--cutout)),
		calc(100% - var(--cutout)) 100%,
		var(--cutout) 100%,
		var(--cutout) calc(100% - var(--cutout)),
		0 calc(100% - var(--cutout))
	);
}

.od-ctas__corners {
	position: absolute;
	left: 0;
	right: 0;
	height: var(--cutout);
	z-index: 1;
	pointer-events: none;
}

.od-ctas__corners--top {
	top: 0;
}

.od-ctas__corners--bottom {
	bottom: 0;
}

.od-ctas__corners::before,
.od-ctas__corners::after {
	content: '';
	position: absolute;
	width: var(--cutout);
	height: var(--cutout);
	background-image: url('../img/one-destination/ctas-corner.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.od-ctas__corners--top::before {
	top: 0;
	left: 0;
}

.od-ctas__corners--top::after {
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

.od-ctas__corners--bottom::after {
	right: 0;
	bottom: 0;
	transform: rotate(180deg);
}

.od-ctas__corners--bottom::before {
	left: 0;
	bottom: 0;
	transform: rotate(270deg);
}

.od-hero__ctas .btn--outline {
	border-color: var(--core-3);
}

@media (min-width: 640px) {
	.od-hero__tagline-wrap {
		font-size: 28px;
		max-width: none;
	}	
	
	.od-hero__ctas {
		flex-direction: row;
		max-width: none;
		width: auto;
	}
}

@media (min-width: 960px) {
	.od-hero {
		aspect-ratio: 1920 / 1480;
		height: auto;
		/* height: calc(100vh - 96px); */
		/* padding-block: 72px 0; */
	}

	.od-hero__lockup {
		margin-top: -100px;
		max-width: 80%;
	}
	
	.od-hero__tagline-wrap {
		font-size: 36px;
		padding: 36px;
	}
}

/* --------------------------------------------------------------------------
   Showreel
   -------------------------------------------------------------------------- */
.one-destination .od-showreel {
	background: var(--hero-bg);
	padding-block: 0;
}

.od-showreel .container-sm {
	padding-inline: 0;
}

.video-wrapper {
	aspect-ratio: 16 / 9;
	position: relative;
	overflow: hidden;
	max-width: 100%;
	width: 100%;	
}

.video-wrapper iframe {
	border: none;
	height: 100%;
	position: absolute; 
	inset: 0; 
	width: 100%;
	z-index: 1;	
}
	
.video-wrapper img {
	height: 100%;
	margin: 0;
	object-fit: cover;
	pointer-events: none;
	position: absolute; 
	inset: 0; 
	width: 100%;
	z-index: 1;
	transition: opacity 0.5s ease;
}

.od-video__hero.is-ready img {
	opacity: 0;
	transition-delay: 1s;
}

.od-showreel__panel {
	max-width: 900px;
	margin-inline: auto;
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(11, 23, 41, 0.55);
	border: 1px solid rgba(201, 162, 87, 0.4);
	border-radius: 16px;
	cursor: pointer;
	gap: 16px;
	color: var(--core-1);
	font-family: var(--font-body);
	font-size: 18px;
}

.od-showreel__play {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--core-3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.od-showreel__play svg {
	width: 20px;
	height: 20px;
	fill: var(--core-4);
}

@media (min-width: 960px) {
	.one-destination .od-showreel {
		padding-block: 120px;
		padding-top: 0;
	}
	
	.od-showreel .container-sm {
		padding-inline: var(--gutter);
	}
	
	.video-wrapper {
		border-radius: 12px;
	}
}

/* --------------------------------------------------------------------------
   The Challenge + Traditional multi-supplier model (one two-column row —
   see the note on the section in the template)
   -------------------------------------------------------------------------- */
.od-challenge {
	background: var(--core-4);
}

.od-challenge__inner {
	display: flex;
	flex-direction: column-reverse;
	gap: 40px;
}

.od-challenge__col {
	flex: 1;
	min-width: 0;
}

.od-challenge__divider {
	background: linear-gradient(to left, transparent, rgba(201, 162, 87, 1) 15%, rgba(201, 162, 87, 1) 85%, transparent);	
	height: 2px;
	width: 100%;
}

.od-challenge h2 {
	margin-bottom: 24px;
}

.od-challenge p {
	color: var(--core-1);
	margin-bottom: 16px;
}

.od-challenge__callout {
	margin-top: 32px;
	text-align: center;
	font-size: 20px;
	max-width: 400px;
	padding: 32px;
}

.od-challenge__callout .gold {
	display: block;
	margin: 0 0 4px;
}

p.od-suppliers__label {
	text-align: center;
	margin-bottom: 24px;
}

.od-suppliers__diagram {
	height: auto;
	max-width: 100%;
	margin-inline: auto;
	display: block;
	width: 100%;
	position: relative;
}

.od-suppliers__diagram img {
	display: block;
	width: 100%;
	height: auto;
}

.od-suppliers__diagram--frame {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.od-suppliers__diagram img.is-active {
	opacity: 1;
}

.od-suppliers__stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin: 32px auto 0;
	text-align: center;
}

.od-suppliers__stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 56px;
	letter-spacing: 3px;
	color: var(--core-3);
}

.od-suppliers__stat span {
	font-size: 16px;
	color: var(--core-3);
}

@media (min-width: 960px) {
	.od-challenge__inner {
		flex-direction: row;
		align-items: stretch;
		gap: 40px;
	}

	.od-challenge__divider {
		background: linear-gradient(to bottom, transparent, rgba(201, 162, 87, 1) 15%, rgba(201, 162, 87, 1) 85%, transparent);		
		height: auto;
		width: 2px;
	}
	
	.od-challenge h2 {
		margin-bottom: 40px;
	}
	
	.od-challenge p {
		font-size: 18px;
	}
	
	.od-challenge__callout {
		font-size: 22px;
		margin-top: 46px;	
	}

	p.od-suppliers__label {
		font-size: 22px;
		margin-bottom: 32px;
	}

	.od-suppliers__diagram {
		margin-inline: 0;
	}
	
	.od-suppliers__stats {
		justify-content: space-between;
		max-width: 80%;
	}
	
	.od-suppliers__stat span {
		font-size: 18px;
	}	
}

/* --------------------------------------------------------------------------
   Offer (three specialist businesses)
   -------------------------------------------------------------------------- */
.od-offer {
	background: var(--core-2);
	color: var(--core-4);
}

.od-offer h2 {
	text-align: center;
	color: var(--core-4);
	margin-bottom: 60px;
}

.od-offer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.od-offer__card {
	position: relative;
	background: transparent;
	padding: 28px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.od-offer__card.od-frame {
	--frame-bg: var(--core-2);
}

.od-offer__icon {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 40px;
	height: 40px;
	margin-bottom: 8px;
	overflow: hidden;
}

.od-offer__icon img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.od-offer__card h3 {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25;
	text-transform: none;
}

@media (min-width: 640px) {
	.od-offer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.od-offer h2 {
		margin-bottom: 72px;
	}	
	
	.od-offer__grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

/* --------------------------------------------------------------------------
   Every detail. Every step. Connected.
   -------------------------------------------------------------------------- */
.one-destination .od-process {
	background: var(--core-2);
	color: var(--core-4);
	overflow: hidden;
	padding-top: 0;
	text-align: center;
}

.od-process h2 {
	margin-bottom: 72px;
	padding-left: 32px;
	text-align: left;
}

.od-process__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 72px;
	padding-left: 32px;
	border-left: 3px solid var(--core-4);
	max-width: 1080px;
	margin-inline: auto;
	position: relative;
	text-align: left;
}

.od-process__list::before,
.od-process__list::after {
	content: '';
	background: var(--core-4);
	height: 50%;
	position: absolute;
	top: -50%;
	left: -3px;
	width: 3px;
}

.od-process__list::after {
	top: auto;
	bottom: -50%;
}

.od-process__step {
	position: relative;
}

.od-process__step::before {
	content: '';
	position: absolute;
	left: -46px;
	top: 50%;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--core-3);
	opacity: 0;
	transform: scale(0) translateY(-50%);
	transition: opacity 0.35s ease, transform 0.35s ease;
	transition-delay: var(--delay, 0s);
}

.od-process__step.is-visible::before {
	opacity: 1;
	transform: scale(1) translateY(-50%);	
}

.od-process__step span {
	display: block;
	margin-top: 4px;
}

.od-process__step strong {
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 400;
}

@media (min-width: 960px) {
	.od-process h2 {
		padding: 0;
		text-align: center;
	}	
	
	.od-process__list {
		flex-direction: row;
		justify-content: space-between;
		border-left: 0;
		border-top: 3px solid var(--core-4);
		gap: 40px;
		padding-left: 0;
		padding-top: 32px;
		text-align: center;
	}
	
	.od-process__list::before,
	.od-process__list::after {
		height: 3px;
		position: absolute;
		top: -3px;
		left: -100%;
		width: 100%;
	}
	
	.od-process__list::after {
		left: auto;
		right: -100%;
	}	

	.od-process__step {
		flex: 1;
	}

	.od-process__step::before {
		left: 50%;
		transform: scale(1) translateX(-50%);
		top: -46px;
	}
	
	.od-process__step.is-visible::before {
		transform: scale(1) translateX(-50%);	
	}
	
	.od-process__step span {
		margin-top: 8px;
	}
}

/* --------------------------------------------------------------------------
   Specialist expertise, working as one
   -------------------------------------------------------------------------- */
.od-expertise {
	background: var(--core-4);
}

.od-expertise h2 {
	text-align: center;
}

/* Real thin gold divider pulled from Figma (node 102:1070), directly under
   the section heading. */
.od-expertise__divider {
	height: 3px;
	max-width: 960px;
	margin: 32px auto;
	background: url('../img/one-destination/woa-heading-divider.svg') center / 100% 100% no-repeat;
}

.od-expertise__subhead {
	text-align: center;
	margin-bottom: 16px;
}

.od-expertise__intro {
	text-align: center;
	max-width: 480px;
	margin: 0 auto 60px;
}

.od-expertise__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px 40px;
}

.od-expertise__card {
	display: flex;
	flex-direction: column;
}

.od-expertise__header {
	position: relative;
	z-index: 1;
	min-height: 134px;
	margin: 0 auto 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 24px;
	width: 100%;
}

.od-expertise__header img {
	height: auto;
	width: 100%;
	max-height: 70px;
	max-width: 140px;
	position: relative;
	z-index: 2;
}

.od-expertise__card--fluro .od-expertise__header.od-frame {
	--frame-colour: var(--brand-fluro);
}

.od-expertise__card--fluro .od-expertise__header.od-frame:after {
	background-color: var(--brand-fluro);
}

.od-expertise__card--populate .od-expertise__header.od-frame {
	--frame-colour: var(--brand-populate);
}

.od-expertise__card--populate .od-expertise__header.od-frame:after {
	background-color: var(--brand-populate);
}

.od-expertise__card--moonraker .od-expertise__header.od-frame {
	--frame-colour: var(--brand-moonraker);
}

.od-expertise__card--moonraker .od-expertise__header.od-frame:after {
	background-color: var(--brand-moonraker);
}

.od-expertise__body {
	position: relative;
	flex: 1;
	padding: 48px 24px 32px;
	text-align: center;
}

.od-expertise__card--fluro .od-expertise__body.od-frame {
	--frame-colour: var(--brand-fluro);
}

.od-expertise__card--populate .od-expertise__body.od-frame {
	--frame-colour: var(--brand-populate);
}

.od-expertise__card--moonraker .od-expertise__body.od-frame {
	--frame-colour: var(--brand-moonraker);
}

.od-expertise__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
	margin-bottom: 24px;
}

.od-expertise__list li {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 16px;
}

.od-expertise__list-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}

.od-expertise__list img {
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.od-expertise__body hr {
	position: relative;
	border: 0;
	height: 2px;
	margin-bottom: 24px;
	background: linear-gradient(to left, transparent, rgba(0, 136, 255, 1) 15%, rgba(0, 136, 255, 1) 85%, transparent);
}

.od-expertise__card--populate .od-expertise__body hr {
	background: linear-gradient(to left, transparent, rgba(203, 48, 224, 1) 15%, rgba(203, 48, 224, 1) 85%, transparent);
}

.od-expertise__card--moonraker .od-expertise__body hr {
	background: linear-gradient(to left, transparent, rgba(255, 141, 40, 1) 15%, rgba(255, 141, 40, 1) 85%, transparent);
}

.od-expertise__body p {
	position: relative;
	font-size: 16px;
}

@media (min-width: 960px) {
	.od-expertise__divider {
		margin: 40px auto;
	}
	
	.od-expertise__intro {
		font-size: 18px;
		margin-bottom: 80px;
	}
	
	.od-expertise__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.od-expertise__body {
		padding: 48px 32px 32px;
	}	
	
	.od-expertise__list,
	.od-expertise__body hr  {
		margin-bottom: 32px;
	}
}

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */
.one-destination .od-trust {
	background: var(--core-4);
	padding-block: 0;
	/* overflow-x: hidden; */
	position: relative;
	z-index: 1;
}

.od-trust span {
	display: block;
	font-size: 18px;
	color: var(--core-1);
	margin-bottom: 10px;
	transform: rotate(-5deg);
}

.od-trust__band {
	width: calc(100vw + 24px);
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: calc(-50vw - 12px);
	margin-right: -50vw;
	background: var(--core-3);
	padding-block: 32px;
	transform: rotate(-5deg);
}

.od-logo-ticker__track {
	display: flex;
	width: max-content;
}

.od-logo-ticker__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 60px;
	padding-right: 60px;
	flex-shrink: 0;
}

.od-logo-ticker__group img {
	flex-shrink: 0;
	display: block;
	width: auto;
	height: 32px;
	max-width: 160px;
	object-fit: contain;
}

.od-logo-ticker__group .smlogo {
	height: 52px;
}

@media (min-width: 960px) {
	.od-trust__band {
		/* padding-block: 68px; */
		padding-block: 48px;
	}

	.od-trust span {
		font-size: 20px;
	}
	
	.od-logo-ticker__group {
		gap: 120px;
		padding-right: 120px;
	}
	
	.od-logo-ticker__group img {
		height: 48px;
	}
	
	.od-logo-ticker__group .smlogo {
		height: 68px;
	}
}

/* --------------------------------------------------------------------------
   Case studies
   -------------------------------------------------------------------------- */
.od-cases {
	background: var(--core-4);
	text-align: center;
}

.od-cases h2 {
	margin-bottom: 40px;
	text-wrap: balance;
}

.od-cases__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	text-align: left;
	margin-bottom: 40px;
}

.od-cases__card {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background-size: cover;
	background-position: center;
}

.od-cases__card:nth-child(n+5) {
	display: none;
}

.od-cases__card-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	opacity: 1;
	padding: 40px 28px;
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 0;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.od-cases__card-text::after {
	content: '';
	opacity: 0.9;
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(11, 23, 41, 0) 39%, rgba(11, 23, 41, 1) 87%);
	z-index: -1;
}

.od-cases__card-text h3 {
	font-size: 28px;
	margin-bottom: 8px;
}

.od-cases__card-text p {
	color: var(--core-3);
	/* font-size: 14px; */
}

.od-cases__more svg {
	transition: transform 0.3s ease;
}

.od-cases__more.is-active svg {
	transform: rotate(180deg);
}

.od-cases__card:hover .od-cases__card-text {
	opacity: 0;
	transform: translateY(24px);
}

@media (min-width: 640px) {
	.od-cases__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.od-cases__card {
		aspect-ratio: 16 / 9;
	}	
}

@media (min-width: 960px) {
	.od-cases__grid {
		gap: 32px;
		margin-bottom: 78px;
	}
	
	.od-cases h2 {
		margin-bottom: 120px;
		margin-left: auto;
		max-width: 900px;
		text-align: right;
	}
	
	.od-cases__card-text {
		padding: 32px;
	}
	
	.od-cases__card-text h3 {
		font-size: 36px;
		margin-bottom: 12px;
	}
}


/* --------------------------------------------------------------------------
   Case studies - Popup
   -------------------------------------------------------------------------- */
.fancybox-bg {
	background: var(--core-4);
}

.fancybox-is-open .fancybox-bg {
	opacity: 1;
}

.fancybox-inner {
	
}

.fancybox-inner .fancybox-button {
	background: var(--core-3);
	border-radius: 8px;
	color: var(--core-4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: auto;
	opacity: 1;
	padding: 12px 24px;
	position: fixed;
	top: 12px;
	right: 12px;
	width: auto;
	border: 3px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s ease;
}

.fancybox-inner .fancybox-button:after {
	content: 'Close';
	font-family: var(--font-heading);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.fancybox-inner .fancybox-button svg {
	display: none;	
}

.fancybox-inner .fancybox-button:hover {
	transform: translateY(-2px);
}

.fancybox-slide--html {
	padding: 72px 20px 20px;    		
}

.fancybox-content {
	background: var(--core-5);
	overflow: hidden !important;
	padding: 20px 20px 32px;
	max-width: 1440px;
}

.fancybox-content:hover .pin {
	opacity: 1;
	visibility: visible;
}

.od-popup {
	display: none;
}
	
.od-popup__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.od-popup__imgs {
	display: block;
}

.od-popup__img,
.od-popup__alt {
	--frame-bg: var(--core-5);
	background-size: cover;
	background-position: center;
	/* corner-shape: scoop;
	border-radius: 30px; */
	max-width: 100%;
	position: relative;
}
		
.od-popup__img {
	display: none;	
}

.od-popup__alt {
	aspect-ratio: 4 / 5;	
}	

.main-img__wrap img {
	height: 100%;
	margin: 0;
	width: 100%;
	object-fit: cover;
	z-index: 0;
}
		
.od-popup__txt {
   display: grid;
   grid-template-columns: 1fr;
   gap: 24px;
}

.od-popup__txt .gold {
   margin: 8px 0 24px;
}

.od-popup__services h4 {
	margin-bottom: 16px;
}

.od-popup__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.od-popup__list li {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 16px;
}

.od-popup__list-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}

.od-popup__list img {
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

@media (min-width: 640px) {
	.od-popup__imgs {
		display: grid;
		grid-template-columns: 2fr 1fr;
		gap: 24px;	
	}
	
	.od-popup__img {
		display: block;
	}
	
	.od-popup__alt {
		aspect-ratio: 1 / 1;
	}	
	
	.od-popup__imgs--switch {
		grid-template-columns: 1fr 2fr;
	}
	
	.od-popup__imgs--switch .od-popup__img {
		aspect-ratio: 1 / 1;
	}
	
	.od-popup__imgs--switch .od-popup__alt {
		aspect-ratio: auto;
	}
	
	.od-popup__txt {
	   display: grid;
	   flex-direction: column-reverse;
	   grid-template-columns: 2fr 1fr;
	   gap: 24px;
	}
}

@media (min-width: 960px) {
	.fancybox-slide--html {
		padding: 72px 10% 72px;    		
	}
	
	.fancybox-content {
		padding: 40px;
	}
	
	.od-popup__inner,
	.od-popup__imgs,
	.od-popup__txt {
		gap: 32px;	
	}
	
	.od-popup__txt .gold {
		font-size: 18px;
	   margin: 8px 0 32px;
	}
	
	.od-popup__services h4 {
		font-size: 24px;
		/* margin-bottom: 24px; */
	}
}

@media (hover: none) {	
	.pin {
		opacity: 1;
		visibility: visible;
	}
}

/* --------------------------------------------------------------------------
   Final CTA / Fast Track ticket
   -------------------------------------------------------------------------- */
.od-final {
	background: var(--hero-bg);
	background: linear-gradient(0deg,rgba(254, 243, 230, 1) 0%, rgba(244, 227, 201, 1) 100%);
	color: var(--core-4);
}

.od-final__inner {
	display: flex;
	flex-direction: column-reverse;
	gap: 60px;
	align-items: center;
	text-align: left;
}

.od-final__copy {
	width: 100%;
}

.od-final__copy p {
	margin: 16px 0 32px;
}

.od-final__copy p.eyebrow {
	margin: 0 0 16px;
}

.od-ticket {
	margin: 0;
	max-width: 650px;
	overflow: hidden;
	padding: 24px 0 36px;
	position: relative;
	width: 100%;
}

.od-ticket .od-ticket__svg {
	height: auto;
	max-width: 100%;
	width: 100%;
	z-index: 0;
	transition: transform 0.3s ease;
}

.od-ticket::before {
	content: '';
	background: linear-gradient(to bottom, transparent, rgba(11, 23, 41, 1) 15%, rgba(11, 23, 41, 1) 85%, transparent);
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 2px;
	z-index: 1;
}

.od-ticket::after {
	content: '';
	background: rgba(201, 162, 87, 0.6);
	border-radius: 50%;
	filter: blur(3px);
	height: 6px;
	position: absolute;
	right: 2px;
	bottom: 3px;
	mix-blend-mode: luminosity;
	width: 96%;
	z-index: 0;
	transition: transform 0.3s ease;
}

.od-ticket:hover .od-ticket__svg,
.od-ticket:hover::after {
	transform: translateX(32px);
}

@media (min-width: 960px) {
	.od-final__inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 80px;
		align-items: flex-start;
	}

	.od-final__copy p {
		font-size: 18px;
		margin: 24px 0 52px;
	}
	
	.od-final__copy p.eyebrow {
		margin-bottom: 24px;
	}
	
	.od-ticket {
		padding-top: 48px;
	}
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.one-destination .od-contact {
	background-color: var(--hero-bg);
	color: var(--core-4);
	overflow: hidden;
	padding-top: 0;
	position: relative;
}

.od-contact__bg {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
}

.od-contact__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	will-change: transform;
}

.od-contact__panel {
	position: relative;
	padding: 48px 32px;
	max-width: 960px;
	margin-inline: auto;
	z-index: 1;
	--cutout: 32px;
}

.od-contact__panel::after {
	background: #ebd6b2;
	border: 3px solid var(--core-4);
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	
	clip-path: polygon(
		0 var(--cutout),
		var(--cutout) var(--cutout),
		var(--cutout) 0,
		calc(100% - var(--cutout)) 0,
		calc(100% - var(--cutout)) var(--cutout),
		100% var(--cutout),
		100% calc(100% - var(--cutout)),
		calc(100% - var(--cutout)) calc(100% - var(--cutout)),
		calc(100% - var(--cutout)) 100%,
		var(--cutout) 100%,
		var(--cutout) calc(100% - var(--cutout)),
		0 calc(100% - var(--cutout))
	);
}

.od-contact__corners {
	position: absolute;
	left: 0;
	right: 0;
	height: var(--cutout);
	z-index: 1;
	pointer-events: none;
}

.od-contact__corners--top {
	top: 0;
}

.od-contact__corners--bottom {
	bottom: 0;
}

.od-contact__corners::before,
.od-contact__corners::after {
	content: '';
	position: absolute;
	width: var(--cutout);
	height: var(--cutout);
	background-image: url('../img/one-destination/form-corner.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.od-contact__corners--top::before {
	top: 0;
	left: 0;
}

.od-contact__corners--top::after {
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

.od-contact__corners--bottom::after {
	right: 0;
	bottom: 0;
	transform: rotate(180deg);
}

.od-contact__corners--bottom::before {
	left: 0;
	bottom: 0;
	transform: rotate(270deg);
}

.od-contact__panel h2 {
	margin-bottom: 32px;
	text-align: left;
}

.od-contact__panel .gform_wrapper {
	font-family: var(--font-body);
}

.od-contact__panel .gform_validation_container,
.od-contact__panel .gform_heading {
	display: none;
}

.od-contact__panel .gform_fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.od-contact__panel .gfield {
	grid-column: span 2;
}

.od-contact__panel .gfield_label {
	font-size: 16px;
	margin-bottom: 12px;
	display: block;
}

.od-contact__panel .gfield_required span {
	color: var(--core-3);
	padding-left: 4px;
}

.od-contact__panel .ginput_container input,
.od-contact__panel .ginput_container textarea,
.od-contact__panel .ginput_container select {
	width: 100%;
	background: var(--core-2);
	border: 0;
	border-radius: 4px;
	padding: 16px;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--core-4);
	outline: none;
	-webkit-appearance: none;
}

.od-contact__panel .ginput_container input::placeholder,
.od-contact__panel .ginput_container textarea::placeholder {
	color: rgba(11, 23, 41, 0.25);
}

.od-contact__panel .ginput_container textarea {
	min-height: 120px;
	max-height: 180px;
	resize: vertical;
}

.od-contact__panel .gform_footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
	padding: 0;
}

.od-contact__panel .gform_button,
.od-contact__panel .gform_footer button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 8px;
	background: var(--core-4);
	color: var(--core-1);
	border: 3px solid var(--core-4);
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.od-contact__panel .gform_footer button:hover {
	transform: translateY(-2px);
}

.od-contact__panel .gform_submission_error {
	font-family: var(--font-heading);
	font-size: 18px;
	line-height: 1.1;
	margin-bottom: 24px;
}

.od-contact__panel .validation_message {
	color: var(--core-4);
	font-family: var(--font-heading);
	font-size: 14px;
	line-height: 1.1;
	margin-top: 10px;
	text-transform: uppercase;
}

@media (min-width: 640px) {
	.od-contact__panel .gform_fields {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gfield.od-contact__field-half {
		grid-column: span 1;
	}
}

@media (min-width: 960px) {	
	.od-contact__panel h2 {
		font-size: 36px;
		margin-bottom: 60px;
	}
	
	.od-contact__panel .gform_fields {
		gap: 32px;
	}
	
	.od-contact__panel .gform_footer {
		margin-top: 32px;
	}	
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.od-footer {
	position: relative;
	background: var(--core-4);
	color: var(--core-1);
	padding-block: 60px 24px;
}

.od-footer__mark {
	height: auto;
	max-height: 180px;
	margin: 0 auto;
	margin-bottom: 56px;
	width: 100%;
}

.od-footer__grid {
	border-top: 2px solid var(--core-3);
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding: 48px 0 56px;
}

.od-footer__col p,
.od-footer__col a {
	display: block;
	font-size: 16px;
	line-height: 1.7;
	transition: opacity 0.2s ease;
}

.od-footer__col a:hover {
	opacity: 0.7;
}


.od-footer__col--contact,
.od-footer__col--links {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.od-footer__col--links {
	grid-template-columns: repeat(2, 1fr);
}

.od-footer__col--links a {
	line-height: 1.5;
	padding-bottom: 12px;
}

.od-footer__col--links .od-footer__col a:last-of-type {
	padding-bottom: 0;
}

.od-footer__bottom {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
	.od-footer__grid {
		grid-template-columns: 2fr 1fr;
	}
	
	.od-footer__col--links {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 960px) {
	.od-footer {
		padding-block-start: 152px;
	}
	
	.od-footer__mark {
		margin-bottom: 152px;
	}	
	
	.od-footer__grid {
		gap: 100px;
		padding: 62px 0 152px;
	}
	
	.od-footer__col p,
	.od-footer__col a {
		font-size: 18px;
	}
	
	.od-footer__col--contact {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.od-footer__col--links {
		grid-template-columns: repeat(2, 1fr);
	}	
}

/* --------------------------------------------------------------------------
   Vimeo showreel modal (mirrors the pattern in header.php, duplicated here
   since this template doesn't include get_header()).
   -------------------------------------------------------------------------- */
.od-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100;
	/* background: rgba(11, 23, 41, 0.95); */
	background: var(--core-4);
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.od-modal.is-open {
	display: flex;
}

.od-modal__dialog {
	width: 100%;
	max-width: 960px;
}

.od-modal__body {
	background: var(--core-4);
	position: relative;
	padding-top: 56.25%;
}

.od-modal__body iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.od-modal__close {
	background: var(--core-3);
	color: var(--core-4);
	display: block;
	cursor: pointer;
	position: fixed;
	top: 12px;
	right: 12px;
}
