/* =========================================================================
   ECW Elements — styles de tous les widgets
   S'appuie sur les tokens du thème (--ecw-*). Repli si thème absent.
   ========================================================================= */
:root {
	--ecw-vert: #52B46E; --ecw-vert-d: #3C9A57; --ecw-vert-dd: #2E7A44; --ecw-vert-l: #7FCF96;
	--ecw-orange: #EE7122; --ecw-orange-d: #D45E15; --ecw-orange-l: #F79350;
	--ecw-ivoire: #F7F5EF; --ecw-ivoire-2: #EFEBE0; --ecw-craie: #fff;
	--ecw-encre: #142019; --ecw-encre-2: #33473C; --ecw-gris: #6B7E73; --ecw-ligne-l: #E2DDCF;
	--ecw-nuit: #0E1A13; --ecw-nuit-2: #13241A; --ecw-ligne-d: #264430;
	--ecw-brume: #9DB3A6; --ecw-brume-c: #D9E4DC; --ecw-ivoire-dk: #F2EFE6;
	--ecw-display: "Fraunces", Georgia, serif; --ecw-sans: "Space Grotesk", sans-serif;
	--ecw-mono: "IBM Plex Mono", monospace; --ecw-body: "Inter", sans-serif; --ecw-logo: "Poppins", sans-serif;
	--ecw-maxw: 1240px; --ecw-ease: cubic-bezier(.16,1,.3,1);
}

/* ---- HEADER ---- */
.ecw-header { position: sticky; top: 0; z-index: 100; background: rgba(247,245,239,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--ecw-ligne-l); transition: box-shadow .3s; }
.ecw-header.is-scrolled { box-shadow: 0 6px 24px rgba(20,32,25,.06); }
.ecw-header__in { display: flex; align-items: center; gap: 36px; padding: 14px 40px; max-width: var(--ecw-maxw); margin-inline: auto; }
.ecw-header__brand { display: flex; align-items: center; gap: 12px; font-family: var(--ecw-logo); font-weight: 800; font-size: 1.2rem; color: var(--ecw-encre); text-decoration: none; }
.ecw-header__logo { height: 42px; width: auto; }
.ecw-header__nav { margin-left: auto; }
.ecw-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; font-family: var(--ecw-sans); font-weight: 500; font-size: .9rem; }
.ecw-menu a { color: var(--ecw-encre-2); text-decoration: none; transition: color .3s; }
.ecw-menu a:hover { color: var(--ecw-orange); }
.ecw-header__actions { display: flex; align-items: center; gap: 12px; }
.ecw-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.ecw-burger span { width: 22px; height: 2px; background: var(--ecw-encre); display: block; }
@media (max-width: 1020px) {
	.ecw-header__nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--ecw-ivoire); border-bottom: 1px solid var(--ecw-ligne-l); padding: 20px 40px; display: none; margin-left: 0; }
	.ecw-header.is-open .ecw-header__nav { display: block; }
	.ecw-menu { flex-direction: column; gap: 14px; }
	.ecw-burger { display: flex; }
	.ecw-header__nav { order: 3; }
}

