:root {
  --navy: #1a365d;
  --navy-deep: #12243f;
  --gold: #c9a56a;
  --gold-soft: #e8d7b3;
  --sky: #7eb6d4;
  --ink: #3a4654;
  --muted: #6b7684;
  --line: #e6e1d6;
  --bg: #fcfbf8;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(26, 54, 93, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Montserrat", system-ui, sans-serif;
  --header-h: 76px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--sky); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--white);
  padding: 8px 12px;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}
.brand img { width: 46px; height: 46px; }
.brand-name {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.brand-name .c {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
}
.brand-name .e {
  font-family: var(--script);
  font-size: 1.85rem;
  color: var(--sky);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  overflow: visible;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--bg);
  color: var(--navy) !important;
  border-color: var(--gold);
}
.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-deep);
  color: var(--gold-soft) !important;
  border-color: var(--navy-deep);
}
.btn-ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white) !important; }

/* Hello Elementor reset.css impose #c36 sur button/[type=submit] — on l’écrase. */
button.btn,
button.btn:hover,
button.btn:focus,
button.btn:active,
button.btn:visited,
[type="submit"].btn,
[type="submit"].btn:hover,
[type="submit"].btn:focus,
[type="button"].btn,
[type="button"].btn:hover,
[type="button"].btn:focus,
a.btn,
a.btn:hover,
a.btn:focus {
  border-style: solid !important;
  border-width: 1px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
button.btn-navy,
button.btn-navy:hover,
button.btn-navy:focus,
button.btn-navy:active,
[type="submit"].btn-navy,
[type="submit"].btn-navy:hover,
[type="submit"].btn-navy:focus,
a.btn-navy,
a.btn-navy:hover,
a.btn-navy:focus {
  background-color: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
}
button.btn-navy:hover,
button.btn-navy:focus,
[type="submit"].btn-navy:hover,
[type="submit"].btn-navy:focus,
a.btn-navy:hover,
a.btn-navy:focus {
  background-color: var(--navy-deep) !important;
  border-color: var(--navy-deep) !important;
  color: var(--gold-soft) !important;
}
button.btn-gold,
button.btn-gold:hover,
button.btn-gold:focus,
button.btn-gold:active,
[type="button"].btn-gold,
[type="button"].btn-gold:hover,
[type="button"].btn-gold:focus,
a.btn-gold,
a.btn-gold:hover,
a.btn-gold:focus {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}
button.btn-gold:hover,
button.btn-gold:focus,
[type="button"].btn-gold:hover,
[type="button"].btn-gold:focus,
a.btn-gold:hover,
a.btn-gold:focus {
  background-color: var(--bg) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  display: grid;
  gap: 28px;
  padding: 28px 0 48px;
}
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.35rem; }
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  margin: 12px 0 20px;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 88px;
  background: var(--gold);
}
.heart {
  width: 28px;
  height: 28px;
}

.section { padding: 40px 0; }
.section-alt { background: var(--white); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.grid-3, .grid-2, .cards {
  display: grid;
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.card .picto { width: 42px; height: 42px; margin-bottom: 14px; }
.card p { margin: 0; color: var(--muted); }
.card h3 { margin-bottom: 8px; }

.values {
  display: grid;
  gap: 20px;
}
.value {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.value img { width: 42px; }

.banner {
  background: var(--navy);
  color: #dce7f2;
  padding: 40px 0;
  text-align: center;
}
.banner h2 { color: var(--white); }
.banner p { margin: 0 auto; max-width: 40rem; }
.script {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--sky);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}
.faq p { margin: 10px 0 4px; color: var(--muted); }

.contact-grid {
  display: grid;
  gap: 28px;
}
.info-block {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
}
.info-block p { margin: 6px 0; }
.info-block-cta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px !important;
  overflow: visible;
  align-items: center;
}
.btn .ce-ico {
  margin-right: 8px;
  flex-shrink: 0;
  display: block;
  overflow: visible;
  max-height: none;
}
.ce-li-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: currentColor;
  flex-shrink: 0;
  margin-right: 8px;
  overflow: visible;
}
.btn .ce-li-badge {
  background: #fff;
  color: var(--navy);
}
.btn .ce-li-badge .ce-ico {
  width: 11px;
  height: 11px;
  margin-right: 0;
  color: var(--navy);
  display: block;
  overflow: visible;
}
.btn-navy:hover .ce-li-badge {
  background: var(--gold-soft);
}
.btn-navy:hover .ce-li-badge .ce-ico {
  color: var(--navy-deep);
}
.elementor-widget-html .btn,
.elementor-widget-html .ce-ico,
.elementor-widget-html .ce-li-badge {
  overflow: visible;
}

