/*
 * Home codee enihcam.fr
 * ---------------------------------------------------------------------------
 * DA reprise telle quelle du site : boutons en radial-gradient primary -> accent,
 * rayon de 5 px, Poppins 500 a 16 px sans capitales (regles du kit Elementor
 * 8573), corps de texte Inter 16/400 (Shoptimizer). Les valeurs apres la virgule
 * ne sont que des filets de securite si une variable disparaissait.
 * Aucune regle ne sort de .eh-home.
 */

.eh-home {
	/* Couleurs du kit */
	--eh-ink:    var(--e-global-color-primary,  #0F222D);
	--eh-accent: var(--e-global-color-accent,   #457895);
	--eh-body:   var(--e-global-color-text,     #555555);
	--eh-white:  var(--e-global-color-21bfb04,  #FFFFFF);
	--eh-glossy: var(--e-global-color-ad41708,  #E7F0F7);
	--eh-line:   var(--e-global-color-57a29b1,  #D9D9D9);
	--eh-soft:   var(--e-global-color-d345fd2,  #A7A7A7);
	--eh-muted:  var(--e-global-color-08fcc9d,  #787878);

	--eh-deep: #060E13;
	--eh-deep: color-mix(in srgb, var(--eh-ink) 42%, #000);
	--eh-tint: #F4F8FB;
	--eh-tint: color-mix(in srgb, var(--eh-glossy) 55%, #fff);
	--eh-onink: #C9D3D9;
	--eh-onink: color-mix(in srgb, var(--eh-glossy) 72%, var(--eh-soft));

	/* Signature graphique du site */
	--eh-radius: 5px;
	--eh-pill: 100px;
	--eh-grad: radial-gradient(at top left, var(--eh-ink) 0%, var(--eh-accent) 100%);
	--eh-grad-flat: var(--eh-accent);
	--eh-shadow: 0 1px 3px rgba(15, 34, 45, .05), 0 10px 30px rgba(15, 34, 45, .07);
	--eh-shadow-lift: 0 4px 12px rgba(15, 34, 45, .09), 0 22px 50px rgba(15, 34, 45, .14);

	/* Typo du kit */
	--eh-head: var(--e-global-typography-primary-font-family, "Poppins"), "Helvetica Neue", Arial, sans-serif;

	--eh-gap: 14px;
	--eh-wrap: 1170px;

	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: var(--eh-white);
	color: var(--eh-body);
	font-size: 16px;
	line-height: 1.65;
	overflow: hidden;
}

.eh-home *,
.eh-home *::before,
.eh-home *::after { box-sizing: border-box; }

.eh-home img,
.eh-home video { max-width: 100%; }

/* Le theme souligne les liens du contenu : ici les liens sont tous dessines par leurs propres classes. */
.eh-home a { text-decoration: none !important; border-bottom: 0; box-shadow: none; }
.eh-home .eh-link--underline { border-bottom: 1px solid var(--eh-line); }

/* --------------------------------------------------------------- primitives */

.eh-wrap { max-width: var(--eh-wrap); margin: 0 auto; padding: 0 20px; }
.eh-wrap--wide { max-width: 1340px; }
.eh-section { padding: 82px 0 86px; background: var(--eh-white); }
.eh-section--tint { background: var(--eh-tint); }

.eh-home .eh-h2,
.eh-home .eh-h3,
.eh-home .eh-h4,
.eh-home .eh-hero__title {
	font-family: var(--eh-head);
	font-weight: 800;
	color: var(--eh-ink);
	line-height: 1.08;
	letter-spacing: -.015em;
	margin: 0;
	text-transform: uppercase;
}
.eh-home .eh-h2 { font-size: clamp(28px, 3.1vw, 42px); }
.eh-home .eh-h3 { font-size: clamp(21px, 2vw, 27px); }
.eh-home .eh-h4 { font-size: 19px; font-weight: 700; text-transform: none; letter-spacing: -.005em; }
.eh-home .eh-h3--light { color: var(--eh-white); }

.eh-home .eh-p { margin: 0; font-size: 15.5px; line-height: 1.72; color: var(--eh-body); }
.eh-home .eh-p--lg { font-size: 17px; max-width: 490px; }
.eh-home .eh-p--light { color: var(--eh-onink); }

/*
 * Le patch : le mot qui compte passe sur l'aplat degrade du site, coins a 5 px
 * et une legere bascule pour l'energie. C'est la signature de la page.
 */
.eh-patch {
	display: inline-block;
	background-image: var(--eh-grad);
	color: var(--eh-white);
	border-radius: var(--eh-radius);
	padding: .02em .3em .1em;
	margin: 0 .04em;
	transform: rotate(-1.4deg);
}
.eh-patch--light { background-image: none; background-color: var(--eh-white); color: var(--eh-ink); }
.eh-patch--ghost { background-image: none; background-color: rgba(255, 255, 255, .14); color: var(--eh-white); }

/* Pastille de section : petite pilule avec un point qui bat. */
.eh-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--eh-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	line-height: 1;
	padding: 8px 15px 8px 13px;
	border-radius: var(--eh-pill);
	background: var(--eh-glossy);
	color: var(--eh-accent);
}
.eh-chip::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	animation: eh-pulse 2.4s ease-in-out infinite;
}
.eh-chip--dark { background: rgba(255, 255, 255, .14); color: var(--eh-white); }
.eh-chip--outline { background: var(--eh-white); color: var(--eh-accent); box-shadow: inset 0 0 0 1px var(--eh-line); }
@keyframes eh-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }

.eh-badge {
	display: inline-block;
	font-family: var(--eh-head);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	padding: 6px 13px;
	border-radius: var(--eh-pill);
	background: var(--eh-glossy);
	color: var(--eh-accent);
}
.eh-badge--outline { background: var(--eh-white); box-shadow: inset 0 0 0 1px var(--eh-line); }
.eh-badge--dark { background: rgba(255, 255, 255, .14); color: var(--eh-white); }

.eh-eyebrow {
	font-family: var(--eh-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin: 0;
}

/* Boutons : exactement les reglages du kit Elementor 8573. */
.eh-home .eh-btn {
	font-family: var(--eh-head);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 25px;
	min-height: 52px;
	border: 0;
	border-radius: var(--eh-radius);
	text-decoration: none;
	transition: background-color .2s ease, background-image .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.eh-home .eh-btn:hover,
.eh-home .eh-btn:focus-visible { transform: translateY(-2px); }
.eh-home .eh-btn--solid { background-image: var(--eh-grad); color: var(--eh-white); box-shadow: 0 6px 18px rgba(69, 120, 149, .28); }
.eh-home .eh-btn--solid:hover,
.eh-home .eh-btn--solid:focus-visible { background-image: radial-gradient(at top left, var(--eh-accent) 0%, var(--eh-accent) 100%); color: var(--eh-white); box-shadow: 0 10px 26px rgba(69, 120, 149, .36); }
.eh-home .eh-btn--white { background: var(--eh-white); color: var(--eh-ink); box-shadow: 0 6px 18px rgba(6, 14, 19, .28); }
.eh-home .eh-btn--white:hover { background: var(--eh-glossy); color: var(--eh-ink); }
.eh-home .eh-btn--ghost { background: transparent; color: var(--eh-ink); box-shadow: inset 0 0 0 1px var(--eh-line); }
.eh-home .eh-btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--eh-accent); color: var(--eh-accent); }
.eh-home .eh-btn--ghost-light { background: rgba(255, 255, 255, .06); color: var(--eh-white); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3); }
.eh-home .eh-btn--ghost-light:hover { background: rgba(255, 255, 255, .14); color: var(--eh-white); box-shadow: inset 0 0 0 1px var(--eh-white); }

.eh-home .eh-link {
	font-family: var(--eh-head);
	font-size: 15px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: gap .2s ease, color .2s ease;
}
.eh-home .eh-link:hover { gap: 13px; }
.eh-home .eh-link--accent { color: var(--eh-accent); }
.eh-home .eh-link--muted { color: var(--eh-soft); }
.eh-home .eh-link--light { color: var(--eh-white); }
.eh-home .eh-link--underline { color: var(--eh-ink); border-bottom: 1px solid var(--eh-line); padding-bottom: 3px; }
.eh-home .eh-link--underline:hover { border-color: var(--eh-accent); color: var(--eh-accent); }

.eh-icon { flex: 0 0 auto; }
.eh-zeiss { font-family: var(--eh-head); font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--eh-ink); box-shadow: inset 0 0 0 1px var(--eh-line); border-radius: 3px; padding: 5px 7px; flex: 0 0 auto; }

/* --------------------------------------------------------------------- HERO */

.eh-hero { position: relative; background: var(--eh-deep); overflow: hidden; isolation: isolate; }
.eh-hero__wrap { position: relative; z-index: 1; min-height: 560px; display: flex; align-items: center; }
.eh-hero__glow { position: absolute; right: 2%; top: -160px; width: 820px; height: 780px; border-radius: 50%; background: radial-gradient(circle, rgba(69, 120, 149, .26) 0%, rgba(69, 120, 149, .08) 44%, transparent 68%); pointer-events: none; }

/*
 * Le fondu est porte par les conteneurs, pas par la balise <video> : Chrome
 * n'applique pas mask-image sur un element video. Deux masques a une seule
 * couche imbriques (vertical puis horizontal), pas de mask-composite.
 */
/* Video pleine hauteur, collee au bord droit de l'ecran ; fondu vers le fond a gauche, leger voile en bas
   pour que les cartes univers (qui mordent sur le hero) restent lisibles. Le masque est porte par un div :
   mask-image ne s'applique pas sur <video> dans Chrome. */
.eh-hero__media {
	position: absolute; right: 0; top: 0; bottom: 104px;
	width: clamp(640px, 60vw, 1180px); pointer-events: none; z-index: 0;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
}
.eh-hero__mask {
	position: absolute; inset: 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 16%, rgba(0, 0, 0, .8) 32%, #000 46%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 16%, rgba(0, 0, 0, .8) 32%, #000 46%, #000 100%);
}
.eh-hero__video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 78%; filter: saturate(.96) contrast(1.04); }
.eh-hero__veil { position: absolute; inset: 0; background: linear-gradient(205deg, rgba(6, 14, 19, 0) 34%, rgba(15, 34, 45, .42) 100%); pointer-events: none; }
.eh-hero__rule { position: absolute; left: 20px; top: 40px; width: 210px; height: 1px; background: linear-gradient(90deg, var(--eh-accent) 0%, rgba(69, 120, 149, 0) 100%); pointer-events: none; }
.eh-hero__diamond { position: absolute; left: 222px; top: 32px; width: 17px; height: 17px; border: 1px solid var(--eh-accent); border-radius: 3px; transform: rotate(45deg); pointer-events: none; }
.eh-hero__wash { position: absolute; inset: 0; background: linear-gradient(90deg, var(--eh-deep) 0%, rgba(6, 14, 19, .55) 34%, rgba(6, 14, 19, 0) 56%); pointer-events: none; }
.eh-hero__eyebrow { display: flex; align-items: center; gap: 12px; margin: 0; font-family: var(--eh-head); font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--eh-soft); }
.eh-hero__eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--eh-accent); border-radius: 2px; flex: 0 0 auto; }
/* Un seul bloc de texte dans le flex : sinon, sur mobile, le texte et le span passent a la ligne chacun de leur cote (mots dans le desordre). */
.eh-hero__eyebrow-txt { min-width: 0; line-height: 1.5; }
.eh-hero__body { position: relative; width: 100%; max-width: 560px; padding: 56px 0 196px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.eh-home .eh-hero__title { font-size: clamp(34px, 3.6vw, 52px); font-weight: 800; letter-spacing: -.022em; color: var(--eh-white); text-wrap: balance; }
.eh-hero__lead { margin: 0; font-size: 16.5px; line-height: 1.68; color: var(--eh-onink); max-width: 430px; }
.eh-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 4px; }

/* ---------------------------------------------------------------- 4 UNIVERS */

.eh-univers { background: var(--eh-white); padding: 0 0 72px; }
.eh-home .eh-univers__grid { position: relative; z-index: 2; margin-top: -120px; max-width: 1300px; }
.eh-univers__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.eh-univers__card { position: relative; display: block; aspect-ratio: 27 / 36; overflow: hidden; border-radius: var(--eh-radius); background: var(--eh-ink); text-decoration: none; box-shadow: 0 22px 46px rgba(15, 34, 45, .28), inset 0 1px 0 rgba(255, 255, 255, .18); transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s ease; }
.eh-univers__card:hover { transform: translateY(-6px); box-shadow: 0 30px 56px rgba(15, 34, 45, .34), inset 0 1px 0 rgba(255, 255, 255, .28); }
/* Photos pleine couleur (demande client 14/09 : elles doivent attirer l'oeil) ; le voile ne couvre que le bas, pour le texte. */
.eh-home .eh-univers__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; filter: saturate(1.18) contrast(1.06); transition: transform .7s cubic-bezier(.2, .7, .3, 1), filter .5s ease; }
.eh-univers__card:hover .eh-univers__img { transform: scale(1.04); filter: saturate(1.3) contrast(1.08) brightness(1.04); }
.eh-univers__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, transparent 52%, rgba(6, 14, 19, .55) 70%, rgba(6, 14, 19, .9) 100%); transition: opacity .4s ease; }
.eh-univers__idx { position: absolute; top: 14px; right: 16px; font-family: var(--eh-head); font-size: 44px; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .28); transition: color .4s ease, -webkit-text-stroke-color .4s ease; }
.eh-univers__card:hover .eh-univers__idx { color: rgba(255, 255, 255, .9); -webkit-text-stroke-color: transparent; }
.eh-univers__bar { position: absolute; left: 0; top: 0; height: 3px; width: 40px; background-image: var(--eh-grad); transition: width .45s cubic-bezier(.2, .7, .3, 1); }
.eh-univers__card:hover .eh-univers__bar { width: 100%; }
.eh-univers__body { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; gap: 10px; padding: 22px 20px 22px; }
.eh-univers__ico { display: flex; align-items: center; justify-content: flex-start; height: 34px; filter: drop-shadow(0 2px 6px rgba(6, 14, 19, .5)); transition: transform .3s ease; }
.eh-univers__card:hover .eh-univers__ico { transform: translateY(-3px) scale(1.05); }
.eh-univers__title { font-family: var(--eh-head); font-size: 21px; font-weight: 800; letter-spacing: -.018em; text-transform: uppercase; color: var(--eh-white); line-height: 1.06; }
.eh-univers__names { display: flex; flex-direction: column; gap: 8px; }
.eh-univers__sub { font-family: var(--eh-head); font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .82); line-height: 1.3; }
.eh-univers__soon { align-self: flex-start; color: var(--eh-white); background-image: var(--eh-grad); border-radius: var(--eh-pill); padding: 4px 11px; font-family: var(--eh-head); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; }
.eh-univers__go { display: inline-flex; align-items: center; gap: 8px; font-family: var(--eh-head); font-size: 14px; font-weight: 500; color: var(--eh-white); transition: gap .25s ease; }
.eh-univers__go .eh-icon { width: 26px; height: 26px; padding: 5px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35); box-sizing: border-box; transition: background-color .25s ease, box-shadow .25s ease; }
.eh-univers__card:hover .eh-univers__go { gap: 12px; }
.eh-univers__card:hover .eh-univers__go .eh-icon { background: var(--eh-white); color: var(--eh-ink); box-shadow: none; }