/* Bouton Live */
.ecw-live { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ecw-sans); font-weight: 600; font-size: .88rem; padding: .65rem 1.2rem; border-radius: 50px; border: 2px solid var(--ecw-ligne-l); color: var(--ecw-encre); text-decoration: none; transition: all .4s var(--ecw-ease); white-space: nowrap; }
.ecw-live:hover { border-color: #E5484D; color: #E5484D; transform: translateY(-2px); }
.ecw-live__dot { width: 9px; height: 9px; border-radius: 50%; background: #E5484D; position: relative; flex: none; }
.ecw-live__dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #E5484D; animation: ecw-pulse 1.8s ease-out infinite; }
@keyframes ecw-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ecw-live__dot::before { animation: none; } }

/* ---- HERO ---- */
.ecw-hero { position: relative; padding-block: 90px 0; overflow: hidden; background: var(--ecw-ivoire); }
.ecw-hero--image, .ecw-hero--video { padding-block: 140px 100px; color: #fff; }
.ecw-hero--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,13,10,.55), rgba(7,13,10,.78)), var(--ecw-hero-img) center/cover no-repeat; z-index: 0; }
.ecw-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ecw-hero--video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,13,10,.5), rgba(7,13,10,.8)); z-index: 1; }
.ecw-hero__rays { position: absolute; top: -340px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(238,113,34,.10) 0%, rgba(82,180,110,.06) 40%, transparent 68%); pointer-events: none; }
.ecw-hero__in { position: relative; z-index: 2; text-align: center; max-width: 920px; margin-inline: auto; }
.ecw-hero__badge { display: inline-flex; align-items: center; gap: 10px; max-width: 100%; flex-wrap: wrap; justify-content: center; font-family: var(--ecw-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ecw-vert-d); background: rgba(82,180,110,.1); border: 1px solid rgba(82,180,110,.3); padding: .5rem 1.1rem; border-radius: 50px; margin-bottom: 32px; }
.ecw-hero--image .ecw-hero__badge, .ecw-hero--video .ecw-hero__badge { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.ecw-hero__title { font-size: clamp(2.8rem, 1rem + 7vw, 6rem); font-weight: 500; color: var(--ecw-encre); letter-spacing: -.03em; }
.ecw-hero--image .ecw-hero__title, .ecw-hero--video .ecw-hero__title { color: #fff; }
.ecw-hero__title .g { color: var(--ecw-vert-d); }
.ecw-hero__title .o { color: var(--ecw-orange); font-style: italic; font-weight: 400; }
.ecw-hero__lede { font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem); color: var(--ecw-encre-2); max-width: 54ch; margin: 28px auto 0; line-height: 1.6; }
.ecw-hero--image .ecw-hero__lede, .ecw-hero--video .ecw-hero__lede { color: rgba(255,255,255,.9); }
.ecw-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.ecw-hero__wave { margin-top: 80px; height: 120px; background: var(--ecw-nuit); position: relative; }
.ecw-hero__wave::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 120px; background: var(--ecw-ivoire); -webkit-mask: radial-gradient(120% 120% at 50% 0, #000 69.5%, transparent 70%); mask: radial-gradient(120% 120% at 50% 0, #000 69.5%, transparent 70%); }

/* Countdown */
.ecw-cd { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.ecw-cd__u { background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 18px; padding: 22px 26px; min-width: 104px; box-shadow: 0 10px 30px rgba(20,32,25,.05); }
.ecw-cd__v { display: block; font-family: var(--ecw-display); font-size: 3rem; font-weight: 600; color: var(--ecw-encre); line-height: 1; font-variant-numeric: tabular-nums; }
.ecw-cd__l { display: block; font-family: var(--ecw-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ecw-gris); margin-top: 10px; }
.ecw-cd__u:nth-child(2) .ecw-cd__v { color: var(--ecw-vert-d); }
.ecw-cd__u:nth-child(3) .ecw-cd__v { color: var(--ecw-orange); }

/* En-tête de section */
.ecw-sh { display: grid; grid-template-columns: .8fr 1fr; gap: 50px; align-items: end; margin-bottom: 60px; }
.ecw-sh__n { font-family: var(--ecw-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ecw-vert-d); }
.ecw-sh h2 { font-size: clamp(2rem, 1.2rem + 2.4vw, 3.3rem); font-weight: 500; margin-top: 14px; }
.ecw-sh__x { color: var(--ecw-gris); font-size: 1.05rem; line-height: 1.8; }
@media (max-width: 820px) { .ecw-sh { grid-template-columns: 1fr; gap: 18px; } }

/* Contexte */
.ecw-ctx { max-width: 64ch; margin-inline: auto; text-align: center; }
.ecw-ctx p { font-size: 1.2rem; line-height: 1.85; margin: 0 0 22px; }
.ecw-ctx strong { color: var(--ecw-vert-d); font-weight: 500; }

/* Bande chiffres */
.ecw-band { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--ecw-ligne-d); border-radius: 18px; overflow: hidden; background: var(--ecw-nuit-2); }
.ecw-band__c { padding: 38px 28px; border-right: 1px solid var(--ecw-ligne-d); }
.ecw-band__c:last-child { border-right: none; }
.ecw-band__v { font-family: var(--ecw-display); font-size: 3rem; font-weight: 600; color: var(--ecw-ivoire-dk); line-height: .9; }
.ecw-band__l { font-family: var(--ecw-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ecw-brume); margin-top: 14px; }
@media (max-width: 767px) { .ecw-band { grid-template-columns: 1fr 1fr; } }

/* Piliers */
.ecw-pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.ecw-pillar { position: relative; padding: 42px 38px; background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 22px; overflow: hidden; transition: transform .5s var(--ecw-ease), box-shadow .5s; }
.ecw-pillar::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--ecw-vert), var(--ecw-orange)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ecw-ease); }
.ecw-pillar:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,32,25,.1); }
.ecw-pillar:hover::after { transform: scaleX(1); }
.ecw-pillar__n { font-family: var(--ecw-display); font-size: 2.6rem; font-weight: 600; line-height: 1; color: rgba(82,180,110,.25); }
.ecw-pillar:nth-child(even) .ecw-pillar__n { color: rgba(238,113,34,.22); }
.ecw-pillar h3 { font-size: 1.5rem; margin: 16px 0 12px; color: var(--ecw-encre); }
.ecw-pillar p { color: var(--ecw-encre-2); font-size: .98rem; line-height: 1.7; margin: 0; }
@media (max-width: 1024px) { .ecw-pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .ecw-pillars { grid-template-columns: 1fr; } }