form.ce-form {
  display: grid;
  gap: 14px;
}
.ce-form label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.ce-form input,
.ce-form select,
.ce-form textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.ce-form input[type="checkbox"] {
  padding: 0;
  width: 1.1em;
  height: 1.1em;
  border-radius: 3px;
  accent-color: var(--navy);
}
.ce-form textarea { min-height: 120px; resize: vertical; }
.ce-form > .btn {
  justify-self: start;
  width: auto;
  margin-top: 4px;
}
.ce-form label.consent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
}
.ce-form label.consent input[type="checkbox"] {
  flex: 0 0 auto;
  margin: 0.28em 0 0;
}
.ce-form label.consent span {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.5;
}
.hp { position: absolute; left: -9999px; }
.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  background: #f4eee3;
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 8px;
}
.form-ok {
  padding: 16px;
  background: #e8f4ea;
  color: #215c32;
  border-radius: 10px;
}
.form-err {
  padding: 16px;
  background: #fdecea;
  color: #8a1f11;
  border-radius: 10px;
}

.legal { max-width: 44rem; }
.legal h2 { margin-top: 28px; }
.placeholder-box {
  border: 1px dashed var(--gold);
  background: #fff8ec;
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--muted);
}

.site-footer {
  background: var(--navy-deep);
  color: #c9d4e0;
  padding: 40px 0 24px;
  margin-top: 20px;
}
.site-footer a { color: var(--gold-soft); }
.footer-grid {
  display: grid;
  gap: 24px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.82rem;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 165, 106, 0.25);
}
.copy { font-size: 0.8rem; opacity: 0.75; }

.wa {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  left: auto;
  top: auto;
  z-index: 9999;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fe074 0%, #25d366 45%, #1ebe57 100%);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  overflow: visible;
  box-shadow:
    0 4px 12px rgba(18, 36, 63, 0.18),
    0 10px 28px rgba(37, 211, 102, 0.38);
  animation: ce-wa-float 3.2s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.wa svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  display: block;
}
.wa:hover,
.wa:focus {
  color: #fff;
  animation-play-state: paused;
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 6px 16px rgba(18, 36, 63, 0.22),
    0 0 0 3px rgba(37, 211, 102, 0.25),
    0 14px 36px rgba(37, 211, 102, 0.5);
  filter: brightness(1.06);
}
@keyframes ce-wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .wa { animation: none; }
  .wa:hover,
  .wa:focus { transform: scale(1.06); }
}

.cookie {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 84px;
  z-index: 9998;
  width: min(36rem, calc(100% - 32px));
  max-width: min(36rem, calc(100% - 32px));
  transform: translateX(-50%);
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie.is-on { display: flex; }
.cookie p { margin: 0; font-size: 0.85rem; color: var(--muted); flex: 1 1 12rem; }

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 40px);
    padding: 12px 0 40px;
  }
  .hero-photo { min-height: 620px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 859px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .is-open .nav { display: flex; }
}

/* Alias alignés sur le HTML généré */
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.section-alt { background: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.grid-3, .grid-2 { display: grid; gap: 20px; }
.contact-grid { display: grid; gap: 28px; }
.info-block {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
}
.ce-form { display: grid; gap: 14px; }
.ce-form label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.ce-form input,
.ce-form select,
.ce-form textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.ce-form input[type="checkbox"] {
  padding: 0;
  width: 1.1em;
  height: 1.1em;
}
.ce-form label.consent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
}
.ce-form label.consent span {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.5;
}
.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  background: #f4eee3;
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 8px;
}
.placeholder-box {
  border: 1px dashed var(--gold);
  background: #fff8ec;
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--muted);
}
.footer-grid { display: grid; gap: 24px; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.82rem;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 165, 106, 0.25);
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-ghost { background: transparent; border-color: var(--gold); color: var(--navy); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); }
.banner { background: var(--navy); color: #dce7f2; padding: 40px 0; text-align: center; }
.banner h2 { color: var(--white); }
.script { font-family: var(--script); font-size: 1.8rem; color: var(--sky); }
.center { text-align: center; }
.heart { width: 28px; height: 28px; }
.divider { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold); margin: 12px 0 20px; }
.divider::before, .divider::after { content: ""; height: 1px; width: 88px; background: var(--gold); }

