/*
 * MC Contact — Marché Conclu
 * Version : 3.1.0
 * Architecture : gardes (0,2,0), composants (0,3,0) — insensible au thème
 * ET à l'ordre de chargement des autres plugins MC.
 */

/* ==================================================================
   SOCLE MC — gardes (0,2,0) + primitives de la charte
   Toute règle de composant est déclarée APRÈS ces gardes et pèse au
   moins (0,2,0) : le thème (règles à balise nue OU composées
   `.elementor h1..h6` à (0,1,1)) ne peut plus rien écraser.
   ================================================================== */

:root {
	--mc-bleu: #274480;
	--mc-bleu-fonce: #1c3260;
	--mc-nuit: #16233f;
	--mc-or: #d9af61;
	--mc-or-clair: #e8cd97;
	--mc-or-sombre: #b9903f;
	--mc-creme: #faf7f0;
	--mc-ivoire: #fcfbf7;
	--mc-encre: #2b2b28;
	--mc-gris: #6b6b66;
	--mc-sable: #e7dfcc;
	--mc-font-titres: "Playfair Display", Georgia, serif;
	--mc-font-texte: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mc-w {
	overflow-x: clip;
	padding-left: var(--mc-pad-x, 20px);
	padding-right: var(--mc-pad-x, 20px);
	font-family: var(--mc-font-texte);
	color: var(--mc-encre);
	box-sizing: border-box;
}

.mc-w *,
.mc-w *::before,
.mc-w *::after {
	box-sizing: border-box;
	min-width: 0;
}

.mc-w.mc-w [hidden] {
	display: none !important;
}

/* Gardes texte à (0,2,0) : battent `.elementor h3` (0,1,1) du thème */
.mc-w.mc-w :where(h1, h2, h3, h4, h5, h6, p) {
	margin: 0;
	padding: 0;
	letter-spacing: normal;
	text-transform: none;
}

.mc-w.mc-w :where(h1, h2, h3, h4, h5, h6) {
	font-family: var(--mc-font-titres);
	font-weight: 600;
	line-height: 1.25;
}

.mc-w.mc-w :where(ul, ol) {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Réinitialisation button à (0,2,0) */
.mc-w.mc-w :where(button) {
	background: none;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin: 0;
	font-family: var(--mc-font-texte);
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	position: static;
	z-index: auto;
	box-shadow: none;
	cursor: pointer;
	text-align: inherit;
	text-transform: none;
	letter-spacing: normal;
}

.mc-w.mc-w :where(button):hover {
	opacity: 1;
	box-shadow: none;
	color: inherit;
	background: none;
}

.mc-w.mc-w :where(a) {
	text-decoration: none;
}

.mc-w .mc-shrink {
	overflow-wrap: anywhere;
}

/* Sur-titre */
.mc-w .mc-surtitre {
	display: block;
	font-family: var(--mc-font-texte);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mc-or-sombre);
	margin: 0;
}

/* Boutons de la suite */
.mc-w .mc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background: var(--mc-btn-bg, var(--mc-or));
	color: var(--mc-btn-color, var(--mc-bleu-fonce));
	border-radius: var(--mc-btn-radius, 6px);
	font-family: var(--mc-font-texte);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.01em;
	text-decoration: none;
	text-align: center;
	overflow-wrap: break-word;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
	max-width: 100%;
}

.mc-w .mc-btn:hover {
	background: var(--mc-btn-bg-h, var(--mc-bleu));
	color: var(--mc-btn-color-h, #ffffff);
	transform: translateY(-1px);
}

.mc-w .mc-btn:focus-visible {
	outline: 2px solid var(--mc-or);
	outline-offset: 2px;
}

.mc-w .mc-btn--ghost {
	--mc-btn-bg: transparent;
	--mc-btn-color: var(--mc-or);
	box-shadow: inset 0 0 0 1px var(--mc-or);
}

/* Icônes */
.mc-w .mc-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
}

.mc-w .mc-ico i,
.mc-w .mc-ico i::before,
.mc-w .mc-ico svg {
	line-height: 1 !important;
	vertical-align: middle;
}