/* Programme accordéon */
.ecw-prog { border-top: 1px solid var(--ecw-ligne-d); }
.ecw-day { border-bottom: 1px solid var(--ecw-ligne-d); }
.ecw-day__h { display: grid; grid-template-columns: 140px 1fr auto; gap: 28px; align-items: center; padding: 32px 0; cursor: pointer; }
.ecw-day__d { font-family: var(--ecw-mono); font-size: .8rem; color: var(--ecw-vert-l); letter-spacing: .06em; }
.ecw-day__t { font-family: var(--ecw-display); font-size: clamp(1.3rem, 1rem + 1vw, 1.85rem); font-weight: 500; color: var(--ecw-ivoire-dk); }
.ecw-day__x { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--ecw-ligne-d); display: grid; place-items: center; color: var(--ecw-orange); font-size: 1.2rem; transition: transform .4s, background .4s; }
.ecw-day.is-open .ecw-day__x { transform: rotate(45deg); background: var(--ecw-orange); color: #fff; border-color: var(--ecw-orange); }
.ecw-day__c { max-height: 0; overflow: hidden; transition: max-height .6s var(--ecw-ease); }
.ecw-day.is-open .ecw-day__c { max-height: 600px; }
.ecw-day__cin { padding: 0 0 36px 168px; }
.ecw-day__cin ul { list-style: none; margin: 0; padding: 0; }
.ecw-day__cin li { padding: 14px 0; border-top: 1px solid var(--ecw-ligne-d); display: grid; grid-template-columns: 110px 1fr; gap: 18px; color: var(--ecw-brume-c); }
.ecw-day__cin .k { font-family: var(--ecw-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ecw-orange); }
@media (max-width: 820px) { .ecw-day__h { grid-template-columns: 1fr auto; } .ecw-day__d { grid-column: 1/-1; } .ecw-day__cin { padding-left: 0; } }

/* Market Place */
.ecw-mkt { position: relative; background: linear-gradient(135deg, var(--ecw-vert) 0%, var(--ecw-vert-d) 100%); border-radius: 30px; padding: 70px; color: #fff; overflow: hidden; }
.ecw-mkt__sun { position: absolute; top: -120px; right: -80px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(238,113,34,.5), transparent 70%); }
.ecw-mkt__in { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ecw-mkt h2 { color: #fff; font-size: clamp(2rem, 1.2rem + 2vw, 2.9rem); font-weight: 500; }
.ecw-mkt__k { font-family: var(--ecw-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.ecw-mkt p { color: rgba(255,255,255,.9); font-size: 1.05rem; line-height: 1.75; margin: 0 0 18px; }
.ecw-mkt__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.ecw-mkt__tag { font-family: var(--ecw-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; padding: .5rem .9rem; background: rgba(255,255,255,.16); border-radius: 50px; }
@media (max-width: 820px) { .ecw-mkt { padding: 44px; } .ecw-mkt__in { grid-template-columns: 1fr; } }

/* Intervenants */
.ecw-speakers { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ecw-speaker { display: block; background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 22px; overflow: hidden; transition: transform .5s var(--ecw-ease), box-shadow .5s; text-decoration: none; }
.ecw-speaker:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,32,25,.1); }
.ecw-speaker__photo { display: block; aspect-ratio: 1/1; overflow: hidden; }
.ecw-speaker__photo img { width: 100%; height: 100%; object-fit: cover; }
.ecw-speaker__initial { display: grid; place-items: center; width: 100%; height: 100%; font-family: var(--ecw-display); font-size: 4rem; color: #fff; background: linear-gradient(150deg, var(--ecw-vert), var(--ecw-vert-d)); }
.ecw-speaker:nth-child(4n+2) .ecw-speaker__initial { background: linear-gradient(150deg, var(--ecw-orange), var(--ecw-orange-d)); }
.ecw-speaker:nth-child(4n+3) .ecw-speaker__initial { background: linear-gradient(150deg, var(--ecw-vert-d), var(--ecw-encre-2)); }
.ecw-speaker:nth-child(4n) .ecw-speaker__initial { background: linear-gradient(150deg, var(--ecw-orange-d), var(--ecw-encre-2)); }
.ecw-speaker__body { display: block; padding: 20px 22px; }
.ecw-speaker__name { display: block; font-family: var(--ecw-display); font-size: 1.25rem; color: var(--ecw-encre); }
.ecw-speaker__role { display: block; font-family: var(--ecw-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ecw-vert-d); margin-top: 6px; }
@media (max-width: 1024px) { .ecw-speakers { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) { .ecw-speakers { grid-template-columns: 1fr; } }

/* Live */
.ecw-live-block__head { text-align: center; margin-bottom: 36px; }
.ecw-live-block__head h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); font-weight: 500; margin-top: 10px; }
.ecw-live-block__frame { position: relative; border-radius: 28px; overflow: hidden; border: 1px solid var(--ecw-ligne-l); background: var(--ecw-ivoire-2); aspect-ratio: 16/9; }
.ecw-live-block__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ecw-live-block__soon { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--ecw-gris); }
.ecw-live-block__soon .ecw-live__dot { width: 14px; height: 14px; }

/* Éditions */
.ecw-editions { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ecw-edition { position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; display: flex; align-items: flex-end; background: linear-gradient(180deg, var(--ecw-nuit-2), var(--ecw-nuit)); text-decoration: none; transition: transform .5s var(--ecw-ease); }
.ecw-edition:hover { transform: translateY(-6px); }
.ecw-edition__in { padding: 24px; position: relative; z-index: 1; }
.ecw-edition__y { font-family: var(--ecw-display); font-size: 2.6rem; font-weight: 600; color: #fff; line-height: .9; }
.ecw-edition__t { color: var(--ecw-brume); font-size: .85rem; margin-top: 8px; }
@media (max-width: 1024px) { .ecw-editions { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) { .ecw-editions { grid-template-columns: 1fr; } }

/* CTA */
.ecw-cta { position: relative; background: var(--ecw-nuit); color: #fff; padding-block: 120px; text-align: center; overflow: hidden; border-radius: 0; }
.ecw-cta__sun { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(238,113,34,.28), rgba(82,180,110,.1) 45%, transparent 70%); }
.ecw-cta__in { position: relative; max-width: 60ch; margin-inline: auto; padding-inline: 24px; }
.ecw-cta__k { font-family: var(--ecw-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ecw-vert-l); margin-bottom: 22px; }
.ecw-cta h2 { color: var(--ecw-ivoire-dk); font-size: clamp(2.4rem, 1.4rem + 3.5vw, 4.4rem); font-weight: 500; }
.ecw-cta h2 .it { font-style: italic; color: var(--ecw-orange-l); }
.ecw-cta p { color: var(--ecw-brume); font-size: 1.2rem; margin-top: 18px; }
.ecw-cta .ecw-btn { margin-top: 36px; }

/* Section split */
.ecw-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ecw-split--left .ecw-split__media { order: -1; }
.ecw-split__media { aspect-ratio: 4/3; border-radius: 28px; overflow: hidden; background: var(--ecw-ivoire-2); }
.ecw-split__media img { width: 100%; height: 100%; object-fit: cover; }
.ecw-split__n { font-family: var(--ecw-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ecw-vert-d); }
.ecw-split h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); font-weight: 500; margin: 14px 0 18px; }
.ecw-split__body { color: var(--ecw-encre-2); font-size: 1.05rem; line-height: 1.8; }
@media (max-width: 820px) { .ecw-split { grid-template-columns: 1fr; } .ecw-split--left .ecw-split__media { order: 0; } }

/* Footer */
.ecw-footer { background: var(--ecw-ivoire-2); }
.ecw-foot__bar { height: 4px; background: linear-gradient(90deg, var(--ecw-vert), var(--ecw-orange)); }
.ecw-foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding-block: 56px 36px; }
.ecw-foot__brand { display: flex; align-items: center; gap: 12px; font-family: var(--ecw-logo); font-weight: 800; font-size: 1.4rem; color: var(--ecw-encre); }
.ecw-foot__tag { color: var(--ecw-gris); font-size: .94rem; margin-top: 14px; max-width: 32ch; }
.ecw-foot__title { font-family: var(--ecw-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ecw-vert-d); margin: 0 0 12px; }
.ecw-foot__menu { list-style: none; margin: 0; padding: 0; }
.ecw-foot__col a, .ecw-foot__contact { color: var(--ecw-encre-2); line-height: 1.9; font-size: .9rem; font-style: normal; text-decoration: none; display: block; }
.ecw-foot__col a:hover { color: var(--ecw-orange); }
.ecw-foot__bottom { padding-block: 22px; border-top: 1px solid var(--ecw-ligne-l); color: var(--ecw-gris); font-family: var(--ecw-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 768px) {
	.ecw-foot__grid { grid-template-columns: 1fr; gap: 0; }
	.ecw-foot__col--accordion { border-bottom: 1px solid var(--ecw-ligne-l); }
	.ecw-foot__col--accordion .ecw-foot__title { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 16px 0; }
	.ecw-foot__col--accordion .ecw-foot__title::after { content: "+"; color: var(--ecw-orange); font-size: 1.2rem; }
	.ecw-foot__col--accordion.is-open .ecw-foot__title::after { content: "–"; }
	.ecw-foot__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ecw-ease); }
	.ecw-foot__col--accordion.is-open .ecw-foot__body { max-height: 300px; padding-bottom: 16px; }
}

/* Formulaire */
.ecw-form { max-width: 760px; margin-inline: auto; }
.ecw-form__title { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); font-weight: 500; }
.ecw-form__intro { color: var(--ecw-gris); font-size: .9rem; margin-bottom: 24px; }
.ecw-fs { border: 0; padding: 0; margin: 0 0 32px; }
.ecw-fs > legend { font-family: var(--ecw-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ecw-vert-d); width: 100%; padding: 0 0 10px; border-bottom: 1px solid var(--ecw-ligne-l); margin-bottom: 20px; }
.ecw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .ecw-row { grid-template-columns: 1fr; } }
.ecw-field { margin: 0 0 16px; }
.ecw-field label { display: block; font-size: .9rem; color: var(--ecw-encre); margin-bottom: 6px; }
.ecw-field input[type=text], .ecw-field input[type=email], .ecw-field input[type=tel], .ecw-field textarea, .ecw-field select { width: 100%; padding: .8rem 1rem; border: 1px solid var(--ecw-ligne-l); border-radius: 10px; background: var(--ecw-craie); font-family: var(--ecw-body); font-size: .95rem; color: var(--ecw-encre); }
.ecw-field input:focus, .ecw-field textarea:focus, .ecw-field select:focus { outline: 2px solid var(--ecw-vert); border-color: var(--ecw-vert); }
.ecw-field fieldset { border: 0; padding: 0; margin: 0; }
.ecw-field fieldset legend { font-size: .9rem; color: var(--ecw-encre); margin-bottom: 8px; }
.ecw-checks { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ecw-checks--col { grid-template-columns: 1fr; }
@media (max-width: 600px) { .ecw-checks { grid-template-columns: 1fr 1fr; } }
.ecw-check { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--ecw-encre-2); cursor: pointer; }
.ecw-consent { background: var(--ecw-ivoire-2); padding: 16px; border-radius: 10px; }
.ecw-hp { position: absolute; left: -9999px; }
.ecw-form__submit { margin-top: 10px; }
.ecw-form__msg { margin-bottom: 16px; padding: 0; }
.ecw-form__msg.is-error { color: #c0392b; padding: 12px 16px; background: #fdecea; border-radius: 10px; }
.ecw-form__msg.is-ok { color: var(--ecw-vert-dd); padding: 12px 16px; background: rgba(82,180,110,.12); border-radius: 10px; }

/* Espacement vertical par défaut des widgets dans une page */
.elementor-widget-ecw_context, .elementor-widget-ecw_stats { }

/* ---- HERO variante split (contenu gauche / image droite) ---- */
.ecw-hero--split { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; align-items: stretch; overflow: hidden; background: var(--ecw-ivoire); }
.ecw-hero--split .ecw-hero__split-text { display: flex; align-items: center; padding: 80px 0; }
.ecw-hero--split .ecw-hero__in { max-width: 600px; margin-left: auto; padding-inline: 48px; text-align: left; }
.ecw-hero--split .ecw-hero__actions { justify-content: flex-start; }
.ecw-hero--split .ecw-cd { justify-content: flex-start; }
.ecw-hero--split .ecw-hero__split-media { position: relative; background: var(--ecw-ivoire-2); }
.ecw-hero--split .ecw-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
	.ecw-hero--split { grid-template-columns: 1fr; }
	.ecw-hero--split .ecw-hero__split-media { min-height: 340px; order: -1; }
	.ecw-hero--split .ecw-hero__in { margin: 0; padding-inline: 22px; }
}

/* ---- PARTENAIRES (logos) ---- */
.ecw-partners__head { text-align: center; margin-bottom: 40px; }
.ecw-partners__k { font-family: var(--ecw-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ecw-vert-d); }
.ecw-partners__head h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); font-weight: 500; margin-top: 10px; }
.ecw-partners__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
.ecw-plogo { display: grid; place-items: center; aspect-ratio: 3/2; background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 14px; padding: 22px; transition: transform .4s var(--ecw-ease), box-shadow .4s; }
.ecw-plogo:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(20,32,25,.08); }
.ecw-plogo img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .4s, opacity .4s; }
.ecw-plogo:hover img { filter: grayscale(0); opacity: 1; }
.ecw-plogo__txt { font-family: var(--ecw-sans); font-weight: 600; color: var(--ecw-gris); text-align: center; font-size: .9rem; }
@media (max-width: 1024px) { .ecw-partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .ecw-partners__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Formulaire : grille de champs (largeurs variables) ---- */
.ecw-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.ecw-form__grid .ecw-field { grid-column: 1 / -1; }
.ecw-form__grid .ecw-field--half { grid-column: span 1; }
@media (max-width: 600px) { .ecw-form__grid .ecw-field--half { grid-column: 1 / -1; } }
.ecw-field .req { color: var(--ecw-orange); }
.ecw-field__group { border: 0; padding: 0; margin: 0; }
.ecw-field__group legend { font-size: .9rem; color: var(--ecw-encre); margin-bottom: 8px; }

/* ---- Éditions : version détaillée (image + texte + PDF) ---- */
.ecw-editions-detailed { display: flex; flex-direction: column; gap: 28px; }
.ecw-ed { display: grid; grid-template-columns: 320px 1fr; gap: 32px; background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 22px; overflow: hidden; }
.ecw-ed__media { position: relative; background: linear-gradient(150deg, var(--ecw-vert-d), var(--ecw-nuit-2)); min-height: 220px; display: grid; place-items: center; }
.ecw-ed__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ecw-ed__year-big { font-family: var(--ecw-display); font-size: 3.4rem; font-weight: 600; color: rgba(255,255,255,.85); }
.ecw-ed__body { padding: 32px 36px 32px 0; }
.ecw-ed__year { font-family: var(--ecw-mono); font-size: .8rem; letter-spacing: .1em; color: var(--ecw-vert-d); }
.ecw-ed__body h3 { font-size: 1.7rem; font-weight: 500; margin: 8px 0 14px; color: var(--ecw-encre); }
.ecw-ed__text { color: var(--ecw-encre-2); font-size: 1rem; line-height: 1.75; margin-bottom: 18px; }
.ecw-ed__links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.ecw-ed__pdf { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ecw-sans); font-weight: 600; font-size: .88rem; padding: .6rem 1.1rem; border-radius: 50px; background: var(--ecw-ivoire-2); color: var(--ecw-encre); text-decoration: none; transition: background .3s; }
.ecw-ed__pdf:hover { background: var(--ecw-orange); color: #fff; }
.ecw-ed__link { font-family: var(--ecw-sans); font-weight: 600; font-size: .9rem; color: var(--ecw-orange); text-decoration: none; }
@media (max-width: 760px) { .ecw-ed { grid-template-columns: 1fr; } .ecw-ed__media { min-height: 180px; } .ecw-ed__body { padding: 24px; } }

/* ---- En-tête de page (inner pages) ---- */
.ecw-phead { padding: 70px 0 50px; background: var(--ecw-ivoire-2); text-align: center; }
.ecw-phead--left { text-align: left; }
.ecw-phead__k { font-family: var(--ecw-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ecw-vert-d); margin-bottom: 12px; }
.ecw-phead__t { font-family: var(--ecw-display); font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); font-weight: 500; color: var(--ecw-encre); }
.ecw-phead__s { color: var(--ecw-gris); font-size: 1.05rem; margin-top: 14px; max-width: 60ch; margin-inline: auto; }
.ecw-phead--left .ecw-phead__s { margin-inline: 0; }