/* Sections compactes ; contenus (H / P) un peu plus aérés. */
body.elementor-page .elementor-widget:not(:last-child) {
  margin-bottom: 20px !important;
}
body.elementor-page .elementor-widget-heading:has(.elementor-size-h6):not(:last-child) {
  margin-bottom: 8px !important;
}
body.elementor-page .elementor-heading-title {
  margin-block: 0;
  line-height: 1.2;
}
body.elementor-page .elementor-widget-heading:not(:last-child) {
  margin-bottom: 16px !important;
}
body.elementor-page .elementor-widget-heading:has(.elementor-size-h6):not(:last-child) {
  margin-bottom: 8px !important;
}
body.elementor-page .elementor-widget-text-editor p {
  margin: 0 0 1.1em;
  line-height: 1.7;
}
body.elementor-page .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}
body.elementor-page .elementor-widget-button:not(:last-child) {
  margin-bottom: 8px !important;
}

/* FAQ : titres toggle en Montserrat, taille contenu. */
.elementor-widget-toggle .elementor-tab-title,
.elementor-widget-toggle .elementor-toggle-title {
  font-family: var(--sans) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: calc(100vh - var(--header-h) - 40px); }
}

/* Header HFE : rangée flex seulement dès 768px (sinon gap + nowrap débordent). */
.ce-site-header {
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(18, 36, 63, 0.18);
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .ce-site-header > .elementor-container {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px 20px;
  }
  .ce-site-header > .elementor-container > .elementor-column {
    float: none !important;
  }
  .ce-site-header > .elementor-container > .elementor-column:first-child {
    flex: 0 1 auto;
  }
  .ce-site-header > .elementor-container > .elementor-column:nth-child(2) {
    flex: 1 1 auto;
    min-width: 0;
  }
  .ce-site-header > .elementor-container > .elementor-column:last-child {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin-left: auto;
  }
}
.ce-site-header .ce-h-nav {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .ce-site-header .ce-h-devis,
  .ce-site-header .ce-h-devis .elementor-widget-wrap,
  .ce-site-header .ce-h-devis .elementor-element,
  .ce-site-header .ce-h-devis .elementor-widget-button,
  .ce-site-header .ce-h-devis .elementor-button-wrapper {
    width: auto !important;
    max-width: max-content;
  }
  .ce-site-header .elementor-widget-button .elementor-button-wrapper {
    text-align: right;
  }
}
.ce-site-header .ce-h-devis .elementor-widget-button,
.ce-site-header .ce-h-devis .elementor-button-wrapper {
  pointer-events: none;
}
.ce-site-header .ce-h-devis a.elementor-button {
  pointer-events: auto;
}
.ce-site-header .elementor-widget-navigation-menu .hfe-nav-menu {
  justify-content: center;
}
.ce-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.ce-brand img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.ce-brand:hover img {
  transform: scale(1.06) translateY(-1px);
  filter:
    brightness(1.05)
    drop-shadow(0 0 2px rgba(201, 165, 106, 0.9))
    drop-shadow(0 0 10px rgba(201, 165, 106, 0.65))
    drop-shadow(0 0 18px rgba(201, 165, 106, 0.4));
}
.ce-brand .brand-name .c { color: var(--gold); font-size: 1.35rem; }
.ce-brand .brand-name .e { color: var(--sky); font-size: 1.55rem; }