.mc-w .mc-ico svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Champs : hauteur UNIFORME champs texte / select */
.mc-w.mc-w :where(input[type="text"], input[type="tel"], input[type="email"], select) {
	height: 50px;
	padding: 0 14px;
	line-height: normal;
}

.mc-w.mc-w :where(textarea) {
	padding: 13px 14px;
	resize: vertical;
}

.mc-w.mc-w :where(input[type="text"], input[type="tel"], input[type="email"], textarea, select) {
	font-size: 16px;
	font-family: var(--mc-font-texte);
	width: 100%;
	background: #ffffff;
	background-image: none;
	border: 1px solid #d8d8d2;
	border-radius: 8px;
	color: var(--mc-encre);
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.mc-w.mc-w :where(input, textarea, select):hover {
	border-color: var(--mc-or);
}

.mc-w.mc-w :where(input, textarea, select):focus {
	outline: none;
	border-color: var(--mc-or);
	box-shadow: 0 0 0 3px rgba(217, 175, 97, 0.2);
}

.mc-w.mc-w :where(input, textarea)::placeholder {
	color: #a9a9a2;
	opacity: 1;
}

/* Masquage accessible */
.mc-w .mc-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
	padding: 0;
}

/* Images plaquées : (0,2,0) bat .elementor img (0,1,1) */
.mc-w .mc-media {
	height: 100%;
	min-height: 100%;
	width: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
}

/* Ornements partagés */
.mc-w .mc-filet {
	display: block;
	width: 58px;
	height: 2px;
	background: linear-gradient(90deg, var(--mc-or), var(--mc-or-clair));
}

.mc-w .mc-losange {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: var(--mc-or);
	transform: rotate(45deg);
}


/* ================== Widget Contact — 4 designs de bloc, 6 designs de champs ================== */

.mc-w.mcc {
	padding-top: 30px;
	padding-bottom: 30px;
}

.mc-w.mcc--2col {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 32px;
	align-items: stretch;
	max-width: 1160px;
	margin: 0 auto;
}

.mc-w.mcc .mcc__cadre {
	position: relative;
	height: 100%;
}

.mc-w.mcc .mcc__titre {
	font-family: var(--mc-font-titres);
	font-size: clamp(26px, 3.7vmin, 35px);
	font-weight: 600;
	line-height: 1.2;
	color: var(--mc-bleu);
	margin: 10px 0 0;
	padding: 0;
	letter-spacing: normal;
	text-transform: none;
}

.mc-w.mcc .mcc__filet {
	display: block;
	width: 58px;
	height: 2px;
	background: linear-gradient(90deg, var(--mc-or), var(--mc-or-clair));
	margin-top: 15px;
}

.mc-w.mcc .mcc__intro {
	margin: 15px 0 0;
	padding: 0;
	font-family: var(--mc-font-texte);
	color: var(--mc-gris);
	line-height: 1.75;
	font-size: 15.5px;
	max-width: 58ch;
}

/* Pot de miel : masquage accessible complet */
.mc-w.mcc .mcc__hp {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
	padding: 0;
}

/* Formulaire — largeur bornée */
.mc-w.mcc .mcc__form {
	margin-top: 26px;
	max-width: 880px;
	position: relative;
}

.mc-w.mcc .mcc__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 18px;
}

.mc-w.mcc .mcc__field--full {
	grid-column: 1 / -1;
}

.mc-w.mcc .mcc__field label {
	display: block;
	font-family: var(--mc-font-texte);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #5a6b8f;
	margin: 0 0 8px;
	padding: 0;
}

.mc-w.mcc .mcc__field textarea {
	min-height: 124px;
}

/* Select habillé chevron or — flèche native/thème neutralisée */
.mc-w.mcc .mcc__select {
	position: relative;
	display: block;
}

.mc-w.mcc .mcc__select::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--mc-or);
	border-bottom: 2px solid var(--mc-or);
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.mc-w.mcc .mcc__select select {
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-image: none !important;
	padding-right: 40px;
}

.mc-w.mcc .mcc__select select::-ms-expand {
	display: none;
}

