@charset "UTF-8";

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/poppins-800.woff2") format("woff2");
}

:root {
  --violet-950: #150a26;
  --violet-900: #1a0b2e;
  --violet-800: #2d1250;
  --violet-700: #3d1a6b;
  --violet-600: #4f2189;
  --violet-500: #6c2bb3;
  --violet-300: #c3a3e6;
  --violet-100: #f1e9fb;

  --orange-700: #b74d15;
  --orange-600: #e6621c;
  --orange-500: #f2790f;
  --orange-400: #ff8c2e;
  --orange-100: #fdead9;

  --gris-000: #ffffff;
  --gris-050: #f8f6fb;
  --gris-200: #e6e0ee;
  --gris-400: #ab9fc0;
  --gris-600: #5e5474;
  --gris-900: #17111f;

  --texte: var(--gris-900);
  --texte-doux: var(--gris-600);
  --fond: var(--gris-000);
  --fond-alt: var(--gris-050);

  --largeur-max: 78rem;
  --largeur-lecture: 68ch;
  --rayon: 8px;
  --rayon-lg: 18px;
  --ombre-1: 0 1px 2px rgba(21, 10, 38, .1), 0 8px 24px rgba(21, 10, 38, .08);
  --ombre-2: 0 4px 10px rgba(21, 10, 38, .16), 0 24px 56px rgba(21, 10, 38, .2);

  --coupe: 12px;
  --coin-coupe: polygon(var(--coupe) 0, 100% 0, 100% calc(100% - var(--coupe)), calc(100% - var(--coupe)) 100%, 0 100%, 0 var(--coupe));

  --police: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--fond);
  color: var(--texte);
  font-family: var(--police);
  font-size: clamp(1rem, .35vw + .95rem, 1.075rem);
  line-height: 1.65;
  text-wrap: pretty;
}

main { flex: 1 0 auto; overflow-x: clip; }

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

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  text-wrap: balance;
  color: var(--violet-900);
  margin: 0;
}

p { margin: 0 0 1.15em; }

