/* ==========================================================================
   EN Home – Page Template
   All rules scoped to sections inside #en-home
   ========================================================================== */

/* ── Tokens ── */
:root {
	--en-yellow:        var(--en-yellow, #ffc504);
	--enh-yellow:       var(--en-yellow, #ffc504);
	--enh-dark:         #0e0e0e;
	--enh-dark-card:    #161616;
	--enh-mid:          #1e1e1e;
	--enh-grey:         #f0eee9;
	--enh-border:       rgba(255, 255, 255, 0.08);
	--enh-border-light: rgba(0, 0, 0, 0.08);
	--enh-radius:       1.5rem;
	--enh-radius-sm:    0.875rem;
	--enh-radius-pill:  100px;
	--enh-font-display: var(--en-font-heading, 'League Spartan', system-ui, -apple-system, sans-serif);
}


.enh-section-header__heading,
.enh-hero__heading,
.enh-services__heading,
.enh-service-card__title,
.enh-work__heading,
.enh-agency-award__heading,
.enh-cta__heading {
	font-family: var(--enh-font-display);
	font-weight: 700;
	letter-spacing: 0;
}

/* ── Shared utilities ── */
.enh-eyebrow {
	margin: 0 auto 1.4rem;
	color: var(--enh-yellow);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
}

.enh-eyebrow--light {
	color: rgba(255, 255, 255, 0.5);
}

.enh-section-header {
	margin-bottom: 3rem;
}

.enh-section-header__heading {
	max-width: 68rem;
	font-size: 3.65rem;
	line-height: 1.02;
	color: #0e0e0e;
}

/* ── Shared buttons ── */
.enh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3.25rem;
	padding: 0 1.75rem;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.15;
	text-decoration: none;
	border: 2px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
	white-space: nowrap;
}

.enh-btn:hover {
	transform: translateY(-1px);
}

.enh-btn--yellow {
	background: var(--enh-yellow);
	color: #0e0e0e;
	border-color: var(--enh-yellow);
}
.enh-btn--blue {
	background: #5900FF;
	color:#fff;
	border-color: #5900FF;
}

.enh-btn--yellow:hover {
	background: #e6a500;
	border-color: #e6a500;
	color: #0e0e0e;
}

.enh-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
}

.enh-btn--ghost:hover {
	border-color: #fff;
	color: #fff;
}

.enh-btn--dark {
	background: var(--enh-dark);
	color: #fff;
	border-color: var(--enh-dark);
}

.enh-btn--dark:hover {
	background: #222;
	color: #fff;
}

.enh-btn--outline {
	background: transparent;
	color: var(--enh-dark);
	border-color: var(--enh-dark);
}

.enh-btn--outline:hover {
	background: var(--enh-dark);
	color: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.enh-hero {
	background: var(--enh-dark);
	display: flex;
	align-items: center;
	min-height: 720px;
	padding: 4rem 0 3.5rem;
	position: relative;
	overflow: hidden;
}

.enh-hero::before {
	content: '';
	position: absolute;
	top: -18rem;
	left: 50%;
	width: min(70rem, 95vw);
	height: 44rem;
	background: radial-gradient(ellipse, rgba(255, 197, 4, 0.16) 0%, rgba(255, 197, 4, 0.06) 38%, transparent 70%);
	transform: translateX(-50%);
	pointer-events: none;
	animation: enh-hero-glow 14s ease-in-out infinite alternate;
}

.enh-hero__inner {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

@keyframes enh-hero-glow {
	from {
		transform: translate3d(-52%, -1%, 0) scale(0.98);
		opacity: 0.78;
	}

	to {
		transform: translate3d(-48%, 3%, 0) scale(1.04);
		opacity: 1;
	}
}

.enh-hero__eyebrow,
.enh-hero__proof {
	margin: 0 auto 1.4rem;
	color: var(--enh-yellow);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
}

.enh-hero__heading {
	max-width: 1080px;
	margin: 0 auto 2.25rem;
	color: #fff;
	font-size: 5.8rem;
	line-height: 0.92;
}

.enh-hero__heading-accent {
	color: var(--enh-yellow);
}

.enh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
	margin-bottom: 2.4rem;
}

.enh-hero__awards {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: center;
	justify-items: center;
	gap: 1.5rem;
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.enh-hero__trust {
	margin: 0 auto 1rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
}

.enh-hero__award {
	display: block;
	width: clamp(118px, 10vw, 170px);
	height: auto;
	max-height: 170px;
	object-fit: contain;
	opacity: 0.86;
}

/* ==========================================================================
   CHALLENGES
   ========================================================================== */
.enh-challenges {
	background: #fff;
	padding: 2.5rem 0;
	overflow: hidden;
}

.enh-challenges__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 8rem);
}