/* Erreurs : uniquement à la soumission */
.mc-w.mcc .mcc__err {
	font-family: var(--mc-font-texte);
	font-size: 13px;
	color: #a2432c;
	margin: 7px 0 0;
	padding: 0;
	overflow-wrap: anywhere;
}

.mc-w.mcc .mcc__err--global {
	margin-top: 16px;
	background: #faece7;
	border-left: 3px solid #a2432c;
	padding: 11px 15px;
	border-radius: 0 8px 8px 0;
}

.mc-w.mcc .mcc__field.is-invalid input,
.mc-w.mcc .mcc__field.is-invalid textarea {
	border-color: #a2432c;
}

/* Bouton + réassurance */
.mc-w.mcc .mcc__actions {
	margin-top: 22px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px 24px;
}

.mc-w.mcc .mcc__send {
	min-width: 235px;
	position: relative;
}

.mc-w.mcc .mcc__send-fleche {
	font-size: 16px;
	margin-left: 11px !important;
	transition: transform 0.25s ease;
}

.mc-w.mcc .mcc__send:hover .mcc__send-fleche {
	transform: translateX(4px);
}

.mc-w.mcc .mcc__spin {
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: mcc-spin 0.7s linear infinite;
	flex: 0 0 auto;
	margin-left: 11px;
}

@keyframes mcc-spin {
	to { transform: rotate(360deg); }
}

.mc-w.mcc .mcc__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mc-w.mcc .mcc__chips li {
	display: inline-flex;
	align-items: center;
	font-family: var(--mc-font-texte);
	font-size: 13px;
	color: var(--mc-gris);
}

.mc-w.mcc .mcc__chips .mc-ico {
	color: var(--mc-or-sombre);
	font-size: 13px;
	margin-right: 8px !important;
}

.mc-w.mcc .mcc__rgpd {
	margin: 15px 0 0;
	padding: 0;
	font-family: var(--mc-font-texte);
	font-size: 12px;
	color: var(--mc-gris);
}

.mc-w.mcc .mcc__rgpd a {
	color: var(--mc-bleu);
	text-decoration: underline;
}

/* ------------------------------------------------------------------ */
/* Panneau coordonnées — bleu profond, lueur or                        */
/* ------------------------------------------------------------------ */

.mc-w.mcc .mcc__panneau {
	height: 100%;
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(circle at 85% 0%, rgba(217, 175, 97, 0.18), transparent 42%),
		linear-gradient(165deg, var(--mc-bleu) 0%, var(--mc-bleu-fonce) 100%);
	border: 1px solid rgba(217, 175, 97, 0.4);
	border-radius: 16px;
	padding: 28px 26px;
	color: #dfe6f4;
	box-shadow: 0 26px 52px -34px rgba(16, 26, 50, 0.75);
}

.mc-w.mcc .mcc__panneau-haut {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-bottom: 17px;
	border-bottom: 1px solid rgba(217, 175, 97, 0.28);
}

.mc-w.mcc .mcc__panneau-titre {
	font-family: var(--mc-font-titres);
	font-size: 22px;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
	padding: 0;
	letter-spacing: normal;
	text-transform: none;
}

.mc-w.mcc .mcc__statut {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mc-font-texte);
	font-size: 12.5px;
	font-weight: 500;
	margin: 0;
	padding: 6px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.mc-w.mcc .mcc__statut-point {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7ed6a0;
	flex: 0 0 auto;
	animation: mcc-pouls 2s ease-in-out infinite;
}

.mc-w.mcc .mcc__statut.is-ferme .mcc__statut-point {
	background: #e0a08c;
	animation: none;
}

@keyframes mcc-pouls {
	0%, 100% { box-shadow: 0 0 0 0 rgba(126, 214, 160, 0.5); }
	55%      { box-shadow: 0 0 0 5px rgba(126, 214, 160, 0); }
}

.mc-w.mcc .mcc__list {
	margin: 7px 0 0;
	padding: 0;
	list-style: none;
}

