

:root {
  --fond: #FBF7EE;
  --surface: #FFFFFF;
  --sable: #F4EDDC;
  --encre: #1D1810;
  --encre2: #4A4030;
  --attenue: #6B614D;
  --ligne: #ECE3CF;
  --vert: #0C6B47;
  --vert-pale: #E3F3EA;
  --menthe: #58C48F;
  --or: #D9A94B;
  --surligne: #F5D48C;
  --pointille: #D9CBA8;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --texte: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  
  --marge: clamp(16px, calc(7vw - 6px), 100px);
  --bord: max(var(--marge), calc((100vw - 1240px) / 2));
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font-family: var(--texte);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

a { color: inherit; }
a:hover { opacity: .85; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
svg { flex-shrink: 0; }

:focus-visible {
  outline: 3px solid var(--vert);
  outline-offset: 3px;
  border-radius: 6px;
}

.evitement {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: var(--encre);
  color: var(--fond);
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.evitement:focus { top: 16px; }

.vert { color: var(--vert); }
.vert-clair { color: var(--menthe); }

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
}
.bouton--grand {
  min-height: 60px;
  padding: 0 28px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 750;
}
.bouton--noir { background: var(--encre); color: var(--fond); }
.bouton--clair { background: var(--surface); border-color: var(--ligne); color: var(--encre); }
.bouton--vert { background: var(--vert); color: #FFFFFF; }
.bouton--menthe { background: var(--menthe); color: #06140F; font-weight: 800; }
.bouton--contour { border-color: rgba(243, 237, 224, .3); color: #F3EDE0; }

.entete {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px var(--bord);
}
.logo { display: inline-flex; text-decoration: none; border-radius: 12px; }

.entete__nav {
  display: none;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 6px;
  font-size: 15.5px;
  font-weight: 600;
}
.entete__nav a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.entete__nav a[aria-current="true"] { background: var(--encre); color: var(--fond); }

.entete__actions { display: flex; align-items: center; gap: 10px; }
.entete__ecrire { display: none; }

.entete__menu {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  border: 1px solid var(--ligne);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.menu {
  position: absolute;
  top: calc(100% - 12px);
  right: var(--bord);
  left: var(--bord);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 24px 50px rgba(29, 24, 16, .16);
}
.menu[hidden] { display: none; }
.menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 650;
}
.menu a:hover { background: var(--sable); opacity: 1; }
.menu a:last-child { background: var(--vert); color: #FFFFFF; margin-top: 6px; }

@media (max-width: 639px) {
  .entete { padding-top: 14px; padding-bottom: 14px; }
  .logo > span { zoom: .85; }
  .bouton--entete { min-height: 46px; padding: 0 14px; border-radius: 16px; font-size: 14px; gap: 7px; }
  .entete__menu { width: 46px; height: 46px; border-radius: 16px; }
}
@media (max-width: 379px) {
  .bouton--entete { padding: 0 11px; }
  .entete__actions { gap: 6px; }
}
@media (min-width: 640px) {
  .entete__ecrire { display: inline-flex; }
}
@media (min-width: 1080px) {
  .entete__nav { display: flex; }
  .entete__menu, .menu { display: none !important; }
}

.heros {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 16px var(--bord) 0;
  overflow-x: clip;
}
.heros__texte { display: flex; flex-direction: column; gap: clamp(18px, 2vw, 28px); }

.pastille {
  align-self: flex-start;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--vert);
}
.pastille__point { width: 7px; height: 7px; border-radius: 4px; background: var(--vert); }

.heros__titre {
  font-family: var(--display);
  font-size: clamp(44px, 13.5vw, 84px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.05em;
}
.surligne {
  background: var(--surligne);
  border-radius: .16em;
  padding: 0 .12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.heros__sous {
  font-size: clamp(16.5px, 1.1vw + 5px, 21px);
  line-height: 1.55;
  color: var(--encre2);
  max-width: 560px;
}
.heros__boutons { display: flex; flex-direction: column; gap: 12px; }
.heros__boutons .bouton, .contact__boutons .bouton { width: 100%; white-space: normal; text-align: center; padding: 8px 16px; }
.heros__modules { display: none; }

.orbite { container-type: inline-size; margin: 0 calc(-1 * var(--bord)); }
.orbite__scene {
  --o: min(.75px, 100cqw / 800);
  position: relative;
  height: calc(965 * var(--o));
}
.orbite--grand { --r: calc(330 * var(--o)); --d: max(50px, calc(68 * var(--o))); --t: 90s; }
.orbite--petit { --r: calc(215 * var(--o)); --d: max(42px, calc(68 * var(--o))); --t: 60s; }
.orbite__cercle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(2 * var(--r));
  height: calc(2 * var(--r));
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed var(--pointille);
}
.orbite__tour {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  animation: tourner var(--t) linear infinite;
}
.orbite__place {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a)));
}
.orbite__porte {
  width: var(--d);
  height: var(--d);
  margin: calc(var(--d) / -2) 0 0 calc(var(--d) / -2);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(29, 24, 16, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tourner var(--t) linear infinite reverse;
}
.orbite__porte svg { width: calc(var(--d) * .62); height: calc(var(--d) * .62); }

.tel { container-type: inline-size; --u: calc(100cqw / 280); }
.tel--heros {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(188px, calc(236 * var(--o)));
  transform: translate(-50%, -50%);
}
.nav-dessin { container-type: inline-size; --u: calc(100cqw / 760); width: 100%; }

@keyframes tourner { to { transform: rotate(360deg); } }
@keyframes flotter { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes halo { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.5); opacity: 0; } }

@media (min-width: 900px) {
  .heros {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    padding: 30px var(--bord) 70px;
  }
  .heros__titre { font-size: clamp(54px, calc(8vw - 16px), 100px); line-height: .95; }
  .pastille { padding: 8px 16px; font-size: 14.5px; }
  .pastille__point { width: 8px; height: 8px; }
  .heros__boutons { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .heros__boutons .bouton { width: auto; white-space: nowrap; padding: 0 28px; }
  .heros__modules { display: inline-flex; }
  .heros__whatsapp { display: none; }
  .orbite { margin: 0; }
  .orbite__scene { --o: min(1px, 100cqw / 700); height: calc(760 * var(--o)); }
  .orbite__porte { box-shadow: 0 12px 26px rgba(29, 24, 16, .16); }
}

.section {
  padding: clamp(40px, 7vw, 100px) var(--bord);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3.5vw, 50px);
}
.section--blanche { background: var(--surface); }
.section--sable { background: var(--sable); }
.section--serree { padding-top: clamp(10px, 1.5vw, 20px); }

.titre {
  font-family: var(--display);
  font-size: clamp(36px, calc(1.6rem + 3.4vw), 72px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}
.titre--moyen { font-size: clamp(34px, calc(1.5rem + 2.4vw), 58px); letter-spacing: -.04em; line-height: 1.02; }
.surtitre { font-size: clamp(12.5px, 1vw, 14px); font-weight: 800; letter-spacing: .12em; color: var(--vert); }

#modules { padding-bottom: clamp(30px, 7vw, 100px); }
.modules__tete { display: flex; flex-direction: column; gap: 10px; }
.modules__tete .titre { max-width: 800px; }
.modules__chapeau { font-size: clamp(15.5px, 1.2vw, 18px); line-height: 1.55; color: var(--encre2); max-width: 380px; }

.onglets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin: 0 -6px;
}
.onglet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
}
.onglet__rond {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #EFE7D3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--fond), 0 0 0 4px #E6DCC6;
  transition: box-shadow .2s;
}
.onglet__nom {
  font-size: clamp(11px, 3.1vw, 12px);
  font-weight: 600;
  color: var(--attenue);
  text-align: center;
  line-height: 1.2;
}
.onglet[aria-current="true"] .onglet__rond { box-shadow: 0 0 0 3px var(--fond), 0 0 0 6px var(--m1); }
.onglet[aria-current="true"] .onglet__nom { font-weight: 800; color: var(--encre); }

.mondes {
  position: relative;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--bord));
  padding: 0 var(--bord);
  scroll-padding-inline: var(--bord);
  border-radius: 0;
}
.mondes::-webkit-scrollbar { display: none; }