.enh-challenges__intro {
	min-width: 0;
	max-width: 34rem;
}

.enh-challenges__heading {
	margin: 0 0 2rem;
	color: var(--enh-dark);
	font-family: var(--enh-font-display);
	font-size: clamp(2.75rem, 4vw, 3.65rem);
	font-weight: 700;
	line-height: 0.95;
	overflow-wrap: normal;
}

.enh-challenges__heading span {
	display: inline;
	padding: 0.06em 0.1em 0.04em;
	color: var(--enh-dark);
	background: #ffc504;
	border-radius: 0.1em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.enh-challenges__sub {
	max-width: 34rem;
	margin: 0;
	color: #606060;
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.55;
}

.enh-challenges__controls {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: -4rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transform: translateY(-50%);
}

.enh-challenges .enh-work__slider-arrow,
.enh-testimonials .enh-work__slider-arrow {
	transition: none;
}

.enh-challenges .enh-work__slider-arrow:hover,
.enh-testimonials .enh-work__slider-arrow:hover {
	background: #fff;
	border-color: rgba(0, 0, 0, 0.18);
	transform: none;
}

.enh-challenges__viewport {
	position: relative;
	height: 500px;
	overflow: visible;
}

.enh-challenges__slider {
	height: 100%;
	overflow: hidden;
}

.enh-challenges__slider .swiper-slide {
	display: flex;
	align-items: stretch;
	height: auto;
}

.enh-challenges__mobile,
.enh-testimonials__mobile {
	display: none;
}

.enh-challenge-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: clamp(2.25rem, 3vw, 3.25rem);
	border-radius: 1.25rem;
	background: var(--enh-grey);
	color: var(--enh-dark);
	box-shadow: 0 20px 45px -30px rgba(0, 0, 0, 0.45);
}

.enh-challenges__slider .swiper-slide-active .enh-challenge-card {
	background: var(--enh-dark);
	color: #fff;
	box-shadow: 0 28px 55px -32px rgba(0, 0, 0, 0.7);
}

.enh-challenge-card__title {
	max-width: 42rem;
	margin: 0 0 1.25rem;
	color: inherit;
	font-family: var(--enh-font-display);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 0.98;
}

.enh-challenges__slider .swiper-slide-active .enh-challenge-card__title {
	color: var(--enh-yellow);
}

.enh-challenge-card__body {
	max-width: 43rem;
	margin: 0;
	color: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.55;
	opacity: 0.86;
}

/* ==========================================================================
   2026 GLOBAL AGENCY AWARD
   ========================================================================== */
.enh-agency-award {
	background: #fff;
	padding: 2.25rem 0 1rem;
}

.enh-agency-award__card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(2rem, 5vw, 5rem);
	overflow: hidden;
	min-height: 0;
	padding: clamp(2.5rem, 4vw, 3.75rem);
	border-radius: var(--enh-radius);
	background: var(--enh-dark);
	color: #fff;
}

.enh-agency-award__card::before {
	content: '';
	position: absolute;
	right: -10rem;
	bottom: -18rem;
	width: 38rem;
	height: 38rem;
	background: radial-gradient(circle, rgba(255, 197, 4, 0.16) 0%, transparent 68%);
	pointer-events: none;
}

.enh-agency-award__content,
.enh-agency-award__logo {
	position: relative;
	z-index: 1;
}

.enh-agency-award__heading {
	max-width: 50rem;
	margin: 0 0 1.5rem;
	color: #fff;
	font-size: 3.65rem;
	line-height: 0.98;
}

.enh-agency-award__heading span {
	color: var(--enh-yellow);
}

.enh-agency-award__source {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.4;
}

.enh-agency-award__logo {
	width: clamp(150px, 15vw, 220px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.enh-services {
	background: #fff;
	padding: 3.75rem 0 2.75rem;
	text-align: left;
}

.enh-services__intro {
	max-width: 920px;
	margin: 0 0 3.5rem;
}

.enh-services__heading {
	max-width: 56rem;
	margin: 0 0 1rem;
	color: var(--enh-dark);
	font-size: 3.65rem;
	line-height: 0.95;
}

.enh-services__sub {
	max-width: 760px;
	margin: 0;
	color: #3f3f3f;
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.55;
}

.enh-services__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
	grid-auto-flow: dense;
}

.enh-service-card {
	position: relative;
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 260px;
	overflow: hidden;
	border: 0;
	border-radius: 1.25rem;
	padding: 2.35rem 2.35rem 5.25rem;
	background: var(--enh-grey);
	color: var(--enh-dark);
	text-align: left;
	text-decoration: none;
	box-shadow: 0 14px 30px -24px rgba(0, 0, 0, 0.5);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.enh-service-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.65);
	color: var(--enh-dark);
}