.mc-w.mcc .mcc__list li {
	display: flex;
	align-items: flex-start;
	font-family: var(--mc-font-texte);
	font-size: 15px;
	line-height: 1.6;
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mc-w.mcc .mcc__list li:last-child {
	border-bottom: 0;
}

.mc-w.mcc .mcc__list > li > .mc-ico {
	font-size: 18px;
	color: var(--mc-or);
	margin-right: 13px !important;
	margin-top: 3px !important;
}

.mc-w.mcc .mcc__list a {
	color: #ffffff;
	text-decoration: none;
}

.mc-w.mcc .mcc__list a:hover {
	color: var(--mc-or);
}

/* Bouton copier */
.mc-w.mcc .mcc__copier {
	margin-left: auto !important;
	padding: 0 0 0 10px !important;
	background: none;
	border: 0;
	color: rgba(223, 230, 244, 0.55);
	font-size: 15px;
	flex: 0 0 auto;
	cursor: pointer;
	transition: color 0.2s ease;
	position: relative;
	z-index: auto;
	box-shadow: none;
}

.mc-w.mcc .mcc__copier:hover {
	color: var(--mc-or);
	opacity: 1;
	background: none;
	box-shadow: none;
}

.mc-w.mcc .mcc__copier:focus-visible {
	outline: 2px solid var(--mc-or);
	outline-offset: 2px;
	border-radius: 4px;
}

.mc-w.mcc .mcc__copier.is-copie {
	color: #7ed6a0;
}

.mc-w.mcc .mcc__copier.is-copie::after {
	content: "Copié !";
	position: absolute;
	right: 0;
	bottom: calc(100% + 6px);
	background: var(--mc-nuit);
	color: #ffffff;
	font-size: 11px;
	padding: 4px 8px;
	border-radius: 4px;
	border: 1px solid rgba(217, 175, 97, 0.5);
	white-space: nowrap;
}

/* Carte : remplit tout l'espace restant, collée aux coordonnées */
.mc-w.mcc .mcc__map {
	flex: 1 1 auto;
	display: flex;
	margin-top: 17px;
	min-height: 210px;
}

.mc-w.mcc .mcc__map iframe {
	display: block;
	width: 100%;
	height: auto;
	min-height: 210px;
	flex: 1 1 auto;
	border: 0;
	border-radius: 10px;
	border-top: 2px solid rgba(217, 175, 97, 0.55);
}

/* ================================================================
   Design de bloc 1 — ÉCRIN : carte crème double filet or (défaut)
   ================================================================ */

.mc-w.mcc--ecrin .mcc__cadre {
	background: linear-gradient(180deg, #fffdf8 0%, var(--mc-creme) 100%);
	border: 1px solid var(--mc-sable);
	border-top: 3px solid var(--mc-or);
	border-radius: 16px;
	padding: clamp(24px, 3.4vmin, 42px);
	box-shadow: 0 26px 52px -34px rgba(28, 50, 96, 0.4);
}

.mc-w.mcc--ecrin .mcc__cadre::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(217, 175, 97, 0.32);
	border-radius: 11px;
	pointer-events: none;
}

/* ================================================================
   Design de bloc 2 — GALERIE : carte blanche ombrée
   ================================================================ */

.mc-w.mcc--galerie .mcc__cadre {
	background: #ffffff;
	border: 1px solid #efe9db;
	border-radius: 16px;
	padding: clamp(24px, 3.4vmin, 42px);
	box-shadow: 0 24px 50px -32px rgba(28, 50, 96, 0.45);
}

/* ================================================================
   Design de bloc 3 — LIGNE : épuré, sans carte
   ================================================================ */

.mc-w.mcc--ligne .mcc__cadre {
	padding: 8px 0;
}

/* ================================================================
   Design de bloc 4 — NUIT : tout sur bleu profond
   ================================================================ */

.mc-w.mcc--nuit {
	background:
		radial-gradient(circle at 12% 8%, rgba(217, 175, 97, 0.12), transparent 40%),
		linear-gradient(170deg, var(--mc-bleu-fonce), var(--mc-nuit));
	border-radius: 18px;
	padding-top: 46px;
	padding-bottom: 46px;
}

.mc-w.mcc--nuit .mcc__cadre {
	padding: 0 clamp(4px, 1.5vmin, 12px);
}

.mc-w.mcc--nuit .mcc__titre {
	color: #ffffff;
}

.mc-w.mcc--nuit .mc-surtitre {
	color: var(--mc-or);
}

.mc-w.mcc--nuit .mcc__intro,
.mc-w.mcc--nuit .mcc__chips li,
.mc-w.mcc--nuit .mcc__rgpd {
	color: #b5c3e0;
}

.mc-w.mcc--nuit .mcc__rgpd a {
	color: var(--mc-or);
}

.mc-w.mcc--nuit .mcc__field label {
	color: var(--mc-or-clair);
}

.mc-w.mcc--nuit .mcc__form input,
.mc-w.mcc--nuit .mcc__form select,
.mc-w.mcc--nuit .mcc__form textarea {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.mc-w.mcc--nuit .mcc__form input:focus,
.mc-w.mcc--nuit .mcc__form select:focus,
.mc-w.mcc--nuit .mcc__form textarea:focus {
	border-color: var(--mc-or);
	box-shadow: 0 0 0 3px rgba(217, 175, 97, 0.18);
}

.mc-w.mcc--nuit .mcc__panneau {
	background:
		radial-gradient(circle at 85% 0%, rgba(217, 175, 97, 0.16), transparent 42%),
		rgba(255, 255, 255, 0.04);
	box-shadow: none;
}

/* ================================================================
   Design de bloc 5 — IVOIRE : carte pleine sans bordure, panneau OR
   ================================================================ */

.mc-w.mcc--ivoire .mcc__cadre {
	background: var(--mc-ivoire);
	border-radius: 16px;
	padding: clamp(24px, 3.4vmin, 42px);
}

.mc-w.mcc--ivoire .mcc__panneau {
	background:
		radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.5), transparent 40%),
		linear-gradient(160deg, var(--mc-or-clair) 0%, var(--mc-or) 55%, var(--mc-or-sombre) 100%);
	border: 0;
	color: var(--mc-bleu-fonce);
	box-shadow: 0 26px 52px -34px rgba(140, 105, 40, 0.65);
}