a { color: var(--violet-600); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--orange-600); }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.conteneur {
  width: 100%;
  max-width: var(--largeur-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.lecteur-ecran {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.lien-evitement {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--violet-900);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--rayon) var(--rayon);
  text-decoration: none;
  transition: transform .15s ease;
}
.lien-evitement:focus { transform: translate(-50%, 0); color: #fff; }

.surtitre {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
  color: var(--orange-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.surtitre::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--orange-500);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].est-visible { opacity: 1; transform: none; }

.bouton,
.bouton-reveler {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 0;
  clip-path: var(--coin-coupe);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.2;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.bouton:hover, .bouton-reveler:hover { transform: translateY(-2px); }

.bouton--principal, .bouton-reveler--principal { background: var(--orange-600); color: #fff; }
.bouton--principal:hover, .bouton-reveler--principal:hover { background: var(--orange-700); color: #fff; }

.bouton--secondaire { background: #fff; color: var(--violet-800); border-color: var(--violet-600); }
.bouton--secondaire:hover { background: var(--violet-100); color: var(--violet-900); }

.bouton--fantome { background: transparent; color: var(--violet-800); border-color: var(--gris-400); }
.bouton--fantome:hover { background: var(--gris-050); color: var(--violet-900); }

.bouton--tel, .bouton-reveler--tel {
  background: var(--violet-100); color: var(--violet-900); padding: .6rem 1.1rem; font-size: .92rem;
}
.bouton--tel:hover, .bouton-reveler--tel:hover { background: var(--violet-300); color: var(--violet-950); }

.coord-masquee { display: inline-block; }
.bouton-reveler { background: var(--violet-100); color: var(--violet-900); border-color: transparent; }
.bouton-reveler:hover { background: var(--violet-300); }
.bouton-reveler__icone {
  display: inline-block;
  width: 1em; height: 1em;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.bouton-reveler__icone::before {
  content: "";
  display: block;
  width: 40%; height: 40%;
  margin: 22% auto 0;
  background: currentColor;
  border-radius: 1px;
}

.bouton-reveler--pied,
.bouton-reveler--clair {
  background: transparent;
  padding: .2rem .1rem;
  border: 0;
  clip-path: none;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .2em;
  font-weight: inherit;
  font-size: inherit;
}
.bouton-reveler--pied:hover,
.bouton-reveler--clair:hover { background: transparent; transform: none; color: var(--orange-400); }
.bouton-reveler--pied .bouton-reveler__icone,
.bouton-reveler--clair .bouton-reveler__icone { display: none; }

.pied__lien-tel { color: #fff; font-weight: 600; text-decoration: none; }
.pied__lien-tel:hover { color: var(--orange-400); }

.entete { position: sticky; top: 0; z-index: 100; }
.page-accueil .entete { position: fixed; inset-inline: 0; }

.entete__coordonnees {
  background: var(--violet-950);
  transition: background-color .25s ease, backdrop-filter .25s ease;
}
.page-accueil .entete:not(.entete--solide) .entete__coordonnees {
  background: rgba(21, 10, 38, .32);
  backdrop-filter: blur(8px) saturate(140%);
}
.entete__coordonnees-interieur {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
}

.logo { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; flex: 0 0 auto; }
.logo__monogramme {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 auto;
  background: var(--orange-600);
  clip-path: var(--coin-coupe);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.logo__texte { display: flex; flex-direction: column; line-height: 1.15; }
.logo__texte strong { font-size: 1.4rem; letter-spacing: .01em; color: #fff; }
.logo__baseline { font-size: .78rem; color: var(--orange-400); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

.entete__infos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.1rem, 3vw, 2.2rem); list-style: none; }
.entete__info { display: flex; align-items: center; gap: .6rem; }
.entete__info-icone {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  color: var(--orange-400);
}
.entete__info-icone svg { width: 100%; height: 100%; }
.entete__info-texte { display: flex; flex-direction: column; line-height: 1.3; }
.entete__info-label { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--violet-300); }
.entete__info-valeur, .entete__info-valeur--lien {
  color: #fff;
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
}
a.entete__info-valeur--lien:hover { color: var(--orange-400); }
button.bouton-reveler--entete {
  background: transparent;
  padding: 0;
  border: 0;
  clip-path: none;
  color: #fff;
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
}
button.bouton-reveler--entete:hover { background: transparent; transform: none; color: var(--orange-400); }
.bouton-reveler--entete .bouton-reveler__icone { display: none; }

.bouton-reveler--pied:focus-visible,
.bouton-reveler--clair:focus-visible,
.bouton-reveler--entete:focus-visible {
  outline: none;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.entete__nav {
  background: var(--violet-900);
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 1px 0 var(--gris-200);
  transition: background-color .25s ease, backdrop-filter .25s ease;
}
.page-accueil .entete:not(.entete--solide) .entete__nav {
  background: rgba(26, 11, 46, .22);
  backdrop-filter: blur(8px) saturate(140%);
  border-top-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.entete__nav-interieur { display: flex; align-items: center; justify-content: center; gap: 1rem; min-height: 4.4rem; position: relative; }

.entete__nav-interieur .bascule-menu { position: absolute; left: 0; }

.navigation { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 2rem); }
.navigation__liste { display: flex; align-items: center; gap: clamp(.15rem, 1.2vw, 1rem); list-style: none; }

.navigation__liste a {
  display: inline-block;
  padding: .8rem .9rem;
  color: #ece3f6;
  font-weight: 400;
  text-decoration: none;
}
.navigation__liste a:hover { color: var(--orange-400); }
.navigation__liste a[aria-current="page"] { color: var(--orange-400); }

.navigation__tel { display: none; }

.bascule-menu {
  display: none;
  align-items: center;
  gap: .55rem;
  padding: .55rem .8rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--rayon);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.bascule-menu__barres,
.bascule-menu__barres::before,
.bascule-menu__barres::after { display: block; width: 20px; height: 2px; background: currentColor; content: ""; }
.bascule-menu__barres { position: relative; }
.bascule-menu__barres::before { position: absolute; top: -6px; }
.bascule-menu__barres::after { position: absolute; top: 6px; }

.heros { position: relative; background: var(--violet-950); min-height: min(46rem, 92vh); display: flex; }

.diaporama { position: absolute; inset: 0; }

.diaporama__pistes { position: relative; list-style: none; height: 100%; overflow: hidden; }

.diaporama__vue { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.diaporama__vue.est-actif { opacity: 1; }
.diaporama__vue img { width: 100%; height: 100%; object-fit: cover; }

.diaporama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 20, .58);
  pointer-events: none;
}

.diaporama__commandes {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 3;
  display: flex;
  gap: .5rem;
}

.diaporama__bouton {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.diaporama__bouton:hover { background: rgba(255, 255, 255, .3); }
.diaporama__bouton[aria-pressed="true"] { background: var(--orange-600); border-color: var(--orange-600); }

.heros__contenu {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  padding-block: calc(8.75rem + 7rem) 7rem;

  pointer-events: none;
}
.heros__panneau { max-width: 100%; width: 100%; color: #fff; text-align: center; pointer-events: auto; }
.heros__texte { margin: 1.1rem 0; color: #ece3f6; font-size: 1.05rem; line-height: 1.6; }
.heros__texte:last-of-type { margin-bottom: 0; }

.heros__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: .4rem .9rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: var(--orange-400);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.heros__titre {
  color: #fff;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: -.02em;

  text-wrap: pretty;
}
.heros__titre em {
  font-style: normal;
  color: var(--orange-400);
}

.heros__reperes { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 2rem 0; }
.heros__reperes span {
  padding: .32rem .85rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.heros__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .85rem; margin: 2.25rem 0 0; }
.heros__actions .coord-masquee .bouton-reveler { padding: .9rem 1.6rem; font-size: 1rem; }

.heros__reseaux {
  position: absolute;
  left: clamp(1rem, 4vw, 2.5rem);
  top: 50%;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  transform: translateY(-50%);
}
.heros__reseaux-trait { width: 1px; height: 2.75rem; background: rgba(255, 255, 255, .35); }
.heros__reseaux-lien {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px) saturate(140%);
  color: #fff;
}
.heros__reseaux-lien svg { width: 1.1rem; height: 1.1rem; }
.heros__reseaux-lien:hover { background: rgba(255, 255, 255, .18); }
@media (min-width: 40rem) { .heros__reseaux { display: flex; } }

.fil-ariane { background: var(--fond-alt); border-bottom: 1px solid var(--gris-200); }
.fil-ariane__liste {
  display: flex; flex-wrap: wrap; gap: .5rem; list-style: none;
  padding-block: .75rem; font-size: .875rem; color: var(--texte-doux);
}
.fil-ariane__liste li + li::before { content: "›"; margin-right: .5rem; color: var(--gris-400); }

.entete-page { position: relative; background-color: var(--violet-900); overflow: hidden; }
.entete-page__fond { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.entete-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60rem 20rem at 15% 0%, rgba(230, 98, 28, .35), transparent 60%),
    rgba(21, 10, 38, .88);
}
.entete-page__interieur {
  position: relative;
  z-index: 2;
  padding-block: calc(clamp(2rem, 5vw, 3rem) + 20px);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.entete-page .fil-ariane { background: transparent; border-bottom: 0; }
.entete-page .fil-ariane__liste { padding-block: 0; color: var(--violet-300); }
.entete-page .fil-ariane__liste a { color: #fff; }
.entete-page .fil-ariane__liste a:hover { color: var(--orange-400); }
.entete-page .fil-ariane__liste li + li::before { color: rgba(255, 255, 255, .5); }
.entete-page__titre { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 700; letter-spacing: -.01em; }

.contenu-redactionnel { padding-block: clamp(2.5rem, 6vw, 4.5rem); max-width: calc(var(--largeur-lecture) + 8rem); }
.page-contact .contenu-redactionnel { max-width: var(--largeur-max); }

.page-accueil .contenu-redactionnel { max-width: var(--largeur-max); }

.services-intro { text-align: center; padding-block: clamp(2.5rem, 6vw, 4.5rem) 0; }
.services-intro .chapeau { border-left: 0; padding-left: 0; font-size: 1em; }
.services-duo-groupe { padding-bottom: 40px; }

.motif-lignes {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2770%27%20height%3D%2770%27%3E%3Cg%20stroke%3D%27rgba%2826%2C11%2C46%2C0.035%29%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%3E%3Cline%20x1%3D%278%27%20y1%3D%2758%27%20x2%3D%2724%27%20y2%3D%2742%27/%3E%3Cline%20x1%3D%2742%27%20y1%3D%2724%27%20x2%3D%2758%27%20y2%3D%278%27/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 70px 70px;
}
.motif-losanges {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2790%27%20height%3D%2790%27%3E%3Cpolygon%20points%3D%2745%2C15%2075%2C45%2045%2C75%2015%2C45%27%20fill%3D%27none%27%20stroke%3D%27rgba%2826%2C11%2C46%2C0.035%29%27%20stroke-width%3D%271.6%27/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 90px 90px;
}
.motif-points {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2760%27%20height%3D%2760%27%3E%3Cg%20fill%3D%27rgba%28230%2C98%2C28%2C0.045%29%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2714%27%20r%3D%272.2%27/%3E%3Ccircle%20cx%3D%2742%27%20cy%3D%278%27%20r%3D%271.4%27/%3E%3Ccircle%20cx%3D%2730%27%20cy%3D%2740%27%20r%3D%271.8%27/%3E%3Ccircle%20cx%3D%2752%27%20cy%3D%2748%27%20r%3D%272.4%27/%3E%3Ccircle%20cx%3D%278%27%20cy%3D%2750%27%20r%3D%271.2%27/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 60px;
}
.motif-chevrons {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2780%27%20height%3D%2740%27%3E%3Cpath%20d%3D%27M10%2030%20L40%2010%20L70%2030%27%20fill%3D%27none%27%20stroke%3D%27rgba%2826%2C11%2C46%2C0.035%29%27%20stroke-width%3D%272%27/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 40px;
}

.titre-page { font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-bottom: 1.25rem; }

.chapeau {
  font-size: 1.15em;
  color: var(--violet-800);
  border-left: 4px solid var(--orange-500);
  padding-left: 1.1rem;
}

.section { margin-top: clamp(2rem, 5vw, 3.25rem); }
.section__titre {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-bottom: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--gris-200);
}
.section__sous-titre { font-size: clamp(1.1rem, 2vw, 1.35rem); margin: 1.5rem 0 .75rem; color: var(--violet-700); }

.section--duo { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: stretch; }
.section--duo .section__media { border-radius: var(--rayon-lg); overflow: hidden; }
.section--duo .section__image { display: block; width: 100%; height: 100%; min-height: 16rem; object-fit: cover; }
.section--duo .section__corps { display: flex; flex-direction: column; justify-content: center; }
.section--duo .section__titre { border-top: 0; padding-top: 0; }
.section__action { margin-top: 1.5rem; }
@media (min-width: 60rem) {
  .section--duo { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
}

.prestations-apercu { background-color: var(--fond-alt); border-block: 1px solid var(--gris-200); padding-block: clamp(1.5rem, 3.5vw, 2.75rem) clamp(3rem, 7vw, 5.5rem); }

.prestations-apercu__entete { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.25rem; }

.prestations-apercu__titre {
  max-width: 34ch;
  margin: 0 0 1.25rem;
  color: var(--violet-900);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-wrap: balance;
}

.cartes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr)); list-style: none; }

.carte {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gris-200);
  box-shadow: var(--ombre-1);
  transition: box-shadow .25s ease, transform .25s ease;
}
.carte:hover { box-shadow: var(--ombre-2); transform: translateY(-4px); }

.carte__media { position: relative; }
.carte__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;

  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.carte__numero {
  position: absolute;
  left: .9rem;
  bottom: .5rem;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 2px 10px rgba(21, 10, 38, .6);
}
.carte:not(:has(.carte__image)) .carte__numero {
  position: static;
  color: var(--orange-500);
  text-shadow: none;
  margin-bottom: .3rem;
}

.carte__corps { display: flex; flex-direction: column; flex: 1; gap: .5rem; padding: 1.4rem 1.5rem 1.6rem; margin-top: -.5rem; }

.carte__titre { margin: 0; color: var(--violet-900); font-size: 1.15rem; font-weight: 800; letter-spacing: -.005em; }
.carte__texte { margin: 0; color: var(--texte-doux); font-size: .95rem; }

.carte__lien {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding-top: .6rem;
  color: var(--violet-700);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}
.carte__lien span { transition: transform .2s ease; }
.carte__lien:hover { color: var(--orange-600); }
.carte__lien:hover span { transform: translateX(3px); }

.prestations-apercu__zones {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  margin: 2rem 0 0; color: var(--texte-doux); font-size: .95rem;
}
.prestations-apercu__zones strong { padding: .25rem .8rem; background: var(--violet-100); border-radius: 999px; color: var(--violet-800); }

.galerie { margin-top: clamp(2rem, 5vw, 3.25rem); }
.galerie-large { padding-block: clamp(3rem, 7vw, 5rem); background: var(--violet-950); }

.galerie-large .galerie__surtitre::before,
.galerie-large .surtitre::before { background: var(--orange-500); }
.galerie-large .galerie-large__titre,
.galerie-large .surtitre { color: #fff; }

.galerie__surtitre { margin-bottom: .4rem; color: var(--orange-600); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.galerie-large__titre {
  max-width: 40ch; margin: 0 0 1.75rem; color: var(--violet-900);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; text-wrap: balance;
}

.galerie__liste { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(.6rem, 1.4vw, 1rem); list-style: none; margin-top: 1rem; }
.galerie-large .galerie__liste { margin-top: 0; }

.galerie__element { flex: 0 1 calc(50% - clamp(.6rem, 1.4vw, 1rem) / 2 - .01px); }
@media (min-width: 52rem) { .galerie__element { flex-basis: calc(33.3333% - clamp(.6rem, 1.4vw, 1rem) * 2 / 3 - .01px); } }
@media (min-width: 64rem) { .galerie-large .galerie__element { flex-basis: calc(25% - clamp(.6rem, 1.4vw, 1rem) * 3 / 4 - .01px); } }

.galerie__element img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.galerie__element > img, .galerie__lien { display: block; position: relative; overflow: hidden; box-shadow: var(--ombre-1); }
.galerie__lien { background: var(--violet-950); transition: box-shadow .2s ease, transform .2s ease; }
.galerie__lien img { transition: transform .35s ease, opacity .2s ease; }
.galerie__lien:hover, .galerie__lien:focus-visible { box-shadow: var(--ombre-2); transform: translateY(-2px); }
.galerie__lien:hover img, .galerie__lien:focus-visible img { transform: scale(1.06); opacity: .82; }

.galerie__loupe {
  position: absolute; right: .6rem; bottom: .6rem; width: 2.25rem; height: 2.25rem;
  background: rgba(255, 255, 255, .94); border-radius: 50%; box-shadow: 0 2px 10px rgba(21, 10, 38, .35);
  opacity: 0; transform: scale(.85); transition: opacity .2s ease, transform .2s ease;
}
.galerie__loupe::before, .galerie__loupe::after { position: absolute; background: var(--violet-800); content: ""; }
.galerie__loupe::before { top: 50%; left: 50%; width: .95rem; height: 2px; margin: -1px 0 0 -.475rem; }
.galerie__loupe::after { top: 50%; left: 50%; width: 2px; height: .95rem; margin: -.475rem 0 0 -1px; }
.galerie__lien:hover .galerie__loupe, .galerie__lien:focus-visible .galerie__loupe { opacity: 1; transform: scale(1); }

.visionneuse {
  width: min(100% - 1.5rem, 68rem); max-width: none; max-height: calc(100dvh - 1.5rem);
  padding: 0; background: transparent; border: 0; color: #fff; overflow: hidden; overscroll-behavior: contain;
}
.visionneuse::backdrop { background: rgba(21, 10, 38, .92); backdrop-filter: blur(4px); }
.visionneuse__cadre { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(.35rem, 1.5vw, 1rem); }
.visionneuse__figure { margin: 0; min-width: 0; text-align: center; }
.visionneuse__image {
  width: auto; max-width: 100%; max-height: min(78vh, calc(100dvh - 9rem)); margin-inline: auto;
  object-fit: contain; border-radius: var(--rayon); background: rgba(255, 255, 255, .06); box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.visionneuse__legende { margin: .9rem auto 0; max-width: 62ch; color: #ece3f6; font-size: .92rem; line-height: 1.5; }
.visionneuse__compteur { margin: .35rem 0 0; color: var(--violet-300); font-size: .78rem; font-weight: 700; letter-spacing: .14em; }
.visionneuse__bouton {
  display: grid; place-items: center; width: 2.9rem; height: 2.9rem; flex: 0 0 auto;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%;
  color: #fff; font-size: 1.35rem; line-height: 1; cursor: pointer; transition: background-color .15s ease, border-color .15s ease;
}
.visionneuse__bouton:hover { background: rgba(255, 255, 255, .24); border-color: rgba(255, 255, 255, .6); }
.visionneuse__bouton[hidden] { display: none; }
.visionneuse__fermer { position: fixed; top: clamp(.6rem, 2vw, 1.25rem); right: clamp(.6rem, 2vw, 1.25rem); z-index: 2; }

@media (max-width: 34rem) {
  .visionneuse__cadre { grid-template-columns: minmax(0, 1fr); }
  .visionneuse__prec { grid-row: 2; justify-self: start; }
  .visionneuse__suiv { grid-row: 2; justify-self: end; }
  .visionneuse__figure { grid-row: 1; }
  .visionneuse__image { max-height: 62vh; }
}

.carte-visite {
  position: relative;
  display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: minmax(0, 1fr);
  margin-block: 1.5rem 2rem;
  padding: clamp(1.25rem, 3.5vw, 2.25rem);
  padding-block: clamp(2.5rem, 6.5vw, 4rem);
  padding-left: clamp(3.25rem, 8.5vw, 5rem);
  background: linear-gradient(155deg, var(--violet-900) 0%, var(--violet-600) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%);
  box-shadow: var(--ombre-2); color: #fff;
}
.carte-visite__fond { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.carte-visite__identite, .carte-visite__details { position: relative; z-index: 1; }
.carte-visite__nom { font-size: 1.35rem; font-weight: 800; margin-bottom: .35rem; letter-spacing: -.005em; }
.carte-visite__metier { color: var(--violet-300); font-size: .9rem; margin: 0; }
.carte-visite__details { display: grid; gap: 1rem; margin: 0; grid-template-columns: minmax(0, 1fr); }
.carte-visite__details dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--violet-300); margin-bottom: .2rem; }
.carte-visite__details dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.carte-visite__details address { font-style: normal; font-weight: 600; }
.carte-visite__details a { color: #fff; }
.carte-visite__details a:hover { color: var(--orange-400); }
.carte-visite__details .bouton-reveler--clair { color: #fff; }
.carte-visite__details .bouton-reveler--clair:hover { color: var(--orange-400); }

.contact-duo { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: start; margin-block: 1.5rem 2rem; }
.contact-duo .carte-visite { margin-block: 0; }
@media (min-width: 60rem) {
  .contact-duo { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 3.5rem); }
}

.formulaire-contact { display: flex; flex-direction: column; gap: 1.1rem; }
.formulaire-contact__intro { color: var(--texte-doux); margin: 0; }
.champ { display: flex; flex-direction: column; gap: .4rem; }
.champ label { font-weight: 600; font-size: .9rem; }
.champ input, .champ textarea {
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid var(--gris-200);
  border-radius: var(--rayon);
  background: var(--fond-alt);
  color: var(--texte);
}
.champ input:focus, .champ textarea:focus {
  outline: 2px solid var(--violet-500);
  outline-offset: 1px;
  border-color: var(--violet-500);
}
.champ textarea { resize: vertical; min-height: 8rem; }
.champ__erreur { color: var(--orange-700); font-size: .85rem; margin: 0; }

.champ-piege { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formulaire-contact__envoi { align-self: flex-start; }
.formulaire-contact__confirmation {
  padding: 1.25rem 1.5rem;
  background: var(--violet-100);
  border-radius: var(--rayon-lg);
  color: var(--violet-900);
  font-weight: 600;
}

.contact-carte { margin-top: clamp(2rem, 5vw, 3.25rem); }
.contact-carte__cadre {
  aspect-ratio: 16 / 7;
  border-radius: var(--rayon-lg);
  overflow: hidden;
  box-shadow: var(--ombre-1);
}
.contact-carte__cadre iframe { display: block; width: 100%; height: 100%; border: 0; }

.etiquettes { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; }
.etiquettes__element { padding: .4rem .9rem; background: var(--violet-100); border-radius: 999px; color: var(--violet-800); font-size: .9rem; font-weight: 600; }

.appel-contact {
  position: relative;
  background-color: var(--violet-900);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.appel-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60rem 20rem at 15% 0%, rgba(230, 98, 28, .35), transparent 60%),
    rgba(21, 10, 38, .88);
}
.appel-contact__interieur { position: relative; padding-block: clamp(2.75rem, 6vw, 4rem); text-align: center; }
.appel-contact__titre { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: .5rem; letter-spacing: -.01em; }
.appel-contact__coordonnees { color: var(--violet-300); line-height: 1.6; }
.appel-contact__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; align-items: center; margin: 1.25rem 0 0; }
.appel-contact .bouton--fantome { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.appel-contact .bouton--fantome:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.section-teinte {
  position: relative;
  background-color: var(--violet-900);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.section-teinte::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60rem 20rem at 85% 100%, rgba(28, 130, 230, .35), transparent 60%),
    rgba(10, 15, 38, .88);
}
.section-teinte__interieur { position: relative; padding-block: clamp(2.75rem, 6vw, 4rem); text-align: center; }
.section-teinte__titre {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
  border-top: 0;
  padding-top: 0;
}
.section-teinte__texte { color: var(--violet-300); line-height: 1.6; }
.section-teinte__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; align-items: center; margin: 1.25rem 0 0; }
.section-teinte .bouton--fantome { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.section-teinte .bouton--fantome:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.avis-google { background: var(--violet-100); border-top: 1px solid var(--gris-200); }
.avis-google__interieur { padding-block: clamp(2rem, 5vw, 3.25rem); text-align: center; }
.avis-google__titre { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; }
.avis-google__texte { max-width: 44ch; margin-inline: auto; color: var(--texte-doux); }
.avis-google__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin: 2rem 0 0; }

.avis-carrousel { position: relative; display: flex; align-items: center; gap: .5rem; margin-top: 2rem; }
.avis-carrousel__piste {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: .5rem .25rem 1rem;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: .25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.avis-carrousel__piste::-webkit-scrollbar { display: none; }
.avis-carte {
  flex: 0 0 min(20rem, 85vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #fff;
  border: 1px solid var(--gris-200);
  border-radius: var(--rayon-lg);
  box-shadow: var(--ombre-1);
  padding: 1.5rem;
}

@media (min-width: 48rem) {
  .avis-carte { flex-basis: calc((100% - 2 * 1.25rem) / 3); }
}
.avis-carte__etoiles { margin: 0 0 .6rem; color: var(--orange-500); letter-spacing: .1em; font-size: 1.05rem; }
.avis-carte__texte { margin: 0 0 1rem; color: var(--violet-900); font-size: .95rem; line-height: 1.55; flex: 1; }
.avis-carte__auteur { margin: 0; font-weight: 700; font-size: .88rem; color: var(--texte-doux); }
.avis-carrousel__bouton {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--gris-200);
  background: #fff;
  color: var(--violet-900);
  font-size: 1.3rem;
  cursor: pointer;
}
.avis-carrousel__bouton:hover { background: var(--violet-100); }
@media (min-width: 48rem) {
  .avis-carrousel__bouton { display: flex; }
}

.erreur { text-align: center; }
.erreur .chapeau { border: 0; padding: 0; }
.erreur__code { font-size: clamp(4rem, 16vw, 9rem); font-weight: 800; line-height: 1; margin: 0; color: var(--violet-100); letter-spacing: -.03em; }
.erreur__liens { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; list-style: none; margin-block: 1.5rem; }
.erreur__liens a { display: inline-block; padding: .6rem 1.2rem; background: var(--violet-100); border-radius: var(--rayon); font-weight: 600; text-decoration: none; }
.erreur__tel { margin-top: 1rem; }

.page-texte-legal .section__titre { border-top: 0; padding-top: 0; }
.page-texte-legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.15em; }
.page-texte-legal li { margin-bottom: .4rem; }

.pied { background: var(--violet-950); color: #e3d9f2; padding-top: clamp(2.5rem, 6vw, 4rem); font-size: .85rem; }
.pied__grille { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr)); padding-bottom: 2.5rem; }
.pied__titre { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: .8rem; }
.pied__adresse { font-style: normal; line-height: 1.75; overflow-wrap: anywhere; }
.pied__liste { list-style: none; line-height: 1.75; }
.pied a { color: #e3d9f2; }
.pied a:hover { color: #fff; }

.pied__recherches-liste {
  list-style: none;
  max-height: 6.3rem;
  overflow-y: auto;
  padding-right: .5rem;
  line-height: 1.6;
  font-size: .8rem;
}
.pied__recherches-liste a { text-decoration: underline; text-underline-offset: .15em; }

.pied__bas {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: flex-start; align-items: center;
  padding-block: 1.1rem; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .78rem;
}
.pied__bas p { margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; }
.pied__logo-creacom { display: inline-block; height: 1.15rem; width: auto; vertical-align: middle; }
.pied__liens-legaux { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; list-style: none; }

@media (max-width: 60rem) {

  .entete__infos { display: none; }
  .bascule-menu { display: inline-flex; }

  .navigation {
    position: absolute; inset-inline: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: .5rem;
    padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.5rem; background: #fff; border-bottom: 1px solid var(--gris-200); box-shadow: var(--ombre-1);
  }
  .navigation.est-ouvert { display: flex; }
  .navigation__liste { flex-direction: column; align-items: stretch; gap: .25rem; }
  .navigation__liste a { padding: .8rem .75rem; color: var(--violet-900) !important; }
  .navigation__liste a[aria-current="page"] { color: var(--orange-600) !important; }
  .navigation__tel { display: inline-flex; align-self: center; }

  .logo__baseline { display: none; }

  .heros { min-height: auto; }
}

@media (max-width: 30rem) {
  .heros__actions .bouton, .heros__actions .coord-masquee { width: 100%; }
  .heros__actions .bouton-reveler { width: 100%; justify-content: center; }
}

@media (max-width: 24rem) {
  .bascule-menu__texte {
    position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip-path: inset(50%); white-space: nowrap;
  }
  .logo { flex: 0 1 auto; min-width: 0; }
  .logo__texte { min-width: 0; }
  .logo__texte strong { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .bouton:hover, .bouton-reveler:hover { transform: none; }
  .galerie__lien:hover, .galerie__lien:focus-visible { transform: none; }
  .galerie__lien:hover img, .galerie__lien:focus-visible img { transform: none; }
  .galerie__loupe { transform: none; }
  .visionneuse::backdrop { backdrop-filter: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .bouton, .bouton-reveler { border-color: currentColor; clip-path: none; }
  .diaporama::after { display: none; }
  .galerie__loupe { border: 1px solid currentColor; }
  .visionneuse__bouton { border-color: currentColor; }
  .carte-visite, .carte__image { clip-path: none; }
}

@media print {
  .entete, .diaporama__commandes, .appel-contact, .avis-google, .lien-evitement, .pied__recherches { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .heros { min-height: auto; }
  .heros__contenu { position: static; color: #000; }
  .heros__titre, .heros__titre em { color: #000; text-shadow: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