.enh-service-card--dark:hover {
	color: #fff;
}

.enh-service-card--dark {
	background: #111;
	color: #fff;
}

.enh-service-card--warm {
	background: var(--enh-grey);
}

.enh-service-card--yellow {
	background: var(--enh-yellow);
}

.enh-service-card--soft {
	background: linear-gradient(120deg, #fff 0%, #fbf8ed 34%, #ffeaa1 70%, var(--enh-yellow) 125%);
	box-shadow:
		0 24px 48px -22px rgba(0, 0, 0, 0.38),
		0 16px 36px -24px rgba(255, 197, 4, 0.45);
}

.enh-service-card--half {
	grid-column: span 3;
	min-height: 250px;
}

.enh-service-card--wide {
	grid-column: span 4;
	min-height: 250px;
}

.enh-service-card--full {
	grid-column: span 6;
	min-height: 250px;
}

.enh-service-card__title {
	max-width: 20rem;
	margin: 0 0 1.25rem;
	color: inherit;
	font-size: 2.25rem;
	line-height: 0.98;
}

.enh-service-card--wide .enh-service-card__title,
.enh-service-card--full .enh-service-card__title {
	max-width: 26rem;
}

.enh-service-card__body {
	max-width: 25rem;
	margin: 0;
	color: currentColor;
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.55;
	opacity: 0.76;
}

.enh-service-card__body a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

.enh-service-card__body a:hover {
	color: inherit;
	text-decoration-thickness: 2px;
}

.enh-service-card__arrow {
	position: absolute;
	right: 1.45rem;
	bottom: 1.45rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.15rem;
	height: 3.15rem;
	border-radius: 50%;
	background: #111;
	color: var(--enh-yellow);
	text-decoration: none;
}

.enh-service-card__arrow:hover {
	color: var(--enh-yellow);
}

.enh-service-card--dark .enh-service-card__arrow {
	background: var(--enh-yellow);
	color: #111;
}

.enh-service-card--dark .enh-service-card__arrow:hover {
	color: #111;
}

.enh-service-card--yellow .enh-service-card__arrow {
	background: #111;
	color: var(--enh-yellow);
}

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */
.enh-cases {
	background: #fff;
	padding: 2.75rem 0 2.75rem;
	overflow: hidden;
}

.enh-work__heading {
	margin: 0 0 1rem;
	color: var(--enh-dark);
	font-family: var(--enh-font-display);
	font-size: 3.65rem;
	font-weight: 700;
	line-height: 0.95;
}

.enh-work__sub {
	margin: 0;
	color: #3f3f3f;
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.55;
}

.enh-work__cta {
	min-width: 260px;
}

.enh-work__slider-controls {
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.enh-work__slider-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 50%;
	background: #fff;
	color: #000;
	font-size: 1.15rem;
	line-height: 1;
	transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
}

.enh-work__slider-arrow:hover {
	background-color: var(--enh-yellow);
	border-color: var(--enh-yellow);
}

.enh-work__slider-arrow.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.enh-work-slider {
	margin-right: calc((100vw - 100%) / -2);
	overflow: visible;
}

.enh-work-slider .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.enh-work-slider .swiper-slide {
	height: auto;
}

.enh-work-slide {
	width: clamp(300px, 25vw, 380px);
	height: auto;
	display: flex;
}

.enh-work-card {
	position: relative;
	display: block;
	width: 100%;
	min-height: 480px;
	height: auto;
	overflow: hidden;
	border: 0;
	border-radius: 1.05rem;
	background: var(--enh-grey);
	box-shadow: 0 10px 18px -14px rgba(0, 0, 0, 0.38);
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enh-work-card:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 14px 22px -16px rgba(0, 0, 0, 0.42);
}

.enh-work-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.enh-work-card:hover .enh-work-card__image {
	transform: scale(1.035);
}

.enh-work-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.86) 68%, #000 100%);
	pointer-events: none;
}