@media (min-width: 768px) {
  .elementor-widget-navigation-menu .hfe-nav-menu,
  .elementor-widget-navigation-menu .hfe-nav-menu-layout-horizontal {
    flex-wrap: nowrap;
  }
}
.elementor-widget-navigation-menu .hfe-nav-menu a,
.elementor-widget-navigation-menu a.hfe-menu-item {
  color: var(--gold);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.elementor-widget-navigation-menu a.hfe-menu-item:hover,
.elementor-widget-navigation-menu .current-menu-item a.hfe-menu-item {
  color: #fcfbf8;
}
.elementor-widget-navigation-menu .hfe-nav-menu__toggle {
  color: #fcfbf8;
  background: transparent;
  border: 0;
}
.elementor-widget-navigation-menu .hfe-nav-menu__toggle:hover {
  color: var(--gold);
}
.ce-site-header a.elementor-button,
.ce-site-header .elementor-button {
  transition: all 0.3s ease !important;
  color: #fff !important;
  fill: #fff !important;
}
.ce-site-header a.elementor-button .elementor-button-text,
.ce-site-header .elementor-button .elementor-button-text {
  color: #fff !important;
  transition: color 0.3s ease;
}
.ce-site-header a.elementor-button:hover,
.ce-site-header a.elementor-button:focus,
.ce-site-header .elementor-button:hover,
.ce-site-header .elementor-button:focus {
  background-color: #fcfbf8 !important;
  background-image: none !important;
  color: #1a365d !important;
  fill: #1a365d !important;
  border-color: #c9a56a !important;
}
.ce-site-header a.elementor-button:hover .elementor-button-text,
.ce-site-header .elementor-button:hover .elementor-button-text,
header.ehf-header a.elementor-button:hover .elementor-button-text {
  color: #1a365d !important;
}
header.ehf-header a.elementor-button:hover,
header .ce-site-header a.elementor-button:hover {
  background-color: #fcfbf8 !important;
  color: #1a365d !important;
  border-color: #c9a56a !important;
}
@media (max-width: 767px) {
  .ce-brand img { width: 44px; height: 44px; }
  .ce-brand .brand-name { display: none; }
  .elementor-section.ce-site-header {
    padding-right: 4px !important;
    padding-left: 12px !important;
  }
  .ce-site-header > .elementor-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: static;
    padding-right: 0 !important;
    padding-left: 0 !important;
    gap: 0 !important;
  }
  .ce-site-header .ce-h-brand {
    order: 1;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
  }
  .ce-site-header .ce-h-devis {
    order: 2;
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
  }
  .ce-site-header .ce-h-devis,
  .ce-site-header .ce-h-devis .elementor-widget-wrap,
  .ce-site-header .ce-h-devis .elementor-element-populated,
  .ce-site-header .ce-h-devis .elementor-element,
  .ce-site-header .ce-h-devis .elementor-widget-button,
  .ce-site-header .ce-h-devis .elementor-button-wrapper {
    width: 100% !important;
    max-width: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ce-site-header .ce-h-devis .elementor-button-wrapper {
    text-align: center;
  }
  .ce-site-header .ce-h-devis a.elementor-button {
    width: auto !important;
    flex: 0 0 auto;
  }
  .ce-site-header .ce-h-nav {
    order: 3;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin-left: 0;
  }
  .ce-site-header .ce-h-nav > .elementor-widget-wrap,
  .ce-site-header .ce-h-nav .elementor-element-populated,
  .ce-site-header .ce-h-nav .elementor-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
  }

  .ce-site-header .ce-h-nav,
  .ce-site-header .ce-h-nav .elementor-widget-wrap,
  .ce-site-header .ce-h-nav .elementor-element {
    position: static;
  }
  .ce-site-header .ce-h-nav .elementor-widget-wrap,
  .ce-site-header .ce-h-nav .elementor-widget-navigation-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .ce-site-header .hfe-nav-menu__toggle,
  .ce-site-header .hfe-nav-menu-icon {
    margin: 0 !important;
  }
  .ce-site-header nav.hfe-dropdown,
  .ce-site-header nav.hfe-dropdown-expandible,
  .ce-site-header .hfe-nav-menu.hfe-dropdown,
  .ce-site-header .hfe-nav-menu__layout-horizontal.hfe-dropdown {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    top: 100%;
    z-index: 30;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
    margin: 0 !important;
    padding: 8px 0 12px;
    box-sizing: border-box;
    background: var(--navy) !important;
    box-shadow: 0 12px 28px rgba(18, 36, 63, 0.22);
    border-top: 2px solid var(--gold);
  }
  .ce-site-header .hfe-nav-menu__layout-horizontal.hfe-dropdown.menu-is-active {
    border-top: 2px solid var(--gold);
  }
  .ce-site-header nav.hfe-dropdown li,
  .ce-site-header .hfe-dropdown .menu-item {
    width: 100%;
    display: block;
  }
  /* Plus spécifique que .elementor-25 .elementor-element.elementor-element-XXXX (CSS HFE). */
  .elementor .ce-site-header.elementor-element .elementor-element nav.hfe-dropdown li.menu-item:not(:last-child),
  .elementor .ce-site-header.elementor-element .elementor-element nav.hfe-dropdown-expandible li.menu-item:not(:last-child),
  .elementor .ce-site-header.elementor-element .elementor-element .sub-menu li.menu-item:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  .ce-site-header nav.hfe-dropdown a.hfe-menu-item,
  .ce-site-header nav.hfe-dropdown a.hfe-sub-menu-item,
  .ce-site-header .hfe-dropdown a.hfe-menu-item,
  .ce-site-header .hfe-dropdown a.hfe-sub-menu-item {
    display: block;
    color: var(--gold) !important;
    background: transparent !important;
    white-space: normal;
    padding: 14px 16px !important;
  }
  .ce-site-header nav.hfe-dropdown a.hfe-menu-item:hover,
  .ce-site-header nav.hfe-dropdown .current-menu-item a.hfe-menu-item,
  .ce-site-header .hfe-dropdown a.hfe-menu-item:hover,
  .ce-site-header .hfe-dropdown .current-menu-item a.hfe-menu-item {
    color: #fcfbf8 !important;
  }
}

