@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600&family=Playfair+Display:wght@500&display=swap');

.is-maisons {
  font-family: 'Mulish', sans-serif;
}
.is-maisons > *:first-child { margin-top: 0; }
.is-maisons > *:last-child { margin-bottom: 0; }
.is-maisons-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #A89F98;
  margin-bottom: 12px;
}
.is-maisons-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: #2C2420;
  line-height: 1.15;
  margin-bottom: 12px;
}
.is-maisons-intro {
  font-size: 16px;
  color: #7A6F68;
  line-height: 1.85;
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 40px;
}
.is-maisons-intro strong { color: #2C2420; font-weight: 600; }

/* GRILLE */
.is-maisons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.is-maison-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #DDD5C8;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.is-maison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,36,32,.1);
}

/* ILLUSTRATION MAISON */
.is-maison-thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.is-maison-thumb svg { width: 100%; height: 100%; }
.is-maison-img {
  width: 100%;
  height: 100%;
  display: block;
}
.is-maison-img--cover { object-fit: cover; }
.is-maison-img--contain { object-fit: contain; }

/* BADGE LOCALISATION */
.is-maison-loc {
  position: absolute;
  bottom: 12px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #2C2420;
}

/* CORPS */
.is-maison-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.is-maison-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  color: #2C2420;
  margin-bottom: 4px;
}
.is-maison-zone {
  font-size: 12px;
  color: #A89F98;
  font-weight: 500;
  margin-bottom: 12px;
}
.is-maison-desc {
  font-size: 13px;
  color: #7A6F68;
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 16px;
}
.is-maison-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.is-maison-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 40px;
  background: #F5EFE6;
  color: #7A6F68;
}
.is-maison-link {
  font-size: 13px;
  font-weight: 600;
  color: #7FA6B1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding-top: 14px;
  border-top: 1px solid #EFE9E0;
  transition: gap .2s;
}
.is-maison-card:hover .is-maison-link { gap: 8px; }

/* LIEN BAS */
.is-maisons-cta {
  text-align: center;
  margin-top: 32px;
}
.is-maisons-cta a {
  display: inline-block;
  background: #2C2420;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: background .2s;
}
.is-maisons-cta a:hover { background: #7FA6B1; }

@media (max-width: 860px) {
  .is-maisons-grid { grid-template-columns: 1fr; }
  .is-maison-thumb { height: 150px; }
}