.enh-work-card__content {
	position: absolute;
	right: 2rem;
	bottom: 1.85rem;
	left: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.enh-work-card__client,
.enh-work-card__result {
	display: block;
	font-family: var(--enh-font-display);
	font-weight: 700;
	line-height: 1;
}

.enh-work-card__client {
	color: var(--enh-yellow);
	font-size: 1.55rem;
}

.enh-work-card__result {
	max-width: 18rem;
	color: #fff;
	font-size: 2.25rem;
}

.enh-work-card--zugu .enh-work-card__result {
	max-width: 17rem;
}

.enh-work-card--zugu .enh-work-card__image {
	object-position: center;
}

.enh-work-card--age-care .enh-work-card__image {
	object-position: center;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.enh-testimonials {
	background: #fff;
	padding: 4rem 0 3.5rem;
	overflow: hidden;
}

.enh-testimonials__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 8rem);
}

.enh-testimonials__intro {
	max-width: 36rem;
}

.enh-testimonials__heading span {
	display: inline;
	padding: 0.06em 0.1em 0.04em;
	color: var(--enh-dark);
	background:#ffc504;
	border-radius: 0.1em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.enh-testimonials__heading {
	margin: 0 0 2rem;
	color: var(--enh-dark);
	font-family: var(--enh-font-display);
	font-size: 3.65rem;
	font-weight: 700;
	line-height: 0.95;
}

.enh-testimonials__sub {
	max-width: 34rem;
	margin: 0;
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.55;
	color: #3f3f3f;
}

.enh-testimonials__viewport {
	position: relative;
	height: 500px;
	overflow: visible;
}

.enh-testimonials__controls {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: -4rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transform: translateY(-50%);
}

.enh-testimonials__slider {
	height: 100%;
	overflow: hidden;
}

.enh-testimonials__slider .swiper-slide {
	display: flex;
	align-items: stretch;
	height: auto;
}

.enh-testimonials__slider .enh-quote,
.enh-testimonials__slider .enh-quote--dark,
.enh-testimonials__slider .enh-quote--yellow,
.enh-testimonials__slider .enh-quote--soft {
	background: var(--enh-grey);
	color: var(--enh-dark);
	border-color: transparent;
	box-shadow: 0 20px 45px -30px rgba(0, 0, 0, 0.45);
}

.enh-testimonials__slider .swiper-slide-active .enh-quote {
	background: var(--enh-dark);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 28px 55px -32px rgba(0, 0, 0, 0.7);
}

.enh-testimonials__slider .swiper-slide-active .enh-mark,
.enh-testimonials__slider .swiper-slide-active .enh-quote__company {
	color: var(--enh-yellow);
}

.enh-testimonials__slider .swiper-slide-active .enh-quote__author {
	border-top-color: rgba(255, 255, 255, 0.12);
}

.enh-quote {
	background: var(--enh-grey);
	color: var(--enh-dark);
	border: 0;
	border-radius: 1.25rem;
	padding: 2.25rem;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 14px 32px -28px rgba(0, 0, 0, 0.5);
}

.enh-quote--dark {
	background: var(--enh-dark);
	color: #fff;
}

.enh-quote--yellow {
	background: var(--enh-yellow);
	color: var(--enh-dark);
}

.enh-quote--soft {
	background: linear-gradient(120deg, #fff 0%, #fbf8ed 34%, #ffeaa1 70%, var(--enh-yellow) 125%);
	color: var(--enh-dark);
	box-shadow:
		0 24px 48px -22px rgba(0, 0, 0, 0.38),
		0 16px 36px -24px rgba(255, 197, 4, 0.45);
}

.enh-quote__text {
	font-size: 1rem;
	line-height: 1.65;
	color: currentColor;
	margin-bottom: 2.25rem;
	flex-grow: 1;
	opacity: 0.82;
}

.enh-quote__text p {
	margin: 0;
}

.enh-quote__text p + p {
	margin-top: 1rem;
}

.enh-mark {
	background: none;
	color: inherit;
	font-weight: 700;
	padding: 0;
}

.enh-quote--dark .enh-mark,
.enh-quote--dark .enh-quote__company {
	color: var(--enh-yellow);
}

.enh-quote__author {
	padding-top: 1.25rem;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.enh-quote--dark .enh-quote__author {
	border-top-color: rgba(255, 255, 255, 0.12);
}

.enh-quote__company {
	display: block;
	font-family: var(--enh-font-display);
	font-size: 1.05rem;
	font-weight: 800;
	color: currentColor;
	margin-bottom: 0.3rem;
	line-height: 1.1;
}

.enh-quote__name {
	display: block;
	font-size: 0.78rem;
	color: currentColor;
	line-height: 1.45;
	opacity: 0.6;
}

/* ==========================================================================
   VIDEOS
   ========================================================================== */
.enh-videos {
	position: relative;
	overflow: hidden;
	background: var(--enh-dark);
	padding: 4.5rem 0 7.75rem;
}

.enh-videos::before {
	content: '';
	position: absolute;
	top: -20rem;
	right: -14rem;
	width: min(62rem, 90vw);
	height: 48rem;
	background: radial-gradient(ellipse, rgba(255, 197, 4, 0.16) 0%, rgba(255, 197, 4, 0.06) 38%, transparent 70%);
	pointer-events: none;
	animation: enh-video-glow 16s ease-in-out infinite alternate;
}

.enh-videos > .container {
	position: relative;
	z-index: 1;
}

@keyframes enh-video-glow {
	from {
		transform: translate3d(-2%, -1%, 0) scale(0.98);
		opacity: 0.75;
	}

	to {
		transform: translate3d(3%, 4%, 0) scale(1.05);
		opacity: 1;
	}
}

.enh-videos .enh-section-header__heading {
	color: #fff;
}

.enh-videos__sub {
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
	max-width: 540px;
	margin-top: 0.25rem;
}

.enh-videos__mobile {
	display: none;
}

/* Facade wrapper */
.enh-video {
	cursor: pointer;
	border-radius: var(--enh-radius);
	overflow: hidden;
	position: relative;
	background: #1a1a1a;
	display: block;
	/* Force 16:9 */
	aspect-ratio: 16 / 9;
}

.enh-video:focus-visible {
	outline: 3px solid var(--enh-yellow);
	outline-offset: 3px;
}

.enh-video__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease, filter 0.3s ease;
	filter: brightness(0.75);
}

.enh-video:hover .enh-video__thumb {
	transform: scale(1.03);
	filter: brightness(0.55);
}

/* Overlay */
.enh-video__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

/* Play button circle */
.enh-video__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: var(--enh-yellow);
	border-radius: 50%;
	color: var(--enh-dark);
	transition: transform 0.2s ease, background 0.2s ease;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.enh-video:hover .enh-video__play {
	transform: scale(1.12);
	background: #fff;
}

/* Title label below thumbnail */
.enh-video__label {
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	margin: 0.9rem 0 0;
	line-height: 1.4;
}

.enh-lightbox-open {
	overflow: hidden;
}

.enh-meetings-modal {
	position: fixed;
	z-index: 2147483647;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 4vw, 3rem);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.enh-meetings-modal[hidden] {
	display: none;
}

.enh-meetings-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.enh-meetings-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(8px);
}

.enh-meetings-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(980px, 100%);
	height: min(680px, calc(100vh - 6rem));
	overflow: visible;
	border-radius: var(--enh-radius);
	background: #fff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
	transform: translateY(12px) scale(0.98);
	transition: transform 0.2s ease;
}