.hfe-site-footer {
  background: var(--navy-deep);
}
.ce-hfe-foot {
  color: #fcfbf8;
}
.ce-hfe-foot a,
.hfe-site-footer .ce-hfe-foot a,
.hfe-site-footer a {
  color: var(--gold) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ce-hfe-foot a:hover,
.ce-hfe-foot a:focus,
.hfe-site-footer .ce-hfe-foot a:hover,
.hfe-site-footer a:hover {
  color: #fcfbf8 !important;
}
.ce-hfe-foot strong { color: #fff; }
.ce-hfe-foot .footer-legal a {
  color: var(--gold) !important;
}
.ce-hfe-foot .footer-legal a:hover {
  color: #fcfbf8 !important;
}
.ce-foot-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.ce-foot-brand img { width: 64px; height: 64px; flex-shrink: 0; }
.ce-foot-li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  line-height: 1;
}
.ce-foot-li .ce-li-badge {
  width: 22px;
  height: 22px;
  margin-right: 0;
  background: var(--gold);
  color: var(--navy);
}
.ce-foot-li .ce-li-badge .ce-ico {
  width: 12px;
  height: 12px;
  margin: 0;
  color: var(--navy);
}
.hfe-site-footer .ce-foot-li .ce-li-badge .ce-ico,
.hfe-site-footer .ce-foot-li .ce-li-badge path {
  color: var(--navy) !important;
  fill: var(--navy) !important;
}
@media (max-width: 767px) {
  .ce-hfe-foot .ce-foot-brand img {
    width: 48px;
    height: 48px;
  }
  .ce-hfe-foot p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .ce-hfe-foot .footer-legal {
    font-size: 0.8rem;
  }
}
.elementor-widget-html .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.elementor-widget-html .card h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 10px;
}
.elementor-widget-html .card p { margin: 0; color: var(--muted); }
.elementor-widget-html .card .card-cta { margin-top: auto; padding-top: 16px; }
.elementor-widget-html .card-picto { width: 42px; height: auto; margin-bottom: 12px; }
.elementor-widget-html .value {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.elementor-widget-html .value img { width: 42px; }
.elementor-widget-html .value h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 6px;
}
body.elementor-page { background: var(--bg); }

.form-ok { padding: 16px; background: #e8f4ea; color: #215c32; border-radius: 10px; }
.form-err { padding: 16px; background: #fdecea; color: #8a1f11; border-radius: 10px; }