/* ------------------------------------------------- REASSURANCE (DEFILEMENT) */

.eh-marquee { background: var(--eh-white); border-bottom: 1px solid var(--eh-line); padding: 22px 0; overflow: hidden; }
.eh-marquee__track { display: flex; width: max-content; animation: eh-mq 44s linear infinite; }
.eh-marquee:hover .eh-marquee__track { animation-play-state: paused; }
@keyframes eh-mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.eh-marquee__item { display: flex; align-items: center; gap: 14px; width: 304px; padding: 0 24px; flex: 0 0 auto; }
.eh-home .eh-picto { flex: 0 0 auto; width: 46px; height: 46px; display: block; }
.eh-home .eh-icon--media { width: 44px; height: 44px; border-radius: var(--eh-radius); object-fit: contain; display: block; flex: 0 0 auto; }
.eh-marquee__item + .eh-marquee__item { border-left: 1px solid var(--eh-line); }
.eh-marquee__text { display: flex; flex-direction: column; gap: 2px; }
.eh-marquee__title { font-family: var(--eh-head); font-size: 14px; font-weight: 600; color: var(--eh-ink); line-height: 1.25; }
.eh-marquee__sub { font-size: 12.5px; line-height: 1.35; color: var(--eh-muted); }

/* --------------------------------------------------------------- SHOWROOM */