.enh-meetings-modal.is-open .enh-meetings-modal__dialog {
	transform: translateY(0) scale(1);
}

.enh-meetings-modal__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: inherit;
	background: #fff;
}

.enh-meetings-modal__close {
	position: absolute;
	z-index: 2;
	top: -3.5rem;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 50%;
	background: #fff;
	color: #111;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.enh-meetings-modal__close:hover {
	background: var(--enh-yellow);
	transform: scale(1.05);
}

.enh-video-lightbox {
	position: fixed;
	z-index: 2147483647;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 4vw, 3rem);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.enh-video-lightbox[hidden] {
	display: none;
}

.enh-video-lightbox.is-open {
	visibility: visible;
	opacity: 1;
}

.enh-video-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(8px);
}

.enh-video-lightbox__dialog {
	position: relative;
	z-index: 1;
	width: min(1100px, 100%);
	transform: translateY(12px) scale(0.98);
	transition: transform 0.2s ease;
}

.enh-video-lightbox.is-open .enh-video-lightbox__dialog {
	transform: translateY(0) scale(1);
}

.enh-video-lightbox__player {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: var(--enh-radius);
	background: #000;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.enh-video-lightbox__player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.enh-video-lightbox__close {
	position: absolute;
	z-index: 2;
	top: -3.5rem;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: #fff;
	color: #111;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.enh-video-lightbox__close:hover {
	background: var(--enh-yellow);
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.enh-hero::before,
	.enh-videos::before,
	.enh-meetings-modal,
	.enh-meetings-modal__dialog,
	.enh-video-lightbox,
	.enh-video-lightbox__dialog {
		animation: none;
		transition: none;
	}
}

/* ==========================================================================
   UPCOMING EVENTS
   ========================================================================== */
.enh-events {
	background: #fff;
	padding: 2.5rem 0 5.5rem;
}