.mc-w.mcc--ivoire .mcc__panneau-titre {
	color: var(--mc-bleu-fonce);
}

.mc-w.mcc--ivoire .mcc__panneau-haut {
	border-bottom-color: rgba(28, 50, 96, 0.28);
}

.mc-w.mcc--ivoire .mcc__statut {
	background: rgba(28, 50, 96, 0.1);
	border-color: rgba(28, 50, 96, 0.16);
	color: var(--mc-bleu-fonce);
}

.mc-w.mcc--ivoire .mcc__list li {
	border-bottom-color: rgba(28, 50, 96, 0.12);
}

.mc-w.mcc--ivoire .mcc__list > li > .mc-ico {
	color: var(--mc-bleu-fonce);
}

.mc-w.mcc--ivoire .mcc__list a {
	color: var(--mc-bleu-fonce);
}

.mc-w.mcc--ivoire .mcc__list a:hover {
	color: #ffffff;
}

.mc-w.mcc--ivoire .mcc__copier {
	color: rgba(28, 50, 96, 0.5);
}

.mc-w.mcc--ivoire .mcc__copier:hover {
	color: var(--mc-bleu-fonce);
}

.mc-w.mcc--ivoire .mcc__map iframe {
	border-top-color: rgba(28, 50, 96, 0.4);
}

/* ================================================================
   Design de bloc 6 — FILETS : minimal luxe, panneau clair contour or
   ================================================================ */

.mc-w.mcc--filets .mcc__cadre {
	padding: 26px 0;
	border-top: 1px solid var(--mc-or);
	border-bottom: 1px solid var(--mc-or);
}

.mc-w.mcc--filets .mcc__panneau {
	background: #ffffff;
	border: 1px solid var(--mc-or);
	box-shadow: none;
	color: var(--mc-encre);
}

.mc-w.mcc--filets .mcc__panneau::before {
	content: "";
	display: block;
	position: absolute;
}

.mc-w.mcc--filets .mcc__panneau-titre {
	color: var(--mc-bleu);
}

.mc-w.mcc--filets .mcc__panneau-haut {
	border-bottom-color: rgba(217, 175, 97, 0.4);
}