/* ---- Carte ---- */
.ecw-map { width: 100%; border: 1px solid var(--ecw-ligne-l); border-radius: 22px; overflow: hidden; background: var(--ecw-ivoire-2); }
.ecw-map .leaflet-popup-content { font-family: var(--ecw-body); }
.ecw-map .leaflet-popup-content strong { font-family: var(--ecw-display); font-size: 1.05rem; color: var(--ecw-encre); }

/* Logo dans le badge hero (remplace l'icône soleil) */
.ecw-hero__badge-logo { height: 22px; max-height: 40px; width: auto; max-width: 120px; object-fit: contain; vertical-align: middle; flex: none; }
.ecw-hero__badge-txt { display: inline-block; }

/* ---- Responsive global ---- */
@media (max-width: 1020px) {
	.ecw-sec, .ecw-phead { padding-left: 0; padding-right: 0; }
}
@media (max-width: 768px) {
	.ecw-hero__title { font-size: clamp(2.2rem, 1.4rem + 6vw, 3.4rem); }
	.ecw-cd__u { min-width: 78px; padding: 16px 18px; }
	.ecw-cd__v { font-size: 2.1rem; }
	.ecw-band { grid-template-columns: 1fr 1fr; }
	.ecw-mkt { padding: 36px 24px; }
	.ecw-mkt__in { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 520px) {
	.ecw-hero__actions { flex-direction: column; }
	.ecw-hero__actions .ecw-btn { width: 100%; justify-content: center; }
	.ecw-band { grid-template-columns: 1fr; }
}

/* ---- Visibilité mobile des boutons header ---- */
@media (max-width: 768px) {
	.ecw-hide-mobile { display: none !important; }
}

/* ---- Footer : logo (remplace l'icône soleil) ---- */
.ecw-foot__logo { height: 40px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.ecw-foot__brand { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ecw-foot__brand-txt { font-family: var(--ecw-logo); font-weight: 800; font-size: 1.3rem; color: var(--ecw-encre); }

/* ---- Menu mobile type application (bottom nav) ---- */
.ecw-mnav { display: none; }
@media (max-width: 768px) {
	.ecw-mnav {
		display: flex; justify-content: space-around; align-items: flex-end;
		position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1000;
		background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l);
		border-radius: 22px; padding: 10px 8px;
		box-shadow: 0 12px 34px rgba(20,32,25,.18);
	}
	.ecw-mnav__i { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; color: var(--ecw-encre-2); text-decoration: none; font-family: var(--ecw-sans); }
	.ecw-mnav__ic { width: 26px; height: 26px; display: grid; place-items: center; transition: transform .3s var(--ecw-ease), color .3s; }
	.ecw-mnav__ic svg { width: 23px; height: 23px; }
	.ecw-mnav__l { font-size: .64rem; font-weight: 600; letter-spacing: .02em; }
	.ecw-mnav__i:hover .ecw-mnav__ic, .ecw-mnav__i:active .ecw-mnav__ic { color: var(--ecw-orange); transform: translateY(-2px); }
	/* Bouton central mis en avant (style app) */
	.ecw-mnav__i--hl { position: relative; }
	.ecw-mnav__i--hl .ecw-mnav__ic {
		width: 54px; height: 54px; margin-top: -28px; border-radius: 50%;
		background: var(--ecw-orange); color: #fff;
		box-shadow: 0 8px 20px rgba(238,113,34,.4); border: 4px solid var(--ecw-craie);
	}
	.ecw-mnav__i--hl .ecw-mnav__ic svg { width: 26px; height: 26px; }
	.ecw-mnav__i--hl:hover .ecw-mnav__ic { transform: translateY(-2px); color: #fff; background: var(--ecw-orange-d); }
	/* Espace pour ne pas masquer le contenu/footer derrière la barre */
	body:has(.ecw-mnav) { padding-bottom: 84px; }
	/* Masquer le hamburger du header quand le mobile nav le demande */
	.ecw-mnav--hideburger ~ * .ecw-burger,
	body:has(.ecw-mnav--hideburger) .ecw-burger { display: none !important; }
}

/* ---- Footer : icônes réseaux sociaux ---- */
.ecw-foot__socials { display: flex; gap: 10px; margin-top: 18px; }
.ecw-foot__soc { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--ecw-ligne-l); color: var(--ecw-encre-2); transition: all .3s var(--ecw-ease); }
.ecw-foot__soc svg { width: 18px; height: 18px; }
.ecw-foot__soc:hover { background: var(--ecw-vert); border-color: var(--ecw-vert); color: #fff; transform: translateY(-3px); }

/* ============ BLOG / ACTUALITÉS ============ */
.ecw-blog__empty { color: var(--ecw-gris); }
.ecw-blog__foot { text-align: center; margin-top: 44px; }

/* Carte article (commune) */
.ecw-post { display: flex; flex-direction: column; background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 20px; overflow: hidden; transition: transform .5s var(--ecw-ease), box-shadow .5s; }
.ecw-post:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,32,25,.12); }
.ecw-post__media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--ecw-ivoire-2); }
.ecw-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ecw-ease); }
.ecw-post:hover .ecw-post__media img { transform: scale(1.06); }
.ecw-post__ph { position: absolute; inset: 0; background: linear-gradient(150deg, var(--ecw-vert), var(--ecw-vert-d)); }
.ecw-post__cat { position: absolute; top: 14px; left: 14px; font-family: var(--ecw-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--ecw-orange); padding: .35rem .7rem; border-radius: 50px; }
.ecw-post__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ecw-post__m { font-family: var(--ecw-mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ecw-gris); }
.ecw-post__t { font-family: var(--ecw-display); font-size: 1.35rem; font-weight: 500; line-height: 1.2; margin: 0; }
.ecw-post__t a { color: var(--ecw-encre); transition: color .3s; }
.ecw-post__t a:hover { color: var(--ecw-orange); }
.ecw-post__e { color: var(--ecw-encre-2); font-size: .95rem; line-height: 1.65; margin: 0; }
.ecw-post__more { margin-top: auto; font-family: var(--ecw-sans); font-weight: 600; font-size: .85rem; color: var(--ecw-vert-d); transition: gap .3s; }
.ecw-post__more:hover { color: var(--ecw-orange); }