.enh-events__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	align-items: center;
	gap: clamp(2rem, 3.5vw, 4rem);
}

.enh-events__intro {
	max-width: 36rem;
}

.enh-events__heading {
	margin: 0 0 1.5rem;
	color: var(--enh-dark);
	font-family: var(--enh-font-display);
	font-size: 3.65rem;
	font-weight: 700;
	line-height: 0.95;
}

.enh-events__sub {
	max-width: 32rem;
	margin: 0 0 2rem;
	color: #3f3f3f;
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.55;
}

.enh-events__list {
	display: grid;
	gap: 1.5rem;
}

.enh-event-card {
	position: relative;
	display: grid;
	grid-template-columns: 5rem minmax(0, 1fr);
	align-items: center;
	gap: 2rem;
	min-height: 170px;
	padding: 2rem 5.5rem 2rem 2rem;
	border-radius: 1.25rem;
	background: var(--enh-grey);
	color: var(--enh-dark);
	text-decoration: none;
	box-shadow: 0 20px 45px -30px rgba(0, 0, 0, 0.45);
}

.enh-event-card:hover {
	color: var(--enh-dark);
}

.enh-event-card--dark,
.enh-event-card--dark:hover {
	background: var(--enh-dark);
	color: #fff;
}

.enh-event-card__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: inherit;
	font-family: var(--enh-font-display);
	line-height: 1;
}

.enh-event-card__date strong {
	font-size: 2.75rem;
	font-weight: 700;
}

.enh-event-card__date span {
	margin-top: 0.25rem;
	color: var(--enh-yellow);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.enh-event-card__content {
	display: block;
}

.enh-event-card__logo {
	display: block;
	width: auto;
	max-width: min(16rem, 100%);
	height: 2rem;
	margin-bottom: 1rem;
	object-fit: contain;
	object-position: left center;
}

.enh-event-card__logo--invert {
	filter: invert(1);
}

.enh-event-card__body {
	display: block;
	color: currentColor;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.55;
	opacity: 0.72;
}

.enh-event-card__arrow {
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: #111;
	color: var(--enh-yellow);
}

.enh-event-card--dark .enh-event-card__arrow {
	background: var(--enh-yellow);
	color: #111;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.enh-cta {
	background: #fff;
	padding: 1.75rem 0 3.75rem;
}

.enh-cta__card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	align-items: stretch;
	gap: clamp(2rem, 5vw, 5rem);
	overflow: hidden;
	background: var(--enh-dark);
	border-radius: var(--enh-radius);
	padding: clamp(3rem, 5vw, 5rem);
	text-align: left;
}

.enh-cta__card::before {
	content: '';
	position: absolute;
	top: -14rem;
	left: -12rem;
	width: 34rem;
	height: 34rem;
	background: radial-gradient(circle, rgba(255, 197, 4, 0.18) 0%, transparent 68%);
	pointer-events: none;
}

.enh-cta__content,
.enh-cta__action-card {
	position: relative;
	z-index: 1;
}

.enh-cta__content {
	align-self: center;
}

.enh-cta__heading {
	max-width: 43rem;
	margin: 0 0 1.5rem;
	font-size: 3.65rem;
	line-height: 0.98;
	color: #fff;
}

.enh-cta__sub {
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.68);
	max-width: 42rem;
	margin: 0 0 2rem;
}

.enh-cta__action-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 3vw, 3rem);
	border-radius: 1.25rem;
	background: var(--enh-yellow);
	color: var(--enh-dark);
	box-shadow: 0 24px 55px -32px rgba(0, 0, 0, 0.7);
}

.enh-cta__action-heading {
	margin: 0 0 1rem;
	font-family: var(--enh-font-display);
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 700;
	line-height: 0.98;
}