.eh-show { position: relative; background: var(--eh-deep); color: var(--eh-white); overflow: hidden; isolation: isolate; }
.eh-show__orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.eh-show__orb--a { width: 900px; height: 900px; right: -260px; top: -380px; background: radial-gradient(circle, rgba(69, 120, 149, .32) 0%, rgba(69, 120, 149, .08) 40%, transparent 68%); }
.eh-show__orb--b { width: 520px; height: 520px; left: -200px; bottom: -220px; background: radial-gradient(circle, rgba(15, 34, 45, .9) 0%, transparent 70%); }
.eh-show__inner { position: relative; padding-top: 78px; padding-bottom: 60px; }
.eh-show__head { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.eh-home .eh-h2--light { color: var(--eh-white); }

.eh-show__stage { position: relative; min-height: 520px; }
.eh-show__slide { position: absolute; inset: 0; display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; align-items: center; opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility 0s linear .55s; }
.eh-show__slide.is-active { position: relative; opacity: 1; visibility: visible; transition: opacity .55s ease .1s, visibility 0s; }
.eh-show__slide > * { min-width: 0; }

.eh-show__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; transform: translateY(14px); opacity: 0; transition: transform .6s cubic-bezier(.2, .7, .3, 1) .15s, opacity .6s ease .15s; }
.eh-show__slide.is-active .eh-show__copy { transform: none; opacity: 1; }
.eh-show__sport { margin: 0; font-family: var(--eh-head); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--eh-accent); }
.eh-home .eh-show__name { font-family: var(--eh-head); font-size: clamp(38px, 4.6vw, 64px); font-weight: 800; letter-spacing: -.03em; line-height: .98; text-transform: uppercase; color: var(--eh-white); margin: 0; }
.eh-show__lead { max-width: 440px; }
.eh-show__points { margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.eh-show__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 6px; }
.eh-show__price { font-family: var(--eh-head); font-size: 14px; color: var(--eh-onink); }
.eh-show__price .woocommerce-Price-amount { font-size: 22px; font-weight: 800; color: var(--eh-white); margin-left: 4px; }