.mc-w.mcc--filets .mcc__statut {
	background: var(--mc-creme);
	border-color: var(--mc-sable);
	color: var(--mc-encre);
}

.mc-w.mcc--filets .mcc__list li {
	border-bottom-color: #f0ebdf;
	color: var(--mc-encre);
}

.mc-w.mcc--filets .mcc__list > li > .mc-ico {
	color: var(--mc-or-sombre);
}

.mc-w.mcc--filets .mcc__list a {
	color: var(--mc-bleu);
}

.mc-w.mcc--filets .mcc__list a:hover {
	color: var(--mc-or-sombre);
}

.mc-w.mcc--filets .mcc__copier {
	color: #b8b2a2;
}

.mc-w.mcc--filets .mcc__copier:hover {
	color: var(--mc-or-sombre);
}

.mc-w.mcc--filets .mcc__copier.is-copie::after {
	background: var(--mc-bleu);
}

/* ================================================================
   Designs de CHAMPS (contrôle « Design des champs », mcc--ch-*)
   ================================================================ */

/* Gris perle rempli */
.mc-w.mcc--ch-perle .mcc__form input,
.mc-w.mcc--ch-perle .mcc__form select,
.mc-w.mcc--ch-perle .mcc__form textarea {
	background: #f2f3f5;
	border-color: transparent;
}

.mc-w.mcc--ch-perle .mcc__form input:hover,
.mc-w.mcc--ch-perle .mcc__form select:hover,
.mc-w.mcc--ch-perle .mcc__form textarea:hover {
	background: #eceef1;
	border-color: transparent;
}

.mc-w.mcc--ch-perle .mcc__form input:focus,
.mc-w.mcc--ch-perle .mcc__form select:focus,
.mc-w.mcc--ch-perle .mcc__form textarea:focus {
	background: #ffffff;
	border-color: var(--mc-bleu);
	box-shadow: 0 0 0 3px rgba(39, 68, 128, 0.14);
}

/* Blanc, contour or permanent */
.mc-w.mcc--ch-contour .mcc__form input,
.mc-w.mcc--ch-contour .mcc__form select,
.mc-w.mcc--ch-contour .mcc__form textarea {
	border-color: rgba(217, 175, 97, 0.65);
}

.mc-w.mcc--ch-contour .mcc__form input:hover,
.mc-w.mcc--ch-contour .mcc__form select:hover,
.mc-w.mcc--ch-contour .mcc__form textarea:hover,
.mc-w.mcc--ch-contour .mcc__form input:focus,
.mc-w.mcc--ch-contour .mcc__form select:focus,
.mc-w.mcc--ch-contour .mcc__form textarea:focus {
	border-color: var(--mc-or);
}

/* Ivoire discret */
.mc-w.mcc--ch-ivoire .mcc__form input,
.mc-w.mcc--ch-ivoire .mcc__form select,
.mc-w.mcc--ch-ivoire .mcc__form textarea {
	background: var(--mc-ivoire);
	border-color: #e2ded2;
}

/* Parchemin chaud */
.mc-w.mcc--ch-parchemin .mcc__form input,
.mc-w.mcc--ch-parchemin .mcc__form select,
.mc-w.mcc--ch-parchemin .mcc__form textarea {
	background: #fffdf8;
	border-color: #e3d8bf;
	border-bottom-color: #d5c49c;
	box-shadow: inset 0 1px 2px rgba(120, 100, 55, 0.06);
}

.mc-w.mcc--ch-parchemin .mcc__form input:focus,
.mc-w.mcc--ch-parchemin .mcc__form select:focus,
.mc-w.mcc--ch-parchemin .mcc__form textarea:focus {
	background: #ffffff;
	border-color: var(--mc-or);
	box-shadow: inset 0 1px 2px rgba(120, 100, 55, 0.04), 0 0 0 3px rgba(217, 175, 97, 0.22);
}

/* Soulignés */
.mc-w.mcc--ch-souligne .mcc__form input,
.mc-w.mcc--ch-souligne .mcc__form select,
.mc-w.mcc--ch-souligne .mcc__form textarea {
	background: transparent;
	border: 0;
	border-bottom: 2px solid #d8d3c4;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	box-shadow: none;
}

