body.home .front-page-1.edco-kinetic-hero {
	overflow: hidden;
	isolation: isolate;
}

body.home .edco-kinetic-hero #custom_html-2 {
	position: relative;
	z-index: 2;
}

/*
 * Animate the designer's complete heading composition as one object. No
 * dimensions, wrapping, balancing or heading descendants are changed here.
 */
body.home .edco-kinetic-hero #custom_html-2 h1 {
	opacity: 0;
	clip-path: inset(0 0 100% 0);
	transform: translate3d(0, 1.4rem, 0);
}

body.home .edco-kinetic-hero.edco-kinetic-ready #custom_html-2 h1 {
	animation: edco-hero-editorial-reveal 900ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.home .edco-kinetic-hero #custom_html-2 p,
body.home .edco-kinetic-hero #custom_html-2 .button {
	opacity: 0;
	transform: translate3d(0, 0.9rem, 0);
}

body.home .edco-kinetic-hero.edco-kinetic-ready #custom_html-2 p {
	animation: edco-hero-supporting-reveal 620ms 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.home .edco-kinetic-hero.edco-kinetic-ready #custom_html-2 .button {
	animation: edco-hero-supporting-reveal 620ms 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/*
 * One recognisable EDCo-owned element: the leaf extracted from the existing
 * logo, used as a restrained watermark rather than an invented illustration.
 */
body.home .edco-hero-brand-leaf {
	position: absolute;
	right: clamp(-7rem, -4vw, -2.5rem);
	bottom: clamp(-6rem, -3vw, -2rem);
	z-index: 1;
	width: clamp(18rem, 28vw, 31rem);
	color: #64cdc1;
	opacity: 0;
	clip-path: inset(100% 0 0 0);
	transform: translate3d(0, 2.25rem, 0) rotate(-3deg) scale(0.96);
	transform-origin: 70% 80%;
	pointer-events: none;
}

body.home .edco-hero-brand-leaf svg {
	display: block;
	width: 100%;
	height: auto;
	fill: currentColor;
}

body.home .edco-kinetic-hero.edco-kinetic-ready .edco-hero-brand-leaf {
	animation: edco-hero-brand-leaf-reveal 1.05s 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes edco-hero-editorial-reveal {
	from {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
		transform: translate3d(0, 1.4rem, 0);
	}
	to {
		opacity: 1;
		/* Preserve italic swashes and descenders that paint outside the H1 box. */
		clip-path: inset(-0.08em -0.08em -0.2em -0.08em);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes edco-hero-supporting-reveal {
	from {
		opacity: 0;
		transform: translate3d(0, 0.9rem, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes edco-hero-brand-leaf-reveal {
	from {
		opacity: 0;
		clip-path: inset(100% 0 0 0);
		transform: translate3d(0, 2.25rem, 0) rotate(-3deg) scale(0.96);
	}
	to {
		opacity: 0.1;
		clip-path: inset(0 0 0 0);
		transform: translate3d(0, 0, 0) rotate(0) scale(1);
	}
}

@media (max-width: 767px) {
	body.home .edco-hero-brand-leaf {
		right: -23vw;
		bottom: -8vw;
		width: 68vw;
	}

	body.home .edco-kinetic-hero.edco-kinetic-ready .edco-hero-brand-leaf {
		animation-name: edco-hero-brand-leaf-reveal-mobile;
	}
}

@keyframes edco-hero-brand-leaf-reveal-mobile {
	from {
		opacity: 0;
		clip-path: inset(100% 0 0 0);
		transform: translate3d(0, 1.5rem, 0) rotate(-3deg) scale(0.96);
	}
	to {
		opacity: 0.07;
		clip-path: inset(0 0 0 0);
		transform: translate3d(0, 0, 0) rotate(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.home .edco-kinetic-hero #custom_html-2 h1,
	body.home .edco-kinetic-hero #custom_html-2 p,
	body.home .edco-kinetic-hero #custom_html-2 .button {
		animation: none !important;
		opacity: 1 !important;
		clip-path: none !important;
		transform: none !important;
	}

	body.home .edco-hero-brand-leaf,
	body.home .edco-kinetic-hero.edco-kinetic-ready .edco-hero-brand-leaf {
		animation: none !important;
		opacity: 0.1 !important;
		clip-path: none !important;
		transform: none !important;
	}
}