.eh-show__visual { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.eh-show__ghost { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -54%); font-family: var(--eh-head); font-size: clamp(160px, 22vw, 300px); font-weight: 900; letter-spacing: -.05em; line-height: 1; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .13); white-space: nowrap; pointer-events: none; user-select: none; }
.eh-show__halo { position: absolute; left: 50%; top: 50%; width: 460px; height: 460px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(69, 120, 149, .55) 0%, rgba(69, 120, 149, .16) 40%, transparent 68%); filter: blur(10px); pointer-events: none; }
.eh-show__tilt { position: relative; width: min(100%, 640px); transform-style: preserve-3d; transform: rotateX(var(--eh-rx, 0deg)) rotateY(var(--eh-ry, 0deg)); transition: transform .18s ease-out; will-change: transform; }
.eh-home .eh-show__img { display: block; width: 100%; height: auto; filter: drop-shadow(0 40px 50px rgba(0, 0, 0, .55)) drop-shadow(0 0 30px rgba(69, 120, 149, .25)); animation: eh-float 5.5s ease-in-out infinite; transform: scale(.94); opacity: 0; transition: transform .8s cubic-bezier(.2, .7, .3, 1), opacity .5s ease; }
.eh-show__slide.is-active .eh-show__img { transform: none; opacity: 1; }
.eh-home .eh-show__img--blend { border-radius: 24px; -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 50%, #000 40%, rgba(0, 0, 0, .6) 68%, transparent 100%); mask-image: radial-gradient(ellipse 70% 62% at 50% 50%, #000 40%, rgba(0, 0, 0, .6) 68%, transparent 100%); }
@keyframes eh-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.eh-show__shadow { position: absolute; left: 50%; bottom: 58px; width: 46%; height: 26px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(ellipse, rgba(0, 0, 0, .55) 0%, transparent 70%); filter: blur(6px); animation: eh-float-shadow 5.5s ease-in-out infinite; pointer-events: none; }
@keyframes eh-float-shadow { 0%, 100% { transform: translateX(-50%) scaleX(1); opacity: .9; } 50% { transform: translateX(-50%) scaleX(.86); opacity: .55; } }

.eh-show__foot { display: flex; align-items: stretch; gap: 12px; margin-top: 18px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); }
.eh-show__all { flex: 0 0 256px; display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 12px; background-image: var(--eh-grad); border-radius: var(--eh-radius); color: var(--eh-white); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 6px 18px rgba(69, 120, 149, .28); }
.eh-show__all:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(69, 120, 149, .36); color: var(--eh-white); }
.eh-show__all-ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .14); display: flex; align-items: center; justify-content: center; }
.eh-show__all > .eh-icon:last-child { margin-left: auto; }
.eh-show__tabs { position: relative; flex: 1 1 auto; min-width: 0; display: grid; grid-auto-flow: column; grid-auto-columns: 256px; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding-bottom: 2px; -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 60px), transparent 100%); mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 60px), transparent 100%); }
.eh-show__tabs::-webkit-scrollbar { display: none; }
.eh-show__tab { position: relative; scroll-snap-align: start; display: flex; align-items: center; gap: 10px; padding: 8px 12px 10px 8px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--eh-radius); color: var(--eh-white); cursor: pointer; text-align: left; overflow: hidden; transition: background-color .2s ease, border-color .2s ease; }
.eh-show__tab:hover, .eh-show__tab.is-active { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .28); }
.eh-home .eh-show__tab img { width: 92px; height: 54px; object-fit: contain; flex: 0 0 auto; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .45)); }
.eh-show__tab-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.eh-show__tab-text strong { font-family: var(--eh-head); font-size: 14px; font-weight: 700; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eh-show__tab-text span { font-size: 11px; line-height: 1.25; color: var(--eh-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eh-show__all .eh-show__tab-text span { color: rgba(255, 255, 255, .78); }
.eh-home a.eh-show__all, .eh-home a.eh-show__all:hover, .eh-home .eh-show__all strong { color: var(--eh-white); }
.eh-show__bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background-image: var(--eh-grad); transform: scaleX(0); transform-origin: left; }
.eh-show__tab.is-active .eh-show__bar { animation: eh-progress var(--eh-show-delay, 6s) linear forwards; }
.eh-show.is-paused .eh-show__tab.is-active .eh-show__bar { animation-play-state: paused; }
@keyframes eh-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.eh-home .eh-more--light { color: var(--eh-white); }
.eh-home .eh-more--light:hover { color: var(--eh-accent); }

/* -------------------------------------------------- REVENDEURS + OPTICIENS */

.eh-resell__top { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
.eh-resell > * { min-width: 0; }
.eh-resell { display: grid; grid-template-columns: 65fr 35fr; gap: 22px; align-items: stretch; }
.eh-resell__lead { display: grid; grid-template-columns: 40fr 60fr; gap: 22px; align-items: stretch; margin-bottom: 22px; }
.eh-resell__lead > * { min-width: 0; }
.eh-resell__lead .eh-p { align-self: center; max-width: 440px; }

/* Le CTA : un panneau sur le degrade du site, cliquable en entier, avec un pictogramme en filigrane. */
.eh-home .eh-cta { position: relative; display: flex; align-items: center; gap: 22px; padding: 22px 26px; border-radius: var(--eh-radius); background-image: var(--eh-grad); color: var(--eh-white); text-decoration: none; overflow: hidden; box-shadow: 0 10px 28px rgba(69, 120, 149, .28); transition: transform .22s ease, box-shadow .22s ease; isolation: isolate; }
.eh-home .eh-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 20%, rgba(255, 255, 255, .18) 0%, transparent 40%); pointer-events: none; }
.eh-home .eh-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(69, 120, 149, .38); color: var(--eh-white); }
.eh-cta__pin { position: absolute; right: 86px; top: 50%; transform: translateY(-46%) rotate(-12deg); color: rgba(255, 255, 255, .10); pointer-events: none; }
.eh-cta__body { position: relative; display: flex; flex-direction: column; gap: 5px; min-width: 0; flex: 1 1 auto; }
.eh-cta__kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--eh-head); font-size: 12px; font-weight: 600; letter-spacing: .04em; color: rgba(255, 255, 255, .85); }
.eh-cta__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--eh-white); animation: eh-pulse 2.4s ease-in-out infinite; }
.eh-cta__title { font-family: var(--eh-head); font-size: clamp(20px, 1.9vw, 26px); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; text-transform: uppercase; }
.eh-cta__sub { font-size: 13.5px; line-height: 1.45; color: rgba(255, 255, 255, .8); }
.eh-cta__go { position: relative; flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: var(--eh-white); color: var(--eh-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(6, 14, 19, .3); transition: transform .22s ease; }
.eh-home .eh-cta:hover .eh-cta__go { transform: translateX(4px); }

/* Carte : mer en degrade doux avec une trame de points, terres en deux tons, frontieres fines. */
.eh-mapcard { position: relative; border-radius: var(--eh-radius); overflow: hidden; background: var(--eh-glossy); box-shadow: var(--eh-shadow); min-height: 500px; }
.eh-mapcard::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(15, 34, 45, .06), inset 0 -60px 80px -40px rgba(15, 34, 45, .12); pointer-events: none; }
.eh-map { position: absolute; inset: 0; }
.eh-map__svg { display: block; width: 100%; height: 100%; }
.eh-map__sea { fill: url(#eh-sea); }
.eh-map__dots { fill: url(#eh-dots); opacity: .55; }
.is-dep .eh-map__dots { opacity: 0; }
.eh-map__dots { transition: opacity .4s ease; }
/* Vue France : departements colores selon le nombre de boutiques, compte inscrit dedans.
   Vue departement (.is-dep, home.js) : les autres s'effacent, les points de vente apparaissent, etiquette au survol. */
.eh-map__around path { fill: #E6EEF3; stroke: rgba(255, 255, 255, .95); stroke-width: 1; stroke-linejoin: round; }
.eh-map__deps { filter: url(#eh-land-shadow); }
.eh-map__dep { fill: #EAF0F4; stroke: #FFFFFF; stroke-width: 1; stroke-linejoin: round; transition: fill .2s ease, opacity .35s ease; outline: none; }
.eh-map__dep--l1 { fill: #CFE0EA; }
.eh-map__dep--l2 { fill: #A9C8D9; }
.eh-map__dep--l3 { fill: #7FA9C1; }
.eh-map__dep--l4 { fill: var(--eh-accent); }
.eh-map__dep:not([data-count="0"]) { cursor: pointer; }
.eh-map__dep.is-hover { fill: var(--eh-ink); }
.eh-map__dep.is-hover.eh-map__dep--l0 { fill: #C4D3DC; }
.is-dep .eh-map__dep.is-dim { opacity: .22; pointer-events: none; }
.is-dep .eh-map__dep.is-active { fill: url(#eh-land); stroke-width: 1.6; cursor: default; }
.eh-map__label { pointer-events: none; filter: url(#eh-label-shadow); }
.eh-map__label circle { fill: var(--eh-white); }
.eh-map__label text { fill: var(--eh-ink); font-family: var(--eh-head); font-size: 10.5px; font-weight: 700; text-anchor: middle; }
.eh-map__labels { transition: opacity .25s ease; }
.is-dep .eh-map__labels { opacity: 0; pointer-events: none; }
.eh-map__pin-mid { stop-color: var(--eh-accent); }
.eh-map__pin { display: none; outline: none; }
.eh-map__pin.is-on { display: block; }
.eh-map__pin circle.eh-map__dot { fill: url(#eh-pin); stroke: var(--eh-white); stroke-width: 1.6; cursor: pointer; filter: url(#eh-pin-shadow); transition: r .16s cubic-bezier(.2, .7, .3, 1), stroke-width .16s ease; }
.eh-map__pin:hover circle.eh-map__dot,
.eh-map__pin:focus circle.eh-map__dot { r: 7; stroke-width: 2.4; }
.eh-map__ring { fill: none; stroke: var(--eh-accent); stroke-width: 1.4; opacity: 0; transform-box: fill-box; transform-origin: center; }
.eh-map__pin:hover .eh-map__ring { animation: eh-ring 1.1s ease-out infinite; }
@keyframes eh-ring { 0% { opacity: .55; r: 6; } 100% { opacity: 0; r: 17; } }
.eh-map__tip { pointer-events: none; filter: url(#eh-tip-shadow); }
.eh-map__tip rect { fill: var(--eh-ink); }
.eh-map__tip-arrow { fill: var(--eh-ink); }
.eh-map__tip use { fill: var(--eh-white); }
.eh-map__tip-name { fill: var(--eh-white); font-size: 13px; font-weight: 700; font-family: var(--eh-head); letter-spacing: -.01em; }
.eh-map__tip-city { fill: var(--eh-onink); font-size: 11px; font-weight: 500; font-family: var(--eh-head); }
.eh-map__bar { position: absolute; left: 18px; top: 18px; right: 18px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.eh-mapcard [hidden] { display: none !important; }
.eh-home .eh-map__back { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px 10px 13px; border: 0; border-radius: var(--eh-radius); background: var(--eh-ink); color: var(--eh-white); font-family: var(--eh-head); font-size: 13px; font-weight: 600; line-height: 1; cursor: pointer; box-shadow: var(--eh-shadow); transition: background .2s ease, transform .2s ease; }
.eh-home .eh-map__back:hover { background: var(--eh-accent); transform: translateX(-2px); }
.eh-home .eh-map__back span { font-size: 18px; line-height: 0; }
.eh-map__bar-title { display: inline-flex; align-items: baseline; gap: 8px; padding: 9px 16px; border-radius: var(--eh-radius); background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px); box-shadow: var(--eh-shadow); font-family: var(--eh-head); font-size: 13px; color: var(--eh-muted); }
.eh-map__bar-title strong { font-size: 15px; font-weight: 800; color: var(--eh-ink); letter-spacing: -.01em; }
.eh-home .eh-map__hint { position: absolute; left: 18px; bottom: 16px; margin: 0; padding: 8px 13px; border-radius: var(--eh-radius); background: rgba(255, 255, 255, .88); backdrop-filter: blur(6px); box-shadow: var(--eh-shadow); font-size: 12.5px; line-height: 1.3; color: var(--eh-muted); transition: color .15s ease; }
.eh-home .eh-map__hint.is-live { color: var(--eh-ink); font-family: var(--eh-head); font-weight: 600; }
.eh-mapcard__stat { position: absolute; left: 18px; top: 18px; display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px); padding: 12px 18px 12px 14px; border-radius: var(--eh-radius); box-shadow: var(--eh-shadow); }
.eh-mapcard__stat strong { font-family: var(--eh-head); font-size: 30px; font-weight: 800; letter-spacing: -.03em; color: var(--eh-ink); line-height: 1; }
.eh-mapcard__stat span { font-size: 12px; line-height: 1.3; color: var(--eh-muted); }

.eh-pro { position: relative; display: flex; flex-direction: column; justify-content: flex-end; border-radius: var(--eh-radius); overflow: hidden; background: var(--eh-ink); min-height: 500px; }
.eh-home .eh-pro__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; opacity: .55; filter: saturate(.7); }
.eh-pro__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 34, 45, .25) 0%, rgba(15, 34, 45, .6) 40%, rgba(15, 34, 45, .96) 100%); }
.eh-pro__body { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px 26px 26px; }
.eh-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.eh-checks li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--eh-glossy); }
.eh-pro__body .eh-btn { margin-top: 6px; }

/* ------------------------------------------------------ VIDEO PLEINE LARGEUR */

.eh-band { position: relative; height: 400px; overflow: hidden; background: var(--eh-deep); }
.eh-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }

/* --------------------------------------------------------- AIDE AU CHOIX */

.eh-choice { position: relative; background: var(--eh-ink); background-image: var(--eh-grad); overflow: hidden; }
.eh-choice__deco { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .14) 0%, transparent 45%), radial-gradient(circle at 8% 92%, rgba(6, 14, 19, .5) 0%, transparent 55%); }
.eh-choice__inner > * { min-width: 0; }
.eh-choice__inner { position: relative; display: grid; grid-template-columns: 2fr 3fr; gap: 54px; align-items: center; padding: 76px 20px 80px; }
.eh-choice__visual { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; }
.eh-choice__halo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 66%); }
.eh-choice__ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; border-radius: 50%; border: 1px dashed rgba(255, 255, 255, .3); }
.eh-home .eh-choice__phone { position: relative; width: 250px; height: auto; display: block; filter: drop-shadow(0 26px 50px rgba(6, 14, 19, .45)); }
.eh-choice__float { position: absolute; display: flex; align-items: center; gap: 8px; background: var(--eh-white); color: var(--eh-ink); font-family: var(--eh-head); font-size: 12.5px; font-weight: 600; line-height: 1.2; padding: 10px 14px; border-radius: var(--eh-pill); box-shadow: 0 12px 30px rgba(6, 14, 19, .3); white-space: nowrap; }
.eh-choice__float strong { font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: var(--eh-accent); }
.eh-choice__float--a { top: 22px; left: 0; }
.eh-choice__float--b { top: 96px; right: -6px; }
.eh-choice__float--c { bottom: 92px; left: -4px; }
.eh-choice__float--d { bottom: 18px; right: 0; }

.eh-choice__body { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; color: var(--eh-white); }
.eh-home .eh-choice__title { font-family: var(--eh-head); font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; letter-spacing: -.022em; line-height: 1.06; text-transform: uppercase; color: var(--eh-white); margin: 0; }
.eh-criteria { list-style: none; margin: 4px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: 100%; }
.eh-criteria li { display: flex; flex-direction: column; gap: 10px; padding: 18px 18px 16px; border-radius: var(--eh-radius); background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.eh-criteria__title { font-family: var(--eh-head); font-size: 14px; font-weight: 600; color: var(--eh-white); line-height: 1.2; }
.eh-criteria__sub { display: block; font-size: 12.5px; line-height: 1.45; color: rgba(255, 255, 255, .7); font-family: Inter, sans-serif; font-weight: 400; }
.eh-home .eh-btn--block { width: 100%; justify-content: center; margin-top: 2px; }

/* ------------------------------------------------------------ AMBASSADEURS */

.eh-amb { padding-bottom: 86px; }
.eh-amb__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 36px; }
.eh-amb__head > div:first-child { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.eh-amb__head .eh-p { max-width: 560px; }
.eh-amb__nav { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.eh-nav-btn { width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--eh-white); color: var(--eh-ink); box-shadow: var(--eh-shadow); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.eh-nav-btn:hover { background-image: var(--eh-grad); color: var(--eh-white); transform: translateY(-2px); }

.eh-amb__viewport { position: relative; }
/* Le quart de carte visible a droite et le fondu disent qu'il y a un defilement lateral. */
.eh-amb__viewport::after { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 140px; background: linear-gradient(90deg, rgba(244, 248, 251, 0) 0%, var(--eh-tint) 90%); pointer-events: none; z-index: 2; }
.eh-amb__rail { display: grid; grid-auto-flow: column; grid-auto-columns: 327px; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 0 14px; }
.eh-amb__card { scroll-snap-align: start; display: flex; flex-direction: column; background: var(--eh-white); border-radius: var(--eh-radius); overflow: hidden; box-shadow: var(--eh-shadow); transition: transform .25s ease, box-shadow .25s ease; }
.eh-amb__card:hover { transform: translateY(-4px); box-shadow: var(--eh-shadow-lift); }
.eh-amb__img { position: relative; height: 290px; flex: 0 0 290px; overflow: hidden; }
.eh-home .eh-amb__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; transition: transform .6s cubic-bezier(.2, .7, .3, 1); }
.eh-amb__card:hover .eh-amb__img img { transform: scale(1.05); }
.eh-amb__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 34, 45, 0) 40%, rgba(15, 34, 45, .9) 100%); }
.eh-amb__sport { position: absolute; left: 14px; top: 14px; font-family: var(--eh-head); font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--eh-white); background-image: var(--eh-grad); padding: 6px 12px; border-radius: var(--eh-pill); }
.eh-amb__id { position: absolute; left: 20px; right: 20px; bottom: 18px; display: flex; flex-direction: column; gap: 4px; }
.eh-home .eh-amb__name { font-family: var(--eh-head); font-size: 21px; font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; color: var(--eh-white); line-height: 1.08; }
.eh-amb__role { font-size: 12.5px; color: rgba(255, 255, 255, .78); }
.eh-amb__palmares { list-style: none; margin: 0; padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.eh-amb__palmares li { display: flex; align-items: flex-start; gap: 9px; font-family: var(--eh-head); font-size: 13.5px; font-weight: 600; line-height: 1.4; color: var(--eh-ink); }
.eh-amb__palmares li > span { flex: 0 0 auto; font-size: 16px; line-height: 1.2; }

/* ------------------------------------------------------------ SAVOIR-FAIRE */

.eh-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 38px; }
.eh-split > div:first-child { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.eh-split .eh-p { max-width: 440px; }
/* Savoir-faire : trois cartes egales, photo large 3:2 en tete, numero sur la photo, badge ZEISS a cheval sur la carte 03. */
.eh-know > * { min-width: 0; }
.eh-know { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.eh-know__card { position: relative; display: flex; flex-direction: column; background: var(--eh-white); border-radius: var(--eh-radius); overflow: hidden; box-shadow: var(--eh-shadow); transition: transform .25s ease, box-shadow .25s ease; }
.eh-know__card:hover { transform: translateY(-4px); box-shadow: var(--eh-shadow-lift); }
.eh-know__img { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--eh-glossy); }
.eh-home .eh-know__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.eh-know__card:hover .eh-know__img img { transform: scale(1.04); }
.eh-know__num { position: absolute; left: 16px; top: 16px; display: inline-block; background-image: var(--eh-grad); color: var(--eh-white); font-family: var(--eh-head); font-size: 13px; font-weight: 700; padding: 7px 13px; border-radius: var(--eh-pill); box-shadow: 0 6px 16px rgba(6, 14, 19, .25); }
.eh-know__body { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 24px 26px 28px; }
.eh-know__badge { position: absolute; right: 18px; bottom: -18px; width: 74px; height: 74px; padding: 7px; background: var(--eh-white); border-radius: var(--eh-radius); box-shadow: 0 4px 12px rgba(15, 34, 45, .12), 0 14px 30px rgba(15, 34, 45, .16); z-index: 2; }
.eh-home .eh-know__badge img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 3px; }
.eh-know__card--badge .eh-know__body { padding-right: 26px; }
.eh-home .eh-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-family: var(--eh-head); font-size: 14px; font-weight: 600; color: var(--eh-accent); text-decoration: none; transition: gap .2s ease; }
.eh-home .eh-more:hover { gap: 10px; color: var(--eh-ink); }

/* -------------------------------------------------------------------- FAQ */

.eh-faq { display: grid; grid-template-columns: .76fr 1.24fr; gap: 56px; align-items: start; }
/* min-width: 0 — sinon l'image impose sa largeur intrinseque a la colonne et fait deborder la grille. */
.eh-faq > * { min-width: 0; }
.eh-faq__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.eh-faq__img { position: relative; width: 100%; height: 400px; overflow: hidden; border-radius: var(--eh-radius); background: var(--eh-glossy); box-shadow: var(--eh-shadow); }
.eh-home .eh-faq__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; display: block; }
.eh-faq__band { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; display: flex; align-items: center; gap: 12px; font-family: var(--eh-head); font-size: 13px; font-weight: 500; line-height: 1.35; color: var(--eh-white); background-image: var(--eh-grad); padding: 16px 20px; }
.eh-faq__band-dot { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--eh-white); animation: eh-pulse 2.4s ease-in-out infinite; }
.eh-faq__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2px; }

