/* Image + text CTA band. Measured: 300px→600px photo band, .15 soft-black scrim
   (inset by the gutter in the full-width variant), centered 1000px content column,
   background-color variants. The --video modifier powers the homepage film-cover
   band (bottom-left tag + title, centered circular play button, bottom gradient). */

.image-text-cta {
	--typography-spacing: 15px;
	border-radius: 0;
	color: var(--color-soft-white);
	display: flex;
	overflow: hidden;
	position: relative;
}
@media screen and (min-width: 768px) {
	.image-text-cta { --typography-spacing: 20px; }
}

.image-text-cta--full-width { padding: var(--grid-col-gutter); }

.image-text-cta--image { height: 300px; }
@media screen and (min-width: 768px) {
	.image-text-cta--image { height: 600px; }
}
.image-text-cta--image::after {
	background-color: var(--color-soft-black);
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0.15;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
}
.image-text-cta--image.image-text-cta--full-width::after { margin: var(--grid-col-gutter); }

/* Background-color variants (no photo) */
.image-text-cta--light,
.image-text-cta--soft-white { background-color: var(--color-soft-white); color: var(--color-soft-black); }
.image-text-cta--soft-black,
.image-text-cta--bunker-dark { background-color: var(--color-soft-black); }
.image-text-cta--navy-dark { background-color: var(--color-navy-dark); }
.image-text-cta--burgundy-2 { background-color: var(--color-burgundy-2); }
.image-text-cta--brass-3 { background-color: var(--color-brass-3); color: var(--color-soft-black); }

.image-text-cta__image { height: 100%; object-fit: cover; width: 100%; }

.image-text-cta__content {
	align-items: center;
	color: var(--color-soft-black);
	display: flex;
	flex-direction: column;
	gap: 25px;
	left: 50%;
	max-width: 1000px;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 2;
}
@media screen and (min-width: 768px) {
	.image-text-cta__content { padding: 36px var(--grid-col-gutter); }
}
@media screen and (min-width: 1024px) {
	.image-text-cta__content { padding-bottom: 50px; padding-top: 50px; }
}

/* Photo bands with light copy (dark scrim keeps it readable). */
.image-text-cta--light-text .image-text-cta__content { color: var(--color-soft-white); }

/* -------------------------------------------- Fancy-video band (WATCH band) */
/* Mirrors the reference <tcs-fancy-video class="fancy-video fancy-video--left
   typography-spacing full-width">: gutter padding (15px→30px), media 240px tall
   at 390 (aspect 3/2) and 740px tall at desktop (band totals 270px / 800px),
   caption inherits the page's soft-black, centered circular play button.
   NOT a .section, so it neither counts as one nor triggers section dividers. */

.fancy-video {
	display: block;
	padding: var(--grid-col-gutter);
	position: relative;
}

.fancy-video__frame {
	aspect-ratio: 3 / 2;
	max-height: 800px;
	overflow: hidden;
	position: relative;
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.fancy-video__frame { aspect-ratio: auto; height: 740px; }
}

.fancy-video__image {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: transform var(--transition-time) var(--transition-easing);
	width: 100%;
	z-index: 1;
}
.fancy-video__frame:hover .fancy-video__image {
	transform: scale(var(--scale-size));
}

/* Caption (tag + title) sits bottom-left; color inherits soft-black like theirs. */
.fancy-video__content {
	bottom: 0;
	padding: 0 20px 18px;
	position: absolute;
	text-align: left;
	width: 100%;
	z-index: 3;
}
@media screen and (min-width: 768px) {
	.fancy-video__content { padding-bottom: 30px; }
}

.fancy-video__tag {
	background-color: var(--color-soft-white);
	border-radius: 0;
	color: var(--color-soft-black);
	display: none;
	line-height: 1.091;
	padding: 5px 10px;
}
@media screen and (min-width: 768px) {
	.fancy-video__tag { display: inline-block; }
}

.fancy-video__title { margin: 15px 0 0; }

.fancy-video__play-btn-wrapper {
	align-items: center;
	display: flex;
	height: 56px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all var(--transition-time) var(--transition-easing);
	width: 56px;
	z-index: 3;
}
@media screen and (min-width: 768px) {
	.fancy-video__play-btn-wrapper { height: 86px; width: 86px; }
}
.fancy-video__play-btn-wrapper::after {
	background-color: var(--color-soft-black);
	border-radius: 50%;
	bottom: 0;
	content: " ";
	height: 100%;
	left: 0;
	opacity: 0.2;
	position: absolute;
	right: 0;
	top: 0;
	transform: scale(1.15);
	transition: opacity var(--transition-time) var(--transition-easing);
	width: 100%;
	z-index: 2;
}
.fancy-video__frame:hover .fancy-video__play-btn-wrapper::after { opacity: 0.4; }

.fancy-video__play-btn {
	align-items: center;
	background: var(--color-soft-white);
	border-radius: 50%;
	color: var(--color-soft-black);
	cursor: pointer;
	display: inline-flex;
	height: 100%;
	justify-content: center;
	position: relative;
	width: 100%;
	z-index: 3;
}
.fancy-video__play-btn svg {
	max-width: clamp(8px, calc(-4px + 2.0833vw), 12px);
}