/* Disposition GRILLE */
.ecw-blog--grid .ecw-blog__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1024px) { .ecw-blog--grid .ecw-blog__track { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) { .ecw-blog--grid .ecw-blog__track { grid-template-columns: 1fr; } }

/* Disposition CARROUSEL */
.ecw-blog--carousel .ecw-blog__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; -webkit-overflow-scrolling: touch; }
.ecw-blog--carousel .ecw-post { flex: 0 0 340px; scroll-snap-align: start; }
.ecw-blog--carousel .ecw-blog__track::-webkit-scrollbar { height: 8px; }
.ecw-blog--carousel .ecw-blog__track::-webkit-scrollbar-thumb { background: var(--ecw-ligne-l); border-radius: 50px; }
@media (max-width: 600px) { .ecw-blog--carousel .ecw-post { flex-basis: 80%; } }

/* Disposition MAGAZINE */
.ecw-blog__mag { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.ecw-blog__mag-lead .ecw-post--lg .ecw-post__media { aspect-ratio: 16/11; }
.ecw-blog__mag-lead .ecw-post--lg .ecw-post__t { font-size: 2rem; }
.ecw-blog__mag-list { display: flex; flex-direction: column; gap: 18px; }
.ecw-blog__mag-list .ecw-post { flex-direction: row; align-items: stretch; }
.ecw-blog__mag-list .ecw-post__media { flex: 0 0 132px; aspect-ratio: 1/1; }
.ecw-blog__mag-list .ecw-post__body { padding: 14px 18px; }
.ecw-blog__mag-list .ecw-post__t { font-size: 1.08rem; }
.ecw-blog__mag-list .ecw-post__e { display: none; }
@media (max-width: 860px) {
	.ecw-blog__mag { grid-template-columns: 1fr; }
	.ecw-blog__mag-list .ecw-post { flex-direction: column; }
	.ecw-blog__mag-list .ecw-post__media { flex-basis: auto; aspect-ratio: 16/10; }
}

/* ---- Footer : contact à icônes ---- */
.ecw-foot__contact { list-style: none; margin: 0; padding: 0; }
.ecw-foot__ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--ecw-encre-2); font-size: .9rem; line-height: 1.5; }
.ecw-foot__ci-ic { flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: rgba(82,180,110,.12); color: var(--ecw-vert-d); }
.ecw-foot__ci-ic svg { width: 16px; height: 16px; }
.ecw-foot__ci a { color: var(--ecw-encre-2); text-decoration: none; transition: color .3s; }
.ecw-foot__ci a:hover { color: var(--ecw-orange); }