.monde {
  flex: 0 0 calc(100% - 50px);
  max-width: 420px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, var(--m1) 0%, var(--m2) 100%);
  color: #F3EDE0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.monde__rond {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(243, 237, 224, .06);
  pointer-events: none;
}
.monde__tete { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.monde__porte {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #EFE7D3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}
.monde__porte svg { width: 63%; height: 63%; }
.monde__bientot {
  background: var(--or);
  color: #17140F;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: 5px 10px;
}
.monde__nom {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.monde__phrase { font-size: 15px; line-height: 1.5; color: rgba(243, 237, 224, .82); max-width: 420px; }
.monde__points { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; position: relative; }
.monde__points li {
  border: 1px solid rgba(243, 237, 224, .22);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 600;
}

.carrousel__pied { display: flex; align-items: center; justify-content: space-between; }
.points { display: flex; gap: 6px; align-items: center; }
.points span {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--pointille);
  transition: width .25s, background .25s;
}
.points span.actif { width: 22px; background: var(--encre); }
.fleches { display: flex; gap: 10px; }
.fleche {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--ligne);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.fleche--prec svg { transform: rotate(180deg); }
.fleche:disabled { opacity: .35; cursor: default; }

.web {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background: var(--sable);
  border-radius: 28px;
  padding: 24px;
}
.web__texte { display: flex; flex-direction: column; gap: 12px; }
.web__porte {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.web__porte svg { width: 63%; height: 63%; }
.web__nom { font-family: var(--display); font-size: clamp(30px, 3.2vw, 46px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.web__phrase { font-size: clamp(15.5px, 1.3vw, 18.5px); line-height: 1.55; color: var(--encre2); }
.web__bouton { white-space: normal; text-align: center; min-height: 52px; font-size: 15.5px; border-radius: 16px; }
.web__ecran { min-width: 0; }

@media (min-width: 720px) {
  .onglets, .carrousel__pied { display: none; }
  .mondes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .monde {
    max-width: none;
    min-height: 380px;
    border-radius: 34px;
    padding: clamp(26px, 2.8vw, 40px);
    gap: 18px;
  }
  .monde__rond { width: 240px; height: 240px; }
  .monde__porte { width: clamp(72px, 6.4vw, 92px); height: clamp(72px, 6.4vw, 92px); box-shadow: 0 14px 30px rgba(0, 0, 0, .3); }
  .monde__bientot { font-size: 12.5px; padding: 6px 12px; }
  .monde__nom { font-size: clamp(30px, 2.9vw, 42px); }
  .monde__phrase { font-size: clamp(15.5px, 1.25vw, 18px); line-height: 1.55; }
  .monde__points { gap: 8px; }
  .monde__points li { padding: 8px 14px; font-size: 14.5px; }
  .web { margin-top: 0; border-radius: 34px; padding: clamp(28px, 3.5vw, 50px); }
  .web__porte { width: 92px; height: 92px; }
  .web__bouton { align-self: flex-start; white-space: nowrap; padding: 0 22px; border-radius: 18px; font-size: 16px; }
}
@media (min-width: 900px) {
  .modules__tete { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 30px; }
  .web { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 30px; padding-left: clamp(28px, 3.9vw, 56px); }
  .web__texte { gap: 18px; }
}

.mots { gap: 6px; }
.mots__tete { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.mots__chapeau { font-size: clamp(15.5px, 1.25vw, 18px); line-height: 1.6; color: var(--encre2); }
.mot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: clamp(12px, 1.7vw, 24px);
  row-gap: 4px;
  border-bottom: 2px solid var(--ligne);
  padding: clamp(14px, 1.7vw, 24px) 0;
}
.mot__oui {
  font-family: var(--display);
  font-size: min(7.6vw, 52px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  white-space: nowrap;
}

.mot__non {
  font-size: clamp(16px, 1.7vw, 24px);
  color: #7E735C;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: #B0523B;
  text-decoration-thickness: 2px;
}
@media (min-width: 900px) {
  .mots { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 70px; }
  .mots__tete { gap: 18px; margin: 0; }
  .mot__oui { font-size: clamp(34px, 4.2vw, 64px); }
  .mot__non { text-decoration-thickness: 3px; }
}

.journee { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 1.5vw, 20px); }
.etape {
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: clamp(22px, 2vw, 28px);
  padding: clamp(16px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vw, 16px);
  min-width: 0;
}
.etape__rond {
  width: clamp(52px, 5.3vw, 76px);
  height: clamp(52px, 5.3vw, 76px);
  border-radius: 50%;
  background: var(--sable);
  display: flex;
  align-items: center;
  justify-content: center;
}
.etape__rond svg { width: 64%; height: 64%; }
.etape__num { font-size: clamp(11.5px, 1vw, 14px); font-weight: 800; letter-spacing: .1em; color: var(--vert); }
.etape__titre { font-family: var(--display); font-size: clamp(22px, 2.25vw, 32px); font-weight: 750; letter-spacing: -.02em; line-height: 1.1; }
.etape__texte { font-size: clamp(13.5px, 1.15vw, 16.5px); line-height: 1.5; color: var(--encre2); }
@media (min-width: 1100px) {
  .journee { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.atouts { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(12px, 1.3vw, 18px); }
.atout {
  display: flex;
  gap: clamp(14px, 1.3vw, 18px);
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: clamp(20px, 1.7vw, 24px);
  padding: clamp(16px, 1.8vw, 26px);
}
.atout__ico {
  width: clamp(44px, 3.5vw, 50px);
  height: clamp(44px, 3.5vw, 50px);
  border-radius: clamp(14px, 1.1vw, 16px);
  background: var(--vert-pale);
  color: var(--vert);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.atout__corps { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.atout__titre { font-family: var(--display); font-size: clamp(18px, 1.55vw, 22px); font-weight: 750; letter-spacing: -.01em; line-height: 1.2; }
.atout__texte { font-size: clamp(14px, 1.1vw, 15.5px); line-height: 1.5; color: var(--encre2); }
@media (min-width: 720px) {
  .atouts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.prix__titre { font-size: clamp(36px, calc(1.5rem + 3.3vw), 72px); }
.offres { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.offre {
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--ligne);
  color: var(--encre);
  min-width: 0;
}
.offre--mise { background: #0C2C23; border-color: #0C2C23; color: #F3EDE0; }
.offre__nom { font-size: clamp(14.5px, 1.1vw, 16px); font-weight: 800; color: var(--vert); }
.offre--mise .offre__nom { color: var(--menthe); }
.offre__montant { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 8px; }
.offre__chiffre { font-family: var(--display); font-size: clamp(38px, 3.6vw, 52px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.offre__unite { font-size: clamp(14px, 1.1vw, 16px); opacity: .75; }
.offre__detail { font-size: clamp(14.5px, 1.1vw, 15.5px); line-height: 1.55; opacity: .88; }
.offre__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #EFE7D3;
  padding-top: 12px;
}
.offre--mise .offre__points { border-top-color: rgba(243, 237, 224, .14); }
.offre__points li { display: flex; gap: 10px; align-items: center; font-size: clamp(14px, 1.05vw, 15px); }
.offre__points svg { color: var(--vert); }
.offre--mise .offre__points svg { color: var(--menthe); }
.offre__bouton {
  margin-top: auto;
  min-height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 750;
  background: var(--sable);
  color: var(--encre);
}
.offre--mise .offre__bouton { background: var(--menthe); color: #06140F; }
.prix__promesse {
  align-self: center;
  text-align: center;
  font-size: clamp(14.5px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--encre2);
  max-width: 760px;
}
@media (min-width: 900px) {
  #prix { gap: 56px; }
  .prix__titre { text-align: center; }
}
@media (min-width: 1000px) {
  .offres { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
  .offre { border-radius: 32px; padding: 38px 32px; gap: 18px; }
  .offre--mise { transform: translateY(-14px); box-shadow: 0 26px 50px rgba(12, 44, 35, .3); }
  .offre__detail { min-height: 72px; }
  .offre__points { border-top: 0; padding-top: 0; }
}

.questions__liste { display: flex; flex-direction: column; gap: 10px; }
.question { border-radius: 16px; background: var(--surface); border: 1px solid var(--ligne); }
.question summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16.5px, 1.25vw, 18px);
  font-weight: 650;
  border-radius: 16px;
}
.question summary::-webkit-details-marker { display: none; }
.question__plus { display: flex; flex-shrink: 0; color: var(--vert); transition: transform .2s; }
.question[open] .question__plus { transform: rotate(45deg); }
.question p { padding: 0 22px 20px; font-size: clamp(15px, 1.1vw, 16px); line-height: 1.6; color: var(--encre2); }
@media (min-width: 900px) {
  .questions { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 64px; align-items: start; }
  .questions .titre { font-size: clamp(44px, 4.2vw, 60px); }
}

.contact {
  margin: 0 12px 36px;
  border-radius: 30px;
  background: linear-gradient(150deg, #0C2C23 0%, #06140F 100%);
  color: #F3EDE0;
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}
.contact__texte { display: contents; }
.contact__titre { order: 1; font-size: clamp(40px, 5.3vw, 76px); }
.flottants { order: 2; display: flex; gap: 10px; justify-content: space-between; }
.contact__boutons { order: 3; display: flex; flex-direction: column; gap: 10px; }

.contact__note { order: 4; font-size: 13px; color: rgba(243, 237, 224, .68); text-align: center; }
.flottant {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #EFE7D3;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: flotter 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * -.8s);
}
.flottant svg { width: 63%; height: 63%; }
.flottant--large { display: none; }
@media (min-width: 900px) {
  .contact {
    margin: 0 var(--bord) 90px;
    border-radius: 44px;
    padding: clamp(56px, 6.3vw, 90px) clamp(40px, 5.5vw, 80px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 40px;
    align-items: center;
  }
  .contact__texte { display: flex; flex-direction: column; gap: 26px; }
  .contact__boutons { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .contact__boutons .bouton { width: auto; white-space: nowrap; padding: 0 28px; }
  .contact__note { text-align: left; font-size: 14.5px; }
  .flottants { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; justify-items: center; }
  .flottant, .flottant--large { display: flex; width: clamp(72px, 6.7vw, 96px); height: clamp(72px, 6.7vw, 96px); }
}

.pied {
  border-top: 1px solid var(--ligne);
  padding: 28px var(--bord) 110px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pied__grille { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
.pied__marque { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; }
.pied__marque p { font-size: 14px; color: var(--encre2); line-height: 1.5; }
.pied nav { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--encre2); }
.pied nav a { text-decoration: none; }
.pied nav a:hover { text-decoration: underline; opacity: 1; }
.pied__titre { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; color: var(--attenue); }
.pied__droits { font-size: 13px; color: var(--attenue); }
@media (min-width: 900px) {
  .pied { padding: 64px var(--bord) 44px; gap: 40px; }
  .pied__grille { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
  .pied__marque { grid-column: auto; gap: 14px; }
  .pied__marque p { font-size: 15px; }
}

.bulle {
  position: fixed;
  right: clamp(16px, 2.2vw, 32px);
  bottom: clamp(16px, 2.2vw, 32px);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.bulle:hover { opacity: 1; }
.bulle__mot {
  display: none;
  background: var(--surface);
  color: var(--encre);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(29, 24, 16, .12);
  white-space: nowrap;
}
.bulle__rond {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(18, 140, 126, .35);
  flex-shrink: 0;
}
.bulle__rond svg { width: 27px; height: 27px; }
.bulle__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: halo 3.2s ease-out infinite;
}
@media (min-width: 900px) {
  .bulle__mot { display: inline-block; }
  .bulle__rond { width: 62px; height: 62px; }
  .bulle__rond svg { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