.eh-faq__list { display: flex; flex-direction: column; gap: 10px; }
.eh-faq__item { background: var(--eh-white); border-radius: var(--eh-radius); box-shadow: var(--eh-shadow); overflow: hidden; }
.eh-faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; list-style: none; }
.eh-faq__item summary::-webkit-details-marker { display: none; }
.eh-faq__q { font-family: var(--eh-head); font-size: 17px; font-weight: 600; letter-spacing: -.005em; color: var(--eh-ink); line-height: 1.35; }
.eh-faq__item[open] .eh-faq__q { color: var(--eh-accent); }
.eh-faq__sign { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--eh-glossy); color: var(--eh-accent); display: flex; align-items: center; justify-content: center; transition: background-color .2s ease, color .2s ease; }
.eh-faq__item[open] .eh-faq__sign { background-image: var(--eh-grad); color: var(--eh-white); }
.eh-faq__sign-minus { display: none; }
.eh-faq__item[open] .eh-faq__sign-plus { display: none; }
.eh-faq__item[open] .eh-faq__sign-minus { display: flex; }
.eh-faq__a { display: flex; flex-direction: column; gap: 14px; padding: 0 22px 22px; max-width: 660px; }
.eh-faq__a .eh-p { font-size: 14.5px; line-height: 1.75; }
.eh-faq__badges { margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }

/* -------------------------------------------------------------- ACTUALITE */

.eh-news { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.eh-news > * { min-width: 0; }
.eh-news__card { display: flex; flex-direction: column; background: var(--eh-white); border-radius: var(--eh-radius); overflow: hidden; box-shadow: var(--eh-shadow); transition: transform .25s ease, box-shadow .25s ease; }
.eh-news__card:hover { transform: translateY(-4px); box-shadow: var(--eh-shadow-lift); }
.eh-news__img { position: relative; display: block; height: 220px; overflow: hidden; background: var(--eh-glossy); }
.eh-home .eh-news__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2, .7, .3, 1); }
.eh-news__card:hover .eh-news__img img { transform: scale(1.05); }
.eh-news__date { position: absolute; left: 14px; bottom: 14px; font-family: var(--eh-head); font-size: 11.5px; font-weight: 600; color: var(--eh-white); background: rgba(6, 14, 19, .6); backdrop-filter: blur(4px); padding: 6px 11px; border-radius: var(--eh-pill); }
.eh-news__body { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 22px 22px 24px; flex-grow: 1; }
.eh-home .eh-news__title { font-family: var(--eh-head); font-size: 18px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; margin: 0; color: var(--eh-ink); text-transform: none; }
.eh-home .eh-news__title a { color: inherit; text-decoration: none; }
.eh-home .eh-news__title a:hover { color: var(--eh-accent); }
.eh-news__excerpt { font-size: 14px; }
.eh-news__body .eh-more { margin-top: auto; padding-top: 6px; }