/* ---- Footer : icônes sociales (corrigé : centrage + taille) ---- */
.ecw-foot__socials { display: flex; gap: 10px; margin-top: 18px; }
.ecw-foot__soc { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ecw-ligne-l); color: var(--ecw-encre-2); transition: all .3s var(--ecw-ease); }
.ecw-foot__soc svg { width: 19px; height: 19px; display: block; }
.ecw-foot__soc:hover { background: var(--ecw-vert); border-color: var(--ecw-vert); color: #fff; transform: translateY(-3px); }

/* ---- Formulaire : multiselect + hint ---- */
.ecw-field .ecw-hint { font-family: var(--ecw-body); font-size: .72rem; color: var(--ecw-gris); font-weight: 400; }
.ecw-multiselect { padding: 8px !important; }
.ecw-multiselect option { padding: 8px 10px; border-radius: 6px; margin-bottom: 2px; }
.ecw-multiselect option:checked { background: var(--ecw-vert) linear-gradient(0deg, var(--ecw-vert), var(--ecw-vert)); color: #fff; }

/* ============ FORMULAIRE MULTI-ÉTAPES ============ */
.ecw-stp { max-width: 760px; margin-inline: auto; }
.ecw-stp__title { font-family: var(--ecw-display); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); font-weight: 500; margin-bottom: 28px; }
.ecw-stp__bar { display: flex; gap: 8px; margin-bottom: 36px; }
.ecw-stp__step { display: flex; align-items: center; gap: 10px; flex: 1; }
.ecw-stp__dot { flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ecw-sans); font-weight: 700; font-size: .9rem; background: var(--ecw-ivoire-2); color: var(--ecw-gris); border: 2px solid var(--ecw-ligne-l); transition: all .4s var(--ecw-ease); }
.ecw-stp__dot.is-active { background: var(--ecw-orange); color: #fff; border-color: var(--ecw-orange); }
.ecw-stp__dot.is-done { background: var(--ecw-vert); color: #fff; border-color: var(--ecw-vert); }
.ecw-stp__lbl { font-family: var(--ecw-sans); font-size: .82rem; font-weight: 600; color: var(--ecw-encre-2); }
@media (max-width: 600px) { .ecw-stp__lbl { display: none; } .ecw-stp__step { flex: none; } .ecw-stp__bar { gap: 14px; justify-content: center; } }
.ecw-stp__panel { display: none; animation: ecw-fade .4s var(--ecw-ease); }
.ecw-stp__panel.is-active { display: block; }
@keyframes ecw-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.ecw-stp__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 12px; }
.ecw-invalid { border-color: #c0392b !important; box-shadow: 0 0 0 2px rgba(192,57,43,.15); }

/* ============ RAPPORTS & DÉCLARATIONS ============ */
.ecw-rep__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.ecw-rep__f { font-family: var(--ecw-sans); font-weight: 600; font-size: .85rem; padding: .55rem 1.2rem; border-radius: 50px; border: 1px solid var(--ecw-ligne-l); background: transparent; color: var(--ecw-encre-2); cursor: pointer; transition: all .3s var(--ecw-ease); }
.ecw-rep__f:hover { border-color: var(--ecw-vert); color: var(--ecw-vert-d); }
.ecw-rep__f.is-active { background: var(--ecw-vert); border-color: var(--ecw-vert); color: #fff; }

.ecw-rep__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1024px) { .ecw-rep__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) { .ecw-rep__grid { grid-template-columns: 1fr; } }

.ecw-rep { display: flex; flex-direction: column; background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 20px; overflow: hidden; transition: transform .5s var(--ecw-ease), box-shadow .5s; }
.ecw-rep.is-hidden { display: none; }
.ecw-rep:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(20,32,25,.13); }
.ecw-rep__cover { position: relative; aspect-ratio: 3/4; background: var(--ecw-ivoire-2); overflow: hidden; display: grid; place-items: center; }
.ecw-rep__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ecw-ease); }
.ecw-rep:hover .ecw-rep__cover img { transform: scale(1.05); }
.ecw-rep__ph { color: var(--ecw-vert-l); }
.ecw-rep__ph svg { width: 64px; height: 64px; }
.ecw-rep__badge { position: absolute; top: 14px; left: 14px; font-family: var(--ecw-mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--ecw-orange); padding: .35rem .7rem; border-radius: 50px; }
.ecw-rep__year { position: absolute; bottom: 14px; right: 14px; font-family: var(--ecw-display); font-weight: 600; font-size: 1.5rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.ecw-rep__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ecw-rep__t { font-family: var(--ecw-display); font-size: 1.25rem; font-weight: 500; line-height: 1.25; margin: 0; color: var(--ecw-encre); }
.ecw-rep__e { color: var(--ecw-encre-2); font-size: .92rem; line-height: 1.6; margin: 0; }
.ecw-rep__dls { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.ecw-rep__dl { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--ecw-sans); font-weight: 600; font-size: .85rem; padding: .6rem 1rem; border-radius: 10px; background: var(--ecw-ivoire-2); color: var(--ecw-encre); text-decoration: none; transition: all .3s var(--ecw-ease); }
.ecw-rep__dl svg { width: 17px; height: 17px; flex: none; }
.ecw-rep__dl:hover { background: var(--ecw-orange); color: #fff; transform: translateX(3px); }

/* ---- En-tête de section centré (option par widget) ---- */
.ecw-sh--center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.ecw-sh--center .ecw-sh__x { max-width: 60ch; margin-inline: auto; }

/* ============ ARTICLE (single) ============ */
.ecw-art { max-width: 820px; margin-inline: auto; }
.ecw-art__cover { border-radius: 24px; overflow: hidden; margin-bottom: 36px; aspect-ratio: 16/9; }
.ecw-art__cover img { width: 100%; height: 100%; object-fit: cover; }
.ecw-art__cat { display: inline-block; font-family: var(--ecw-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--ecw-orange); padding: .4rem .9rem; border-radius: 50px; text-decoration: none; margin-bottom: 18px; }
.ecw-art__title { font-family: var(--ecw-display); font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); font-weight: 500; line-height: 1.1; color: var(--ecw-encre); }
.ecw-art__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-family: var(--ecw-mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ecw-gris); margin-top: 18px; }
.ecw-art__body { margin-top: 36px; font-size: 1.1rem; line-height: 1.85; color: var(--ecw-encre-2); }
.ecw-art__body p { margin: 0 0 1.5rem; }
.ecw-art__body h2, .ecw-art__body h3 { font-family: var(--ecw-display); color: var(--ecw-encre); margin: 2.4rem 0 1rem; }
.ecw-art__body img { border-radius: 16px; margin: 1.5rem 0; }
.ecw-art__body a { color: var(--ecw-vert-d); text-decoration: underline; text-underline-offset: 3px; }
.ecw-art__share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--ecw-ligne-l); }
.ecw-art__share-l { font-family: var(--ecw-sans); font-weight: 600; font-size: .85rem; color: var(--ecw-encre); margin-right: 6px; }
.ecw-art__share a, .ecw-art__copy { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--ecw-ligne-l); color: var(--ecw-encre-2); background: transparent; cursor: pointer; transition: all .3s var(--ecw-ease); }
.ecw-art__share a svg, .ecw-art__copy svg { width: 19px; height: 19px; }
.ecw-art__share a:hover, .ecw-art__copy:hover { background: var(--ecw-vert); border-color: var(--ecw-vert); color: #fff; transform: translateY(-3px); }
.ecw-art__copy.is-copied { background: var(--ecw-vert); border-color: var(--ecw-vert); color: #fff; }
.ecw-art__back { display: inline-block; margin-top: 36px; font-family: var(--ecw-sans); font-weight: 600; color: var(--ecw-vert-d); text-decoration: none; }
.ecw-art__back:hover { color: var(--ecw-orange); }

/* ============ PARTENAIRES DÉFILANT (marquee) ============ */
.ecw-mq__head { margin-bottom: 30px; }
.ecw-mq__head--center { text-align: center; }
.ecw-mq__title { font-family: var(--ecw-display); font-size: clamp(1.4rem, 1rem + 1.5vw, 2rem); font-weight: 500; color: var(--ecw-encre); }
.ecw-mq__viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ecw-mq__track { display: flex; align-items: center; gap: 56px; width: max-content; animation: ecw-marquee linear infinite; }
.ecw-mq:hover .ecw-mq__track { animation-play-state: paused; }
@keyframes ecw-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ecw-mq__i { display: inline-flex; align-items: center; justify-content: center; height: 60px; flex: none; }
.ecw-mq__i img { max-height: 56px; width: auto; object-fit: contain; }
.ecw-mq__txt { font-family: var(--ecw-display); font-size: 1.4rem; color: var(--ecw-encre-2); white-space: nowrap; }
.ecw-mq--gray .ecw-mq__i img { filter: grayscale(1); opacity: .65; transition: filter .3s, opacity .3s; }
.ecw-mq--gray .ecw-mq__i:hover img { filter: grayscale(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .ecw-mq__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ============ THÈMES ============ */
.ecw-th__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ecw-th { background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 20px; padding: 30px 28px; transition: transform .5s var(--ecw-ease), box-shadow .5s; position: relative; }
.ecw-th:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(20,32,25,.12); }
.ecw-th__ic { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: rgba(82,180,110,.12); color: var(--ecw-vert-d); margin-bottom: 18px; }
.ecw-th__ic svg { width: 26px; height: 26px; }
.ecw-th__tag { position: absolute; top: 24px; right: 24px; font-family: var(--ecw-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ecw-orange); background: rgba(238,113,34,.1); padding: .3rem .6rem; border-radius: 50px; }
.ecw-th__n { font-family: var(--ecw-display); font-size: 1.25rem; font-weight: 500; line-height: 1.25; color: var(--ecw-encre); margin: 0 0 10px; }
.ecw-th__d { color: var(--ecw-encre-2); font-size: .95rem; line-height: 1.6; margin: 0; }

/* Accordéon */
.ecw-th__acc { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.ecw-th__row { border: 1px solid var(--ecw-ligne-l); border-radius: 16px; overflow: hidden; background: var(--ecw-craie); }
.ecw-th__q { display: flex; align-items: center; gap: 16px; width: 100%; padding: 18px 22px; background: transparent; border: 0; cursor: pointer; text-align: left; font-family: var(--ecw-display); }
.ecw-th__q .ecw-th__ic { width: 42px; height: 42px; margin: 0; flex: none; }
.ecw-th__q .ecw-th__ic svg { width: 21px; height: 21px; }
.ecw-th__q .ecw-th__n { margin: 0; font-size: 1.1rem; flex: 1; }
.ecw-th__chev { width: 12px; height: 12px; border-right: 2px solid var(--ecw-gris); border-bottom: 2px solid var(--ecw-gris); transform: rotate(45deg); transition: transform .4s var(--ecw-ease); flex: none; }
.ecw-th__row.is-open .ecw-th__chev { transform: rotate(-135deg); }
.ecw-th__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ecw-ease); }
.ecw-th__row.is-open .ecw-th__a { max-height: 300px; }
.ecw-th__a p { margin: 0; padding: 0 22px 22px 80px; color: var(--ecw-encre-2); line-height: 1.65; }
@media (max-width: 640px) { .ecw-th__a p { padding-left: 22px; } }

/* ---- Enveloppe page article ---- */
.ecw-single { padding: 70px 0 90px; }

/* ============ PROGRAMME EN ONGLETS ============ */
.ecw-pt__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.ecw-pt__tab { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 22px; border-radius: 14px; border: 1px solid var(--ecw-ligne-l); background: var(--ecw-craie); cursor: pointer; transition: all .3s var(--ecw-ease); font-family: var(--ecw-sans); }
.ecw-pt__tab:hover { border-color: var(--ecw-vert); transform: translateY(-2px); }
.ecw-pt__tab.is-active { background: var(--ecw-vert); border-color: var(--ecw-vert); }
.ecw-pt__tab.is-active .ecw-pt__tab-d, .ecw-pt__tab.is-active .ecw-pt__tab-x { color: #fff; }
.ecw-pt__tab-d { font-family: var(--ecw-display); font-weight: 600; font-size: 1.05rem; color: var(--ecw-encre); }
.ecw-pt__tab-x { font-family: var(--ecw-mono); font-size: .68rem; letter-spacing: .04em; color: var(--ecw-gris); }
.ecw-pt__panel { display: none; animation: ecw-fade .4s var(--ecw-ease); background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 20px; padding: 36px 40px; }
.ecw-pt__panel.is-active { display: block; }
.ecw-pt__theme { font-family: var(--ecw-display); font-size: 1.35rem; font-weight: 500; line-height: 1.3; color: var(--ecw-vert-d); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--ecw-ligne-l); }
.ecw-pt__time { list-style: none; margin: 0; padding: 0; position: relative; }
.ecw-pt__time::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--ecw-ligne-l); }
.ecw-pt__s { position: relative; padding: 0 0 22px 36px; }
.ecw-pt__s:last-child { padding-bottom: 0; }
.ecw-pt__s::before { content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--ecw-orange); border: 3px solid var(--ecw-craie); box-shadow: 0 0 0 1px var(--ecw-orange); }
.ecw-pt__type { display: inline-block; font-family: var(--ecw-mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ecw-vert-d); background: rgba(82,180,110,.12); padding: .25rem .6rem; border-radius: 50px; margin-bottom: 6px; }
.ecw-pt__txt { display: block; font-family: var(--ecw-body); font-size: 1rem; line-height: 1.55; color: var(--ecw-encre); }
@media (max-width: 600px) { .ecw-pt__panel { padding: 26px 22px; } .ecw-pt__tab { flex: 1; min-width: 90px; } }

/* ============ BLOC CONTACT ============ */
.ecw-ct__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .ecw-ct__grid { grid-template-columns: 1fr; gap: 28px; } }
.ecw-ct__info { display: flex; flex-direction: column; gap: 16px; }
.ecw-ct__card { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 16px; align-items: center; background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 16px; padding: 20px 22px; text-decoration: none; transition: all .3s var(--ecw-ease); }
a.ecw-ct__card:hover { border-color: var(--ecw-vert); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(20,32,25,.08); }
.ecw-ct__ic { grid-row: 1 / 3; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: rgba(82,180,110,.12); color: var(--ecw-vert-d); }
.ecw-ct__ic svg { width: 24px; height: 24px; }
.ecw-ct__lbl { font-family: var(--ecw-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ecw-gris); align-self: end; }
.ecw-ct__val { font-family: var(--ecw-display); font-size: 1.1rem; color: var(--ecw-encre); align-self: start; }
.ecw-ct__form { background: var(--ecw-craie); border: 1px solid var(--ecw-ligne-l); border-radius: 22px; padding: 32px 34px; }
@media (max-width: 600px) { .ecw-ct__form { padding: 24px 20px; } }
.ecw-ct__submit { margin-top: 8px; }