.enh-cta__action-copy {
	margin: 0 0 2rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.55;
	opacity: 0.72;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
	#en-home .container {
		max-width: calc(100% - 2rem);
	}

	.enh-section-header__heading,
	.enh-challenges__heading,
	.enh-testimonials__heading,
	.enh-services__heading,
	.enh-work__heading,
	.enh-events__heading,
	.enh-agency-award__heading,
	.enh-cta__heading {
		font-size: 2.85rem;
	}

	.enh-challenges {
		padding: 2rem 0;
	}

	.enh-challenges__layout {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
		gap: 2.5rem;
	}

	.enh-challenges__viewport {
		height: 440px;
	}

	.enh-testimonials {
		padding: 3.75rem 0 1.5rem;
	}

	.enh-testimonials__layout {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
		gap: 2.5rem;
	}

	.enh-testimonials__viewport {
		height: 440px;
	}

	.enh-events__layout {
		grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
		gap: 2rem;
	}

	.enh-event-card {
		grid-template-columns: 4rem minmax(0, 1fr);
		gap: 1.5rem;
		padding-left: 1.5rem;
	}

	.enh-challenge-card {
		min-height: 0;
		padding: 2.25rem;
	}

	.enh-challenge-card__title {
		font-size: 2.1rem;
	}

	.enh-challenge-card__body {
		font-size: 1rem;
	}

	.enh-agency-award__card {
		min-height: 0;
		padding: 2.5rem;
	}

	.enh-agency-award__logo {
		width: 145px;
	}

	.enh-services__intro {
		margin-bottom: 3rem;
	}

	.enh-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.enh-service-card,
	.enh-service-card--half,
	.enh-service-card--wide,
	.enh-service-card--full {
		grid-column: span 1;
	}

	.enh-work-card {
		min-height: 450px;
	}

	.enh-work-slide {
		width: 44vw;
	}

	.enh-work-card__result {
		font-size: 2.05rem;
	}

	.enh-hero {
		min-height: 640px;
	}

	.enh-hero__heading {
		font-size: 4.25rem;
	}

	.enh-hero__awards {
		max-width: 760px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.enh-hero__award {
		width: clamp(86px, 18vw, 120px);
	}

	.enh-cta__card {
		grid-template-columns: 1fr 0.85fr;
		gap: 2rem;
		padding: 3rem 2rem;
	}
}