.mc-w.mcc--ch-souligne .mcc__form input:hover,
.mc-w.mcc--ch-souligne .mcc__form select:hover,
.mc-w.mcc--ch-souligne .mcc__form textarea:hover,
.mc-w.mcc--ch-souligne .mcc__form input:focus,
.mc-w.mcc--ch-souligne .mcc__form select:focus,
.mc-w.mcc--ch-souligne .mcc__form textarea:focus {
	border-bottom-color: var(--mc-or);
	box-shadow: none;
}

.mc-w.mcc--ch-souligne .mcc__select::after {
	right: 4px;
}

/* ------------------------------------------------------------------ */
/* Popup — fin de <body>, variables recopiées                          */
/* ------------------------------------------------------------------ */

.mcc__popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: var(--mc-font-texte);
}

.mcc__popup[hidden] {
	display: none !important;
}

.mcc__popup .mcc__popup-veil {
	position: absolute;
	inset: 0;
	background: rgba(15, 24, 46, 0.66);
	backdrop-filter: blur(2px);
}

.mcc__popup .mcc__popup-box {
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
	border-radius: 18px;
	border: 1px solid #e8e2d4;
	border-top: 4px solid var(--mc-or);
	max-width: 460px;
	width: 100%;
	padding: 42px 32px 34px;
	text-align: center;
	animation: mcc-pop 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.15);
	box-sizing: border-box;
	box-shadow: 0 32px 64px -24px rgba(10, 18, 38, 0.55);
}

.mcc__popup .mcc__popup-box * {
	box-sizing: border-box;
	min-width: 0;
}

@keyframes mcc-pop {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.96);
	}
}

.mcc__popup .mcc__popup-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(160deg, var(--mc-bleu), var(--mc-bleu-fonce));
	color: var(--mc-or);
	margin-bottom: 18px;
}

.mcc__popup .mcc__popup-badge::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px solid var(--mc-or);
	animation: mcc-anneau 1.6s ease-out 0.25s both;
}

@keyframes mcc-anneau {
	from { transform: scale(0.7); opacity: 0; }
	45%  { opacity: 1; }
	to   { transform: scale(1.25); opacity: 0; }
}

.mcc__popup .mcc__popup-badge svg {
	width: 30px;
	height: 30px;
}

.mcc__popup .mcc__popup-titre {
	font-family: var(--mc-font-titres);
	font-size: 25px;
	font-weight: 600;
	color: var(--mc-bleu);
	margin: 0;
	padding: 0;
	letter-spacing: normal;
	text-transform: none;
}

.mcc__popup .mcc__popup-texte {
	margin: 11px 0 25px;
	padding: 0;
	color: var(--mc-gris);
	line-height: 1.7;
	font-size: 15px;
	overflow-wrap: anywhere;
}

.mcc__popup .mc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 34px;
	background: var(--mc-btn-bg, var(--mc-or));
	color: var(--mc-btn-color, var(--mc-bleu-fonce));
	border-radius: var(--mc-btn-radius, 6px);
	font-family: var(--mc-font-texte);
	font-size: 15px;
	font-weight: 500;
	border: 0;
	cursor: pointer;
	overflow-wrap: break-word;
	position: static;
	z-index: auto;
	box-shadow: none;
}

.mcc__popup .mc-btn:hover {
	background: var(--mc-btn-bg-h, var(--mc-bleu));
	color: var(--mc-btn-color-h, #ffffff);
	opacity: 1;
	box-shadow: none;
}

/* ---------------- Mouvement réduit / responsive ---------------- */

@media (prefers-reduced-motion: reduce) {
	.mcc__popup .mcc__popup-box,
	.mcc__popup .mcc__popup-badge::after,
	.mc-w.mcc .mcc__statut-point {
		animation: none;
	}
}

@media (max-width: 920px) {
	.mc-w.mcc--2col {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
	}
	.mc-w.mcc .mcc__map iframe {
		min-height: 190px;
	}
}

@media (max-width: 620px) {
	.mc-w.mcc .mcc__grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.mc-w.mcc .mcc__send {
		width: 100%;
	}
}
