.home-hero {
	position: relative;
	padding-left: 2rem;
	padding-right: 2rem;
}

/* ============ Full-bleed background image (hero_bg_image) ============ */

.home-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	border-radius: 0 0 5rem 5rem;
}

.home-hero__bg-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #1A1A1A;
	mix-blend-mode: multiply;
	opacity: 0.95;
	z-index: 1;
	pointer-events: none;
}

.home-hero__container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10rem;
	padding-top: 10rem;
}

.home-hero__media {
	position: relative;
	z-index: 2;
}

.home-hero__heading h1 {
	font-size: clamp(4.5rem, 3.4rem + 1.6vw, 6.5rem);
	line-height: 1;
}

.home-hero__intro-content {
	color: var(--c-dark);
	font-size: clamp(1.6rem, 1.2rem + 0.8vw, 2rem);
	line-height: 1.4;
}

.home-hero__heading {
	margin-bottom: 3rem;
}

.home-hero__heading-suffix {
	color: var(--c-second);
}

.home-hero__btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin-top: 4rem;
}

.home-hero__description-bottom {
	margin-top: 1.6rem;
	font-size: 1.3rem;
	color: var(--c-light);
}

.home-hero__description-bottom p:last-of-type {
	margin: 0;
}

.home-hero__media,
.home-hero__thumbnail {
	border-radius: 3rem;
}

.bg-Black .home-hero__heading h1,
.bg-Black .home-hero__intro-content,
.bg-Black .home-hero__description-bottom,
.bg-Brown .home-hero__heading h1,
.bg-Brown .home-hero__intro-content,
.bg-Brown .home-hero__description-bottom {
	color: var(--c-white)
}

/* When a background image is present, force light text regardless of
bg_color, since the photo is dark in the reference design. */
.home-hero__bg~.container .home-hero__heading h1,
.home-hero__bg~.container .home-hero__intro-content {
	color: var(--c-white);
}

/* ============ Layout option variants ============ */

.home-hero.full--width .home-hero__container {
	grid-template-columns: 1fr;
	gap: 5rem;
}

.home-hero.full--width .home-hero__content {
	max-width: 80rem;
	order: 1;
	margin: 0 auto;
	text-align: center;
}

.home-hero.full--width .home-hero__media {
	order: 2;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
}

.home-hero.full--width .home-hero__image-wrap img,
.home-hero.full--width .home-hero__thumbnail {
	border-radius: 3rem;
}

.home-hero.full--width .home-hero__btn-group {
	justify-content: center;
}

/* .home-hero.full--width .home-hero__heading-suffix {
display: block;
} */


/* ============ Image variant (media_type: image) ============ */

.home-hero__image-wrap img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 3rem;
}

/* ============ Decorative dots (behind the media) ============ */

.home-hero__dots {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% + 6rem);
	aspect-ratio: 663 / 595;
	min-height: 20rem;
	transform: translate(-40%, -50%);
	z-index: 0;
	pointer-events: none;
}

.home-hero__dots svg {
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero__container.media--left .home-hero__dots {
	transform: translate(-15%, -50%);
	left: auto;
}

/* ============ Play trigger (thumbnail + play icon) ============ */

.home-hero__play {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	overflow: hidden;
	border-radius: 3rem;
}

.home-hero__thumbnail {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.home-hero__play:hover .home-hero__thumbnail,
.home-hero__play:focus .home-hero__thumbnail {
	transform: scale(1.03);
}

.home-hero__play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-white);
	transition: transform 0.3s ease, background 0.3s ease;
	border-radius: 100px;
	background: var(--c-second);
}

.home-hero__play-icon:before {
	content: "";
	color: var(--c-second);
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 10rem;
	height: 10rem;
	background: var(--c-second);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}

.home-hero__play-icon:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	transition: all 200ms;
}

.home-hero__play-icon svg {
	width: 36px;
	height: 41px;
	/* keeps the original 43:49 ratio intact at this width */
	transform: translateX(2px);
	/* visually recenters the right-pointing triangle */
}

.home-hero__play:hover .home-hero__play-icon,
.home-hero__play:focus .home-hero__play-icon {
	transform: translate(-50%, -50%) scale(1.08);
}

/* ============ Lightbox ============ */

.home-hero__lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.home-hero__lightbox.is-open {
	visibility: visible;
	opacity: 1;
}