@media (max-width: 575px) {
	#en-home .container {
		max-width: 100%;
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}

	#en-home h2 {
		max-width: 100%;
		font-size: 2rem;
		line-height: 1.1;
		overflow-wrap: anywhere;
	}

	#en-home h2 span {
		max-width: 100%;
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.enh-challenges {
		padding: 1.75rem 0;
	}

	.enh-challenges__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.enh-testimonials {
		padding: 3.5rem 0 1.5rem;
	}

	.enh-testimonials__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.enh-testimonials__heading {
		margin-bottom: 1.25rem;
	}

	.enh-testimonials__sub {
		font-size: 1.05rem;
	}

	.enh-testimonials__desktop {
		display: none;
	}

	.enh-testimonials__mobile {
		display: block;
		min-width: 0;
	}

	.enh-testimonials__mobile-controls {
		display: flex;
		flex-direction: row;
		gap: 0.75rem;
		margin-bottom: 1rem;
	}

	.enh-testimonials__mobile-slider {
		width: 100%;
		overflow: hidden;
	}

	.enh-testimonials__mobile-slider .swiper-slide {
		display: flex;
		height: auto;
	}

	.enh-testimonials__mobile-slider .enh-quote {
		min-height: 0;
		height: auto;
	}

	.enh-testimonials__mobile-slider .swiper-slide-active .enh-quote {
		background: var(--enh-dark);
		color: #fff;
		border-color: transparent;
	}

	.enh-testimonials__mobile-slider .swiper-slide-active .enh-mark,
	.enh-testimonials__mobile-slider .swiper-slide-active .enh-quote__company {
		color: var(--enh-yellow);
	}

	.enh-testimonials__mobile-slider .swiper-slide-active .enh-quote__author {
		border-top-color: rgba(255, 255, 255, 0.12);
	}

	.enh-events {
		padding: 2.25rem 0 4.5rem;
	}

	.enh-videos {
		padding: 3.75rem 0 6.25rem;
	}

	.enh-videos__desktop {
		display: none;
	}

	.enh-videos__mobile {
		display: block;
		min-width: 0;
	}

	.enh-videos__mobile-controls {
		display: flex;
		gap: 0.75rem;
		margin-bottom: 1rem;
	}

	.enh-videos__mobile-slider {
		width: 100%;
		overflow: hidden;
	}

	.enh-videos__mobile-slider .swiper-slide {
		height: auto;
	}

	.enh-events__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.enh-events__heading {
		margin-bottom: 1.25rem;
	}

	.enh-events__sub {
		font-size: 1.05rem;
	}

	.enh-events__intro {
		max-width: none;
	}

	.enh-event-card {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 0.5rem;
		min-height: 0;
		padding: 1.25rem;
	}

	.enh-event-card__arrow {
		position: static;
		justify-self: end;
		margin-top: 0.5rem;
	}

	.enh-event-card__date {
		flex-direction: row;
		align-items: baseline;
		justify-content: flex-start;
		gap: 0.35rem;
		margin-bottom: 0.25rem;
	}

	.enh-event-card__date strong {
		font-size: 1.5rem;
	}

	.enh-event-card__logo {
		height: 1.5rem;
	}

	.enh-event-card__body {
		font-size: 0.9rem;
	}

	.enh-challenges__heading {
		margin-bottom: 1.25rem;
	}

	.enh-challenges__sub {
		font-size: 1.05rem;
	}

	.enh-challenges__desktop {
		display: none;
	}

	.enh-challenges__mobile {
		display: block;
		min-width: 0;
	}

	.enh-challenges__mobile-controls {
		display: flex;
		flex-direction: row;
		gap: 0.75rem;
		margin-bottom: 1rem;
	}

	.enh-challenges__mobile-slider {
		width: 100%;
		overflow: hidden;
	}

	.enh-challenges__mobile-slider .swiper-slide {
		display: flex;
		height: auto;
	}

	.enh-challenges__mobile-slider .enh-challenge-card {
		height: auto;
		min-height: 320px;
	}

	.enh-challenges__mobile-slider .swiper-slide-active .enh-challenge-card {
		background: var(--enh-dark);
		color: #fff;
		box-shadow: 0 28px 55px -32px rgba(0, 0, 0, 0.7);
	}

	.enh-challenges__mobile-slider .swiper-slide-active .enh-challenge-card__title {
		color: var(--enh-yellow);
	}

	.enh-challenge-card {
		min-height: 0;
		padding: 2rem;
	}

	.enh-challenge-card__title {
		font-size: 2rem;
	}

	.enh-challenge-card__body {
		font-size: 1rem;
	}

	.enh-agency-award {
		padding: 1rem 0 0.75rem;
	}

	.enh-agency-award__card {
		grid-template-columns: 1fr;
		gap: 2rem;
		min-height: 0;
		padding: 2.25rem 2rem;
	}

	.enh-agency-award__heading {
		margin-bottom: 1.5rem;
	}

	.enh-agency-award__heading br {
		display: none;
	}

	.enh-agency-award__source {
		font-size: 1rem;
	}

	.enh-agency-award__logo {
		width: 140px;
		justify-self: start;
	}

	.enh-cta__card {
		grid-template-columns: 1fr;
	}

	.enh-cta__action-card {
		padding: 2rem;
	}

	.enh-cta__content .enh-btn,
	.enh-cta__action-card .enh-btn {
		width: 100%;
	}

	.enh-services {
		padding: 2.75rem 0 3rem;
	}

	.enh-services__sub {
		font-size: 1rem;
	}

	.enh-services__grid {
		grid-template-columns: 1fr;
	}

	.enh-service-card {
		min-height: 240px;
		padding: 2rem 2rem 4.75rem;
	}

	.enh-service-card--half,
	.enh-service-card--wide,
	.enh-service-card--full {
		min-height: 240px;
	}

	.enh-service-card__title {
		font-size: 1.8rem;
	}

	.enh-service-card__arrow {
		width: 2.75rem;
		height: 2.75rem;
		font-size: 1.25rem;
	}

	.enh-work__cta {
		width: 100%;
		min-width: 0;
	}

	.enh-work__slider-controls {
		justify-content: flex-start;
	}

	.enh-cases .row.mb-5 {
		margin-bottom: 1rem !important;
	}

	.enh-work-slider {
		margin-right: 0;
		overflow: hidden;
		padding-bottom: 16px;
		margin-bottom: -16px;
	}

	.enh-work-slide {
		width: 100%;
	}

	.enh-work-card {
		min-height: 400px;
	}

	.enh-work-card__content {
		right: 1.5rem;
		bottom: 1.5rem;
		left: 1.5rem;
	}

	.enh-work-card__client {
		font-size: 1.45rem;
	}

	.enh-work-card__result {
		font-size: 2rem;
	}

	.enh-hero {
		min-height: auto;
		padding: 2.5rem 0 2rem;
	}

	.enh-hero__heading {
		font-size: 3rem;
		line-height: 0.98;
	}

	.enh-hero__awards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.9rem;
		padding-top: 1.75rem;
	}

	.enh-meetings-modal {
		padding: 0.75rem;
	}

	.enh-meetings-modal__dialog {
		height: calc(100vh - 1.5rem);
		border-radius: 1rem;
	}

	.enh-meetings-modal__close {
		top: 0.75rem;
		right: 0.75rem;
	}

	.enh-hero__award {
		width: clamp(70px, 27vw, 96px);
	}

	.enh-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.enh-hero__actions .enh-btn {
		justify-content: center;
	}
}