/* ------------------------------------------------------------- BARRE BASSE */

.eh-strip { padding: 26px 0; background: var(--eh-ink); }
.eh-home .eh-strip__inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; max-width: none; padding: 0 48px; }
.eh-strip__item { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 4px 18px; }
.eh-strip__item + .eh-strip__item { border-left: 1px solid rgba(255, 255, 255, .12); }
.eh-strip__text { display: flex; flex-direction: column; gap: 2px; }
.eh-strip__title { font-family: var(--eh-head); font-size: 14px; font-weight: 600; color: var(--eh-white); line-height: 1.25; }
.eh-strip__sub { font-size: 12px; line-height: 1.35; color: var(--eh-soft); }

/* --------------------------------------------------------------- RESPONSIVE */

@media (max-width: 1100px) {
	.eh-hero__wrap { min-height: 0; flex-direction: column; align-items: stretch; }
	.eh-hero__media { position: relative; right: auto; top: auto; bottom: auto; transform: none; width: 100%; height: 400px; margin: 0 auto;
		-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, #000 18%, #000 56%, rgba(0, 0, 0, .7) 82%, transparent 100%);
		mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, #000 18%, #000 56%, rgba(0, 0, 0, .7) 82%, transparent 100%); }
	.eh-hero__mask { -webkit-mask-image: none; mask-image: none; }
	.eh-hero__rule, .eh-hero__diamond, .eh-hero__wash { display: none; }
	.eh-hero__glow { right: -30%; top: -20%; width: 640px; height: 640px; }
	.eh-hero__body { padding: 0 0 150px; margin-top: -64px; max-width: none; }

	.eh-univers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -100px; }
	.eh-resell { grid-template-columns: 1fr; }
	.eh-show__slide { grid-template-columns: 1fr; gap: 10px; }
	.eh-show__stage { min-height: 0; }
	.eh-show__visual { height: 340px; order: -1; }
	.eh-show__foot { flex-direction: column; align-items: stretch; }
	.eh-show__all { flex-basis: auto; }
	.eh-choice__inner { grid-template-columns: 1fr; gap: 34px; }
	.eh-choice__visual { height: 360px; }
	.eh-faq { grid-template-columns: 1fr; gap: 30px; }
	.eh-faq__img { height: 280px; }
	.eh-know { grid-template-columns: 1fr; }
	.eh-news { grid-template-columns: 1fr; }
	.eh-strip { padding: 8px 0; }
	.eh-home .eh-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 12px; }
	.eh-strip__item { justify-content: flex-start; padding: 14px 12px; border-left: 0 !important; }
}