.home-hero__lightbox-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.home-hero__lightbox-inner {
	position: relative;
	width: min(112rem, 90vw);
	aspect-ratio: 16 / 9;
	z-index: 1;
	transform: scale(0.92) translateY(1rem);
	opacity: 0;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.home-hero__lightbox.is-open .home-hero__lightbox-inner {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.home-hero__lightbox-video {
	width: 100%;
	height: 100%;
}

.home-hero__lightbox-video :is(iframe, video) {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	background: #000;
}

.home-hero__lightbox-close {
	position: absolute;
	top: -6rem;
	right: 0;
	width: 4.5rem;
	height: 4.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: var(--c-platform-white);
	color: var(--c-dark);
	cursor: pointer;
	transition: background 0.2s ease;
}

body.home-hero-lightbox-open {
	overflow: hidden;
}

/* ============ Animated banner ============ */
.stage{
	position:relative;
	width:100%;
}
.art-wrap{
	width:100%;
	position:relative;
}
.art-wrap svg{
	width:100%;
	height:auto;
	display:block;
	overflow:visible;
}
.caption{
	position:absolute;
	left:0; right:0;
	bottom:-40px;
	text-align:center;
	color:#7C8AAE;
	font-size:13px;
	letter-spacing:.02em;
	opacity:.85;
}

/* ---------- floating layers ---------- */
.float-main, .float-left, .float-mid, .float-right{
	transform-box: fill-box;
	transform-origin: center;
}
.float-main{
	animation: floatMain 7s ease-in-out infinite;
}
.float-left{
	animation: floatLeft 6.4s ease-in-out infinite;
	animation-delay: -1.1s;
}
.float-mid{
	animation: floatMid 8.2s ease-in-out infinite;
	animation-delay: -3.4s;
}
.float-right{
	animation: floatRight 5.6s ease-in-out infinite;
	animation-delay: -2.2s;
}

@keyframes floatMain{
	0%,100%{ transform: translate(0px, 0px); }
	50%{ transform: translate(0px, -7px); }
}
@keyframes floatLeft{
	0%,100%{ transform: translate(0px, 0px) rotate(0deg); }
	50%{ transform: translate(-4px, -12px) rotate(-0.4deg); }
}
@keyframes floatMid{
	0%,100%{ transform: translate(0px, 0px); }
	50%{ transform: translate(3px, 10px); }
}
@keyframes floatRight{
	0%,100%{ transform: translate(0px, 0px); }
	50%{ transform: translate(4px, -9px); }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce){
	.float-main, .float-left, .float-mid, .float-right{
		animation: none !important;
	}
}


@media (min-width: 992px) {
	.home-hero__container {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
	}

	.home-hero__container.media--right {
		& .home-hero__content {
			order: 1;
		}

		& .home-hero__media {
			order: 2;
		}
	}

	.home-hero__container.media--left {
		& .home-hero__content {
			order: 2;
		}

		& .home-hero__media {
			order: 1;
		}
	}

	/* ============ Two-column media breakout (touches the true window edge) ============ */
	/* .home-hero__container's containing block is now .container directly
	(no extra wrapper padding to compensate for). Content stays a FIXED
	width so it never changes size — the 1fr media column absorbs 100%
	of whatever extra width the container gains as it grows out to the
	true viewport edge.

	NOTE: this math assumes .container has no horizontal padding of its
	own (just max-width + margin: 0 auto centering). If it does, add
	that padding value into the calc below to compensate. Adjust
	"45rem"/"55rem" to match your actual heading/description column width. */

	.home-hero.two--column .home-hero__container.media--right {
		grid-template-columns: 45rem 1fr;
		width: calc(100% + (100vw - 100%) / 2);
	}

	.home-hero.two--column .home-hero__container.media--left {
		grid-template-columns: 1fr 45rem;
		width: calc(100% + (100vw - 100%) / 2);
		margin-left: calc(-1 * (100vw - 100%) / 2);
	}

	.home-hero.two--column .home-hero__media {
		width: 100%;
	}

	.home-hero__container {
		gap: 7rem;
	}

	.home-hero__play {
		border-radius: 3rem;
	}

	.home-hero__image-wrap img,
	.home-hero__thumbnail {
		border-radius: 3rem 0 0 3rem;
	}

	.home-hero__container.media--left .home-hero__image-wrap img,
	.home-hero__container.media--left .home-hero__thumbnail,
	.home-hero__container.media--left .home-hero__play {
		border-radius: 0 3rem 3rem 0;
	}
}

@media (min-width: 1200px) {
	.home-hero.two--column .home-hero__container.media--right {
		grid-template-columns: 55rem 1fr;
	}

	.home-hero.two--column .home-hero__container.media--left {
		grid-template-columns: 1fr 55rem;
	}

	.home-hero__container {
		gap: 10rem;
	}
}


@media (max-width: 991px) {
	.home-hero__container {
		gap: 4rem;
	}

	.home-hero__dots,
	.home-hero__container.media--left .home-hero__dots {
		width: calc(100% + 3rem);
	}

	.home-hero__btn-group {
		margin-top: 3rem;
	}

	.home-hero.full--width .home-hero__container {
		gap: 3rem;
	}

	.home-hero.full--width .home-hero__heading {
		margin-bottom: 2rem;
	}

	.home-hero__container {
		padding-top: 7rem;
	}
}

@media (max-width: 767px) {
	.home-hero {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.home-hero__media,
	.home-hero__thumbnail,
	.home-hero__image-wrap img,
	.home-hero__play,
	.home-hero__container.media--left .home-hero__image-wrap img,
	.home-hero__container.media--left .home-hero__thumbnail,
	.home-hero__container.media--left .home-hero__play,
	.home-hero.full--width .home-hero__image-wrap img,
	.home-hero.full--width .home-hero__thumbnail {
		border-radius: 2rem;
	}

	.home-hero__bg {
		border-radius: 0 0 4rem 4rem;
	}

	.home-hero__container {
		gap: 3rem;
	}

	.home-hero__btn-group {
		margin-top: 3rem;
	}

	.home-hero__lightbox-close {
		right: 0;
		width: 3.5rem;
		height: 3.5rem;
		top: -4.5rem;
	}

	.home-hero__lightbox-close svg {
		width: 16px;
		height: 16px;
	}

	.home-hero__play-icon,
	.home-hero__play-icon:before,
	.home-hero__play-icon:after {
		width: 8rem;
		height: 8rem;
	}

	.home-hero__play-icon svg {
		width: 30px;
		height: 35px;
	}

}

@media (max-width: 500px) {
	.home-hero__play-icon,
	.home-hero__play-icon:before,
	.home-hero__play-icon:after {
		width: 5.5rem;
		height: 5.5rem;
	}

	.home-hero__play-icon svg {
		width: 18px;
		height: 23px;
	}
}