@media (max-width: 782px) {
	.eh-section { padding: 52px 0 56px; }
	.eh-univers { padding-bottom: 44px; }
	.eh-univers__grid { grid-template-columns: 1fr; gap: 14px; }
	.eh-univers__card { aspect-ratio: auto; height: 260px; }
	.eh-band { height: 240px; }
	.eh-marquee__track { animation-duration: 30s; }
	.eh-hero__media { height: 330px; }
	.eh-hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
	.eh-home .eh-btn { justify-content: center; }
	.eh-resell__top, .eh-amb__head, .eh-split { flex-direction: column; align-items: flex-start; gap: 20px; }
	.eh-amb__nav { display: none; }
	.eh-show__visual { height: 260px; }
	.eh-show__ghost { font-size: 110px; }
	.eh-amb__rail { grid-auto-columns: 280px; }
	.eh-amb__viewport::after { width: 70px; }
	.eh-know__card--badge .eh-know__body { padding-right: 26px; }
	.eh-criteria { grid-template-columns: 1fr; }
	.eh-choice__inner { padding: 52px 20px 56px; }
	.eh-choice__visual { height: 300px; }
	.eh-home .eh-choice__phone { width: 220px; }
	.eh-choice__float--a { top: 0; }
	.eh-choice__float--b { top: 60px; }
	.eh-choice__float--c { bottom: 60px; }
	.eh-choice__float--d { bottom: 0; }
	.eh-choice__cta { flex-direction: column; align-items: stretch; width: 100%; }
	.eh-mapcard { min-height: 360px; }
	.eh-map__labels { display: none; }
	.eh-home .eh-map__hint { display: none; }
	.eh-map__bar { left: 12px; top: 12px; right: 12px; }
	.eh-resell__lead { grid-template-columns: 1fr; }
	.eh-cta__pin { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.eh-marquee__track, .eh-chip::before, .eh-map__live circle, .eh-map__ring, .eh-home .eh-show__img, .eh-show__shadow { animation: none; }
	.eh-home .eh-univers__img, .eh-home .eh-btn, .eh-amb__card, .eh-know__card, .eh-univers__card, .eh-univers__bar, .eh-univers__idx { transition: none; }
}
