/* ------------------------------
   HOME — MAMAN LOUVE
   Page d’accueil
------------------------------ */

/* =========================
   HERO HOME — FULL WIDTH PREMIUM
========================= */

* =========================
   HERO HOME — FULL WIDTH PREMIUM
   Version propre : 1 desktop + 1 mobile
========================= */

.ml-home-hero {
  position: relative;
  padding: 0;
  margin: 0;
  background: var(--ml-ivory);
}

.ml-home-hero__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(640px, 82vh, 860px);
  background: var(--ml-sand);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.ml-home-hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ml-home-hero__picture img,
.ml-home-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ml-home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(250, 246, 240, 0.96) 0%,
      rgba(250, 246, 240, 0.93) 24%,
      rgba(250, 246, 240, 0.72) 42%,
      rgba(250, 246, 240, 0.28) 60%,
      rgba(250, 246, 240, 0.06) 78%,
      rgba(250, 246, 240, 0.00) 100%
    );
  pointer-events: none;
}

.ml-home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  max-width: 1440px;
  margin: 0 auto;
  padding:
    clamp(64px, 8vw, 110px)
    clamp(24px, 4vw, 40px)
    clamp(72px, 8vw, 110px);
}

.ml-home-hero__eyebrow,
.ml-home-hero__title,
.ml-home-hero__text,
.ml-home-hero__actions {
  max-width: 640px;
}

.ml-home-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-hero__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-wrap: balance;
}

.ml-home-hero__text {
  margin: 28px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.75;
}

.ml-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ml-home-hero__badge {
  display: none;
}

/* Tablette */
@media (max-width: 1024px) {
  .ml-home-hero__frame {
    min-height: 720px;
  }

  .ml-home-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(250, 246, 240, 0.95) 0%,
        rgba(250, 246, 240, 0.90) 34%,
        rgba(250, 246, 240, 0.55) 55%,
        rgba(250, 246, 240, 0.12) 76%,
        rgba(250, 246, 240, 0.00) 100%
      );
  }

  .ml-home-hero__title {
    font-size: clamp(3.6rem, 8vw, 5.6rem);
  }
}

/* Mobile — overlay sable chaud, texte blanc centré */
@media (max-width: 767px) {
  .ml-home-hero {
    padding: 0;
    margin: 0;
    background: var(--ml-ivory);
  }

  .ml-home-hero__frame {
    position: relative;
    height: min(660px, calc(100svh - 92px));
    min-height: 560px;
    max-height: 680px;
    overflow: hidden;
    background: var(--ml-sand);
  }

  .ml-home-hero__image {
    object-position: 58% center;
  }

  .ml-home-hero__overlay {
    background:
      radial-gradient(
        circle at 50% 64%,
        rgba(92, 68, 54, 0.16) 0%,
        rgba(120, 86, 66, 0.32) 34%,
        rgba(163, 112, 88, 0.42) 56%,
        rgba(232, 214, 194, 0.56) 78%,
        rgba(250, 246, 240, 0.88) 100%
      ),
      linear-gradient(
        180deg,
        rgba(43, 37, 33, 0.04) 0%,
        rgba(43, 37, 33, 0.12) 28%,
        rgba(89, 66, 54, 0.36) 54%,
        rgba(142, 96, 74, 0.52) 72%,
        rgba(250, 246, 240, 0.92) 100%
      );
  }

  .ml-home-hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(76px, 13svh, 112px);
    z-index: 2;
    display: block;
    width: min(100%, 430px);
    min-height: auto;
    max-width: none;
    margin-inline: auto;
    padding: 0 24px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    backdrop-filter: none;
  }

  .ml-home-hero__eyebrow,
  .ml-home-hero__title,
  .ml-home-hero__text,
  .ml-home-hero__actions {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .ml-home-hero__eyebrow {
    margin-bottom: 10px;
    color: rgba(255, 251, 247, 0.86);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-shadow: 0 2px 14px rgba(43, 37, 33, 0.22);
  }

  .ml-home-hero__title {
    max-width: 10.6em;
    color: var(--ml-ivory);
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 24px rgba(43, 37, 33, 0.30);
  }

  .ml-home-hero__text {
    max-width: 31rem;
    margin-top: 14px;
    color: rgba(255, 251, 247, 0.90);
    font-size: 0.9rem;
    line-height: 1.48;
    text-shadow: 0 2px 16px rgba(43, 37, 33, 0.22);
  }

  .ml-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 390px);
    margin-top: 22px;
  }

  .ml-home-hero__actions .ml-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .ml-home-hero__actions .ml-btn--primary {
    color: var(--ml-ivory);
    background: var(--ml-terracotta);
    border-color: var(--ml-terracotta);
    box-shadow: 0 12px 28px rgba(43, 37, 33, 0.16);
  }

  .ml-home-hero__actions .ml-btn--secondary {
    color: var(--ml-brown);
    background: rgba(255, 251, 247, 0.92);
    border: 1px solid rgba(255, 251, 247, 0.78);
    box-shadow: 0 10px 24px rgba(43, 37, 33, 0.10);
    backdrop-filter: blur(8px);
    text-decoration: none;
  }
}

@media (max-width: 390px) {
  .ml-home-hero__content {
    bottom: 58px;
    padding-inline: 20px;
  }

  .ml-home-hero__title {
    font-size: clamp(2.22rem, 10.5vw, 2.85rem);
  }

  .ml-home-hero__text {
    font-size: 0.86rem;
  }
}

/* ------------------------------
   02. BANDEAU RÉASSURANCE FLOTTANT
------------------------------ */

.ml-home-proof {
  position: relative;
  z-index: 10;
  margin-top: -54px;
  padding: 0 20px clamp(52px, 6vw, 82px);
  padding-bottom: clamp(22px, 3.5vw, 42px);
  background: transparent;
}

.ml-home-proof__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--ml-container));
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 251, 247, 0.96);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(43, 37, 33, 0.12);
  backdrop-filter: blur(14px);
}

.ml-home-proof__item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 24px 28px;
}

.ml-home-proof__item + .ml-home-proof__item {
  border-left: 1px solid rgba(43, 37, 33, 0.08);
}

.ml-home-proof__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--ml-terracotta);
}

.ml-home-proof__icon img,
.ml-home-proof__icon svg {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ml-home-proof__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.ml-home-proof__text {
  margin: 6px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Tablette */
@media (max-width: 1024px) {
  .ml-home-proof {
    margin-top: -42px;
  }

  .ml-home-proof__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ml-home-proof__item + .ml-home-proof__item {
    border-left: 0;
  }

  .ml-home-proof__item:nth-child(even) {
    border-left: 1px solid rgba(43, 37, 33, 0.08);
  }

  .ml-home-proof__item:nth-child(n + 3) {
    border-top: 1px solid rgba(43, 37, 33, 0.08);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ml-home-proof {
    margin-top: -26px;
    padding: 0 16px 48px;
    background: var(--ml-ivory);
    padding-bottom: 22px;
    padding-top:22px;
  }

  .ml-home-proof__inner {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
  }

  .ml-home-proof__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 17px 18px;
  }

  .ml-home-proof__item + .ml-home-proof__item,
  .ml-home-proof__item:nth-child(even),
  .ml-home-proof__item:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(43, 37, 33, 0.08);
  }

  .ml-home-proof__icon {
    width: 38px;
    height: 38px;
  }

  .ml-home-proof__icon img,
  .ml-home-proof__icon svg {
    width: 32px;
    height: 32px;
  }

  .ml-home-proof__title {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    line-height: 1.25;
  }

  .ml-home-proof__text {
    margin-top: 4px;
    font-size: 0.76rem;
    line-height: 1.42;
  }
}


/* ------------------------------
   03. CONCEPT / SÉLECTION
------------------------------ */

.ml-home-concept {
  position: relative;
  padding: clamp(34px, 5vw, 70px) 20px clamp(72px, 8vw, 110px);
  padding-top: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 92% 18%, rgba(168, 181, 162, 0.16), transparent 28%),
    var(--ml-ivory);
}

.ml-home-concept__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

.ml-home-concept__visual {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
}

.ml-home-concept__image {
  overflow: hidden;
  background: var(--ml-sand);
  border: 1px solid rgba(43, 37, 33, 0.08);
  box-shadow: 0 22px 60px rgba(43, 37, 33, 0.10);
}

.ml-home-concept__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Grande image */
.ml-home-concept__image--main {
  position: absolute;
  inset: 0 14% 10% 0;
  border-radius: 34px;
}

.ml-home-concept__image--main img {
  object-position: center;
}

/* Petite image superposée */
.ml-home-concept__image--small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
}

.ml-home-concept__image--small img {
  object-position: center;
}

.ml-home-concept__content {
  max-width: 680px;
}

.ml-home-concept__eyebrow {
  margin: 0 0 14px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-concept__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.ml-home-concept__lead {
  margin: 24px 0 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.75;
}

.ml-home-concept__text {
  margin: 16px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.98rem;
  line-height: 1.72;
}

/* Piliers concept — version éditoriale premium */

.ml-home-concept__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(28px, 3vw, 38px);
  border-top: 1px solid rgba(43, 37, 33, 0.12);
  border-bottom: 1px solid rgba(43, 37, 33, 0.08);
}

.ml-home-concept__point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 18px 22px 0;
}

.ml-home-concept__point + .ml-home-concept__point {
  padding-left: 20px;
  border-left: 1px solid rgba(43, 37, 33, 0.10);
}

.ml-home-concept__point-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin-top: 1px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.ml-home-concept__point strong {
  display: block;
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ml-home-concept__point p {
  margin: 7px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-concept__inner {
    grid-template-columns: 1fr;
  }

  .ml-home-concept__visual {
    order: 2;
    min-height: 460px;
  }

  .ml-home-concept__content {
    order: 1;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

   .ml-home-concept__points {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .ml-home-concept__point {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }

  .ml-home-concept__point + .ml-home-concept__point {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(43, 37, 33, 0.10);
  }

  .ml-home-concept__point-mark {
    min-width: 30px;
    height: 30px;
    font-size: 0.66rem;
  }

  .ml-home-concept__point strong {
    font-size: 0.78rem;
    letter-spacing: 0.045em;
  }

  .ml-home-concept__point p {
    font-size: 0.8rem;
    line-height: 1.48;
  }
}



/* Mobile */
@media (max-width: 640px) {
  .ml-home-concept {
    padding: 52px 18px 72px;
    padding-top: 34px;
  }

  .ml-home-concept__content {
    text-align: left;
  }

  .ml-home-concept__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .ml-home-concept__title {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 1;
  }

  .ml-home-concept__lead {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .ml-home-concept__text {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .ml-home-concept__points {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .ml-home-concept__points article {
    padding: 18px 0;
  }

  .ml-home-concept__points article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(43, 37, 33, 0.10);
  }

  .ml-home-concept__visual {
    min-height: 360px;
  }

  .ml-home-concept__image--main {
    inset: 0;
    border-radius: 28px;
  }

  .ml-home-concept__image--small {
    display: none;
  }
}

/* ------------------------------
   CONCEPT — MINI GRILLE OFFRE
------------------------------ */

.ml-home-concept__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ml-home-concept__highlights li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ml-brown);
  background: rgba(250, 246, 240, 0.86);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: 20px;
  text-align: center;
}

.ml-home-concept__highlights span {
  font-family: var(--ml-font-body);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .ml-home-concept__highlights {
    max-width: 100%;
    margin: 24px auto 0;
  }

  .ml-home-concept__highlights li {
    min-height: 58px;
    border-radius: 18px;
  }

  .ml-home-concept__highlights span {
    font-size: 0.76rem;
  }
}

@media (max-width: 360px) {
  .ml-home-concept__highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ml-home-concept__inner {
    display: flex;
    flex-direction: column;
  }


  .ml-home-concept__eyebrow {
    order: 1;
  }

  .ml-home-concept__title {
    order: 2;
  }

  .ml-home-concept__lead {
    order: 3;
  }

  .ml-home-concept__visual {
    order: 4;
    margin: 24px 0 26px;
  }

  .ml-home-concept__text {
    order: 5;
  }

  
  .ml-home-concept__image--small {
    display: none;
  }

  .ml-home-concept__image--main {
    width: 100%;
  }

  .ml-home-concept__image--main img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 28px;
  }
}

/* Image mobile concept : cachée sur desktop */
.ml-home-concept__visual-mobile {
  display: none;
}

/* Mobile : on affiche l’image au bon endroit dans le texte */
@media (max-width: 767px) {
  .ml-home-concept__visual--desktop {
    display: none !important;
  }

  .ml-home-concept__visual-mobile {
    display: block;
    margin: 24px 0 26px;
  }

  .ml-home-concept__visual-mobile img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 28px;
  }

  .ml-home-concept__content {
    display: block !important;
  }
}

/* ------------------------------
   04. ORIENTATION BOUTIQUE / BESOINS
------------------------------ */
/* ------------------------------
   LISTE DE NAISSANCE — BLOC COMPACT
------------------------------ */

.ml-home-birthlist {
  position: relative;
  padding: clamp(48px, 6vw, 82px) 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(168, 181, 162, 0.13), transparent 30%),
    linear-gradient(180deg, var(--ml-ivory) 0%, var(--ml-sand) 100%);
}

.ml-home-birthlist__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

.ml-home-birthlist__content {
  max-width: 720px;
}

.ml-home-birthlist__eyebrow {
  margin: 0 0 14px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-birthlist__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.ml-home-birthlist__text {
  margin: 22px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  line-height: 1.72;
}

.ml-home-birthlist__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.ml-home-birthlist__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.ml-home-birthlist__link::after {
  content: "→";
  margin-left: 8px;
  transition: transform var(--ml-transition);
}

.ml-home-birthlist__link:hover {
  color: var(--ml-terracotta-dark);
}

.ml-home-birthlist__link:hover::after {
  transform: translateX(3px);
}

.ml-home-birthlist__aside {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 251, 247, 0.72);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: clamp(26px, 3vw, 34px);
}

.ml-home-birthlist__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(43, 37, 33, 0.08);
}

.ml-home-birthlist__item:last-child {
  border-bottom: 0;
}

.ml-home-birthlist__item span {
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.ml-home-birthlist__item p {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-birthlist__inner {
    grid-template-columns: 1fr;
  }

  .ml-home-birthlist__content {
    max-width: 760px;
  }

  .ml-home-birthlist__aside {
    max-width: 760px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-birthlist {
    padding: 50px 18px 66px;
  }

  .ml-home-birthlist__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-birthlist__title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1;
  }

  .ml-home-birthlist__text {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .ml-home-birthlist__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .ml-home-birthlist__actions .ml-btn {
    width: 100%;
    justify-content: center;
  }

  .ml-home-birthlist__link {
    justify-content: center;
    width: 100%;
  }

  .ml-home-birthlist__aside {
    padding: 22px 20px;
    border-radius: 26px;
  }

  .ml-home-birthlist__item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .ml-home-birthlist__item p {
    font-size: 0.88rem;
    line-height: 1.48;
  }
}
/* ------------------------------
   05-06. SERVICES FORTS : LOCATION + PERSONNALISÉS
------------------------------ */

.ml-home-services {
  padding: clamp(46px, 6vw, 78px) 20px;
  background: var(--ml-ivory);
}

.ml-home-services__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

.ml-home-service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: clamp(270px, 24vw, 340px);
  overflow: hidden;
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(43, 37, 33, 0.08);
}

.ml-home-service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.2vw, 42px);
}

.ml-home-service-card__eyebrow {
  margin: 0 0 12px;
  font-family: var(--ml-font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-service-card__title {
  margin: 0;
  font-family: var(--ml-font-title);
  font-size: clamp(1.85rem, 2.7vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.ml-home-service-card__list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ml-home-service-card__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--ml-font-body);
  font-size: 0.82rem;
  line-height: 1.42;
}

.ml-home-service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: 0.72;
}

.ml-home-service-card .ml-btn {
  width: fit-content;
  margin-top: 24px;
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.78rem;
}

.ml-home-service-card__media {
  position: relative;
  min-height: inherit;
  overflow: hidden;
}

.ml-home-service-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ml-home-service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

/* Location */
.ml-home-service-card--rental {
  background: var(--ml-sage);
}

.ml-home-service-card--rental .ml-home-service-card__eyebrow,
.ml-home-service-card--rental .ml-home-service-card__title,
.ml-home-service-card--rental .ml-home-service-card__list li {
  color: var(--ml-ivory);
}

.ml-home-service-card--rental .ml-home-service-card__eyebrow {
  color: rgba(255, 251, 247, 0.78);
}

.ml-home-service-card--rental .ml-home-service-card__media::before {
  background: linear-gradient(
    90deg,
    rgba(93, 106, 88, 0.28) 0%,
    rgba(93, 106, 88, 0.06) 48%,
    rgba(93, 106, 88, 0) 100%
  );
}

.ml-home-service-card--rental .ml-btn--primary {
  color: var(--ml-brown);
  background: var(--ml-ivory);
  border-color: var(--ml-ivory);
}

.ml-home-service-card--rental .ml-btn--primary:hover {
  color: var(--ml-brown);
  background: var(--ml-sand);
  border-color: var(--ml-sand);
}

/* Personnalisés */
.ml-home-service-card--custom {
  background: var(--ml-sand);
}

.ml-home-service-card--custom .ml-home-service-card__eyebrow {
  color: var(--ml-terracotta);
}

.ml-home-service-card--custom .ml-home-service-card__title {
  color: var(--ml-brown);
}

.ml-home-service-card--custom .ml-home-service-card__list li {
  color: var(--ml-text-soft);
}

.ml-home-service-card--custom .ml-home-service-card__media::before {
  background: linear-gradient(
    90deg,
    rgba(250, 246, 240, 0.34) 0%,
    rgba(250, 246, 240, 0.08) 48%,
    rgba(250, 246, 240, 0) 100%
  );
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-services__inner {
    grid-template-columns: 1fr;
  }

  .ml-home-service-card {
    min-height: 320px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-services {
    padding: 48px 18px 64px;
  }

  .ml-home-services__inner {
    gap: 18px;
  }

  .ml-home-service-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 26px;
  }

  .ml-home-service-card__media {
    order: 1;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .ml-home-service-card__media img {
    min-height: 0;
  }

  .ml-home-service-card__content {
    order: 2;
    padding: 26px 22px 28px;
  }

  .ml-home-service-card__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-service-card__title {
    font-size: clamp(1.9rem, 8.6vw, 2.55rem);
    line-height: 1.02;
  }

  .ml-home-service-card__list {
    margin-top: 18px;
    gap: 7px;
  }

  .ml-home-service-card__list li {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .ml-home-service-card .ml-btn {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
  }
}
/* ------------------------------
   07. MARQUES & CRÉATEURS — CAROUSEL AUTOMATIQUE
------------------------------ */

.ml-home-brands {
  padding: clamp(42px, 5vw, 68px) 20px;
  background: var(--ml-ivory);
}

.ml-home-brands__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  width: min(100%, var(--ml-container));
  margin-inline: auto;
  padding: clamp(26px, 3.6vw, 40px);
  overflow: hidden;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: clamp(26px, 3vw, 34px);
  box-shadow: 0 18px 48px rgba(43, 37, 33, 0.07);
}

.ml-home-brands__eyebrow {
  margin: 0 0 10px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-brands__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(1.95rem, 3.2vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.ml-home-brands__text {
  margin: 14px 0 0;
  max-width: 32ch;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.88rem;
  line-height: 1.58;
}

.ml-home-brands__intro .ml-btn {
  margin-top: 22px;
  min-height: 40px;
  padding: 10px 17px;
  font-size: 0.76rem;
}

/* Zone défilante */
.ml-home-brands-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

/* Dégradé subtil aux extrémités */
.ml-home-brands-marquee::before,
.ml-home-brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(28px, 5vw, 70px);
  pointer-events: none;
}

.ml-home-brands-marquee::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 251, 247, 0.98),
    rgba(255, 251, 247, 0)
  );
}

.ml-home-brands-marquee::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(255, 251, 247, 0.98),
    rgba(255, 251, 247, 0)
  );
}

.ml-home-brands-marquee__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ml-home-brands-marquee__viewport::-webkit-scrollbar {
  display: none;
}

.ml-home-brands-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  width: max-content;
  margin: 0;
  padding: 6px 2px;
  list-style: none;
}

/* Pastilles logos */
.ml-home-brands-marquee__item {
  flex: 0 0 clamp(108px, 8.8vw, 136px);
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(255, 251, 247, 0.96);
  border: 1px solid rgba(43, 37, 33, 0.10);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(43, 37, 33, 0.035);
}

.ml-home-brands-marquee__item img {
  display: block;
  max-width: 88%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
 
}

/* Item texte final */
.ml-home-brands-marquee__item--text {
  flex-basis: clamp(150px, 12vw, 190px);
  padding-inline: 22px;
}

.ml-home-brands-marquee__item--text span {
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-brands__inner {
    grid-template-columns: 1fr;
  }

  .ml-home-brands__intro {
    max-width: 680px;
  }

  .ml-home-brands__text {
    max-width: 54ch;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-brands {
    padding: 44px 18px 60px;
  }

  .ml-home-brands__inner {
    padding: 26px 22px 28px;
    border-radius: 28px;
  }

  .ml-home-brands__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-brands__title {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .ml-home-brands__text {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .ml-home-brands__intro .ml-btn {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
  }

  .ml-home-brands-marquee {
    margin-top: 6px;
  }

  .ml-home-brands-marquee__track {
    gap: 12px;
    padding-block: 4px;
  }

  .ml-home-brands-marquee__item {
    flex-basis: 94px;
    padding: 16px;
  }

  .ml-home-brands-marquee__item img {
    max-height: 42px;
  }

  .ml-home-brands-marquee__item--text {
    flex-basis: 132px;
    padding-inline: 16px;
  }

  .ml-home-brands-marquee__item--text span {
    font-size: 0.7rem;
  }
}
/* ------------------------------
   08. CONSEILS — DERNIERS ARTICLES
------------------------------ */

.ml-home-advice {
  padding: clamp(52px, 7vw, 92px) 20px;
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 120, 99, 0.07), transparent 30%),
    linear-gradient(180deg, var(--ml-sand) 0%, var(--ml-sand) 58%, var(--ml-ivory) 100%);
}

.ml-home-advice__inner {
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

.ml-home-advice__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.ml-home-advice__intro {
  max-width: 760px;
}

.ml-home-advice__eyebrow {
  margin: 0 0 14px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-advice__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(2.35rem, 4.3vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.ml-home-advice__text {
  margin: 20px 0 0;
  max-width: 68ch;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.68;
}

.ml-home-advice__header .ml-btn {
  white-space: nowrap;
}

/* Grille articles */
.ml-home-advice-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.ml-home-advice-post {
  overflow: hidden;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(43, 37, 33, 0.06);
  transition:
    transform var(--ml-transition),
    box-shadow var(--ml-transition),
    border-color var(--ml-transition);
}

.ml-home-advice-post:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 120, 99, 0.22);
  box-shadow: 0 22px 56px rgba(43, 37, 33, 0.09);
}

.ml-home-advice-post__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ml-sand);
  text-decoration: none;
}

.ml-home-advice-post__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.ml-home-advice-post:hover .ml-home-advice-post__media img {
  transform: scale(1.035);
}

.ml-home-advice-post__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ml-home-advice-post__body {
  padding: clamp(20px, 2.6vw, 28px);
}

.ml-home-advice-post__kicker {
  margin: 0 0 10px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-advice-post__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.ml-home-advice-post__title a {
  color: inherit;
  text-decoration: none;
}

.ml-home-advice-post__title a:hover {
  color: var(--ml-terracotta);
}

.ml-home-advice-post__excerpt {
  margin: 14px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ml-home-advice-post__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.ml-home-advice-post__link::after {
  content: "→";
  transition: transform var(--ml-transition);
}

.ml-home-advice-post__link:hover {
  color: var(--ml-terracotta-dark);
}

.ml-home-advice-post__link:hover::after {
  transform: translateX(3px);
}

/* Fallback si aucun article publié */
.ml-home-advice-empty {
  padding: 28px;
  background: rgba(255, 251, 247, 0.92);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: 26px;
}

.ml-home-advice-empty p {
  margin: 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-advice__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ml-home-advice__header .ml-btn {
    width: fit-content;
  }

  .ml-home-advice-posts {
    grid-template-columns: 1fr;
  }

  .ml-home-advice-post {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  }

  .ml-home-advice-post__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-advice {
    padding: 50px 18px 66px;
  }

  .ml-home-advice__header {
    gap: 22px;
    margin-bottom: 28px;
  }

  .ml-home-advice__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-advice__title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1;
  }

  .ml-home-advice__text {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .ml-home-advice__header .ml-btn {
    width: 100%;
    justify-content: center;
  }

  .ml-home-advice-post {
    display: block;
    border-radius: 26px;
  }

  .ml-home-advice-post__media {
    aspect-ratio: 4 / 3;
  }

  .ml-home-advice-post__body {
    padding: 22px 20px 24px;
  }

  .ml-home-advice-post__title {
    font-size: clamp(1.42rem, 6.8vw, 1.8rem);
  }

  .ml-home-advice-post__excerpt {
    font-size: 0.86rem;
    line-height: 1.55;
  }
}

/* Correctif mobile — cartes articles Conseils */
@media (max-width: 640px) {
  .ml-home-advice-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ml-home-advice-post {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
    background: rgba(255, 251, 247, 0.94);
    border: 1px solid rgba(43, 37, 33, 0.08);
    border-radius: 26px;
  }

  .ml-home-advice-post__media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0 !important;
    background: var(--ml-sand);
  }

  .ml-home-advice-post__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    object-fit: cover;
  }

  .ml-home-advice-post__body {
    display: block !important;
    position: relative;
    z-index: 2;
    padding: 22px 20px 24px;
    background: rgba(255, 251, 247, 0.96);
  }

  .ml-home-advice-post__kicker {
    display: block;
    margin: 0 0 10px;
    color: var(--ml-terracotta);
    font-family: var(--ml-font-body);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .ml-home-advice-post__title {
    display: block;
    margin: 0;
    color: var(--ml-brown);
    font-family: var(--ml-font-title);
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.08;
  }

  .ml-home-advice-post__title a {
    color: inherit;
    text-decoration: none;
  }

  .ml-home-advice-post__excerpt {
    display: block;
    margin: 14px 0 0;
    color: var(--ml-text-soft);
    font-family: var(--ml-font-body);
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .ml-home-advice-post__link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--ml-terracotta);
    font-family: var(--ml-font-body);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
  }

  .ml-home-advice-post__link::after {
    content: "→";
  }
}

/* ------------------------------
   9. AVIS GOOGLE & CONFIANCE
------------------------------ */

.ml-home-reviews {
  padding: clamp(54px, 7vw, 92px) 20px;
  background: var(--ml-ivory);
}

.ml-home-reviews__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  width: min(100%, var(--ml-container));
  margin-inline: auto;
  padding: clamp(26px, 3.8vw, 44px);
  background: rgba(255, 251, 247, 0.9);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: clamp(28px, 3vw, 38px);
  box-shadow: 0 20px 56px rgba(43, 37, 33, 0.07);
}

.ml-home-reviews__summary {
  min-width: 0;
}

.ml-home-reviews__eyebrow {
  margin: 0 0 14px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-reviews__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ml-home-reviews__score {
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.ml-home-reviews__stars {
  color: #DCA847;
  font-family: var(--ml-font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: 0.08em;
  line-height: 1;
}

.ml-home-reviews__count {
  margin: 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.ml-home-reviews__title {
  margin: 22px 0 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.ml-home-reviews__text {
  margin: 16px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.92rem;
  line-height: 1.65;
}

.ml-home-reviews__google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.ml-home-reviews__google-link::after {
  content: "→";
  transition: transform var(--ml-transition);
}

.ml-home-reviews__google-link:hover {
  color: var(--ml-terracotta-dark);
}

.ml-home-reviews__google-link:hover::after {
  transform: translateX(3px);
}

/* Cartes avis */
.ml-home-reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.ml-home-review-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: clamp(18px, 2.2vw, 26px);
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(43, 37, 33, 0.045);
}

.ml-home-review-card__stars {
  margin-bottom: 16px;
  color: #DCA847;
  font-family: var(--ml-font-body);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.ml-home-review-card__quote {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.55;
}

.ml-home-review-card__author {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-reviews__inner {
    grid-template-columns: 1fr;
  }

  .ml-home-reviews__summary {
    max-width: 720px;
  }

  .ml-home-reviews__cards {
    grid-template-columns: 1fr;
  }

  .ml-home-review-card {
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-reviews {
    padding: 50px 18px 66px;
  }

  .ml-home-reviews__inner {
    padding: 26px 22px 28px;
    border-radius: 28px;
  }

  .ml-home-reviews__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-reviews__rating {
    gap: 10px;
  }

  .ml-home-reviews__score {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .ml-home-reviews__stars {
    font-size: 1rem;
  }

  .ml-home-reviews__title {
    margin-top: 20px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .ml-home-reviews__text {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .ml-home-reviews__google-link {
    margin-top: 20px;
  }

  .ml-home-reviews__cards {
    gap: 14px;
  }

  .ml-home-review-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .ml-home-review-card__quote {
    font-size: 0.86rem;
    line-height: 1.55;
  }
}

/* ------------------------------
   11. INFOS PRATIQUES / VENIR EN BOUTIQUE
------------------------------ */

.ml-home-visit {
  padding: clamp(56px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(168, 181, 162, 0.18), transparent 30%),
    var(--ml-ivory);
}

.ml-home-visit__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

.ml-home-visit__content {
  max-width: 560px;
}

.ml-home-visit__eyebrow {
  margin: 0 0 14px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-visit__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(2.35rem, 4.4vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.ml-home-visit__text {
  margin: 22px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.04rem);
  line-height: 1.7;
}

.ml-home-visit__text + .ml-home-visit__text {
  margin-top: 14px;
}

.ml-home-visit__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.ml-home-visit__phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.ml-home-visit__phone::after {
  content: "→";
  margin-left: 8px;
  transition: transform var(--ml-transition);
}

.ml-home-visit__phone:hover {
  color: var(--ml-terracotta-dark);
}

.ml-home-visit__phone:hover::after {
  transform: translateX(3px);
}

/* Panneau */
.ml-home-visit__panel {
  overflow: hidden;
  background: rgba(255, 251, 247, 0.92);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: clamp(28px, 3vw, 38px);
  box-shadow: 0 20px 56px rgba(43, 37, 33, 0.07);
}

.ml-home-visit__map {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ml-sand);
  border-bottom: 1px solid rgba(43, 37, 33, 0.08);
}

.ml-home-visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.ml-home-visit__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(43, 37, 33, 0.08);
}

.ml-home-visit-info {
  min-width: 0;
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(255, 251, 247, 0.96);
}

.ml-home-visit-info--hours {
  grid-column: 1 / -1;
}

.ml-home-visit-info__title {
  margin: 0 0 10px;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ml-home-visit-info__text {
  margin: 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.62;
}

.ml-home-visit-info__text a {
  color: var(--ml-text-soft);
  font-weight: 700;
  text-decoration: none;
}

.ml-home-visit-info__text a:hover {
  color: var(--ml-terracotta);
}

/* Horaires */
.ml-home-visit-hours {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ml-home-visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(43, 37, 33, 0.08);
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.86rem;
  line-height: 1.45;
}

.ml-home-visit-hours li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ml-home-visit-hours span {
  flex: 0 0 auto;
  font-weight: 700;
}

.ml-home-visit-hours strong {
  color: var(--ml-brown);
  font-weight: 800;
  text-align: right;
}

.ml-home-visit-info__note {
  margin: 18px 0 0;
  color: var(--ml-muted);
  font-family: var(--ml-font-body);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-visit__inner {
    grid-template-columns: 1fr;
  }

  .ml-home-visit__content {
    max-width: 760px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-visit {
    padding: 50px 18px 66px;
  }

  .ml-home-visit__inner {
    gap: 28px;
  }

  .ml-home-visit__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-visit__title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1;
  }

  .ml-home-visit__text {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .ml-home-visit__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .ml-home-visit__phone {
    justify-content: center;
    width: 100%;
  }

  .ml-home-visit__panel {
    border-radius: 28px;
  }

  .ml-home-visit__map {
    aspect-ratio: 4 / 3;
  }

  .ml-home-visit__details {
    grid-template-columns: 1fr;
  }

  .ml-home-visit-info {
    padding: 22px 20px;
  }

  .ml-home-visit-hours li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    font-size: 0.82rem;
  }

  .ml-home-visit-hours strong {
    text-align: left;
  }
}

/* ------------------------------
   12. FAQ HOME
------------------------------ */

.ml-home-faq {
  padding: clamp(54px, 7vw, 92px) 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 120, 99, 0.08), transparent 30%),
    var(--ml-ivory);
}

.ml-home-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

.ml-home-faq__header {
  position: sticky;
  top: 140px;
}

.ml-home-faq__eyebrow {
  margin: 0 0 14px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-faq__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.ml-home-faq__text {
  margin: 22px 0 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.68;
}

/* Liste FAQ */
.ml-home-faq__list {
  display: grid;
  gap: 12px;
}

.ml-home-faq-item {
  overflow: hidden;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(43, 37, 33, 0.045);
}

.ml-home-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 20px 58px 20px 24px;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.ml-home-faq-item summary::-webkit-details-marker {
  display: none;
}

.ml-home-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ml-terracotta);
  background: var(--ml-terracotta-light);
  border-radius: 999px;
  font-family: var(--ml-font-body);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform var(--ml-transition),
    background-color var(--ml-transition);
}

.ml-home-faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

.ml-home-faq-item__content {
  padding: 0 24px 22px;
}

.ml-home-faq-item__content p {
  margin: 0;
  color: var(--ml-text-soft);
  font-family: var(--ml-font-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ml-home-faq-item__content p + p {
  margin-top: 10px;
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-faq__inner {
    grid-template-columns: 1fr;
  }

  .ml-home-faq__header {
    position: static;
    max-width: 760px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-faq {
    padding: 50px 18px 66px;
  }

  .ml-home-faq__inner {
    gap: 28px;
  }

  .ml-home-faq__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-faq__title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1;
  }

  .ml-home-faq__text {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .ml-home-faq__list {
    gap: 10px;
  }

  .ml-home-faq-item {
    border-radius: 22px;
  }

  .ml-home-faq-item summary {
    min-height: 64px;
    padding: 18px 52px 18px 20px;
    font-size: 0.9rem;
  }

  .ml-home-faq-item summary::after {
    right: 18px;
    width: 28px;
    height: 28px;
  }

  .ml-home-faq-item__content {
    padding: 0 20px 20px;
  }

  .ml-home-faq-item__content p {
    font-size: 0.86rem;
    line-height: 1.58;
  }
}

/* ------------------------------
   04A. UNIVERS — CARROUSEL PROPRE
   Objectif : aucune ombre externe, aucun pseudo-élément, aucun zoom
------------------------------ */

/* Transition douce entre réassurance et univers */
.ml-home-proof {
  position: relative;
  z-index: 10;
  margin-top: -54px;
  padding: 0 20px clamp(34px, 4vw, 56px);
  background:
    linear-gradient(
      180deg,
      rgba(250, 246, 240, 0) 0px,
      rgba(250, 246, 240, 0) 48px,
      var(--ml-ivory) 49px,
      var(--ml-ivory) 42%,
      var(--ml-sand) 100%
    );
}

.ml-home-proof__inner {
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(43, 37, 33, 0.06);
  box-shadow: 0 20px 54px rgba(43, 37, 33, 0.10);
}

.ml-home-universes {
  position: relative;
  margin-top: -1px;
  padding: clamp(46px, 6vw, 86px) 20px clamp(54px, 7vw, 96px);
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 120, 99, 0.07), transparent 30%),
    linear-gradient(180deg, var(--ml-sand) 0%, var(--ml-sand) 58%, var(--ml-ivory) 100%);
}

.ml-home-universes__inner {
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

.ml-home-universes__head {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.ml-home-universes__eyebrow {
  margin: 0 0 16px;
  color: var(--ml-terracotta);
  font-family: var(--ml-font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ml-home-universes__title {
  margin: 0;
  color: var(--ml-brown);
  font-family: var(--ml-font-title);
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

@media (min-width: 981px) {
  .ml-home-universes__head {
    max-width: 980px;
    margin: 0 auto clamp(34px, 4vw, 52px);
    text-align: center;
  }

  .ml-home-universes__eyebrow,
  .ml-home-universes__title {
    text-align: center;
  }

  .ml-home-universes__title {
    max-width: 980px;
    margin-inline: auto;
  }
}

/* Conteneurs : transparents, sans fond ni ombre */
.ml-home-universes-carousel,
.ml-home-universes-carousel__viewport,
.ml-home-universes-carousel__track {
  background: transparent !important;
  box-shadow: none !important;
}

.ml-home-universes-carousel {
  position: relative;
}

.ml-home-universes-carousel__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ml-home-universes-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.ml-home-universes-carousel__track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  width: max-content;
  padding: 4px 18vw 14px 0;
}

/* Carte : structure volontairement simple.
   Pas de pseudo-éléments, pas d'ombre externe permanente, pas de zoom. */
.ml-home-universe-card {
  position: relative;
  flex: 0 0 clamp(380px, 36vw, 520px);
  display: flex;
  align-items: flex-end;
  min-height: clamp(220px, 20vw, 300px);
  padding: clamp(24px, 2.8vw, 34px);
  overflow: hidden !important;
  color: var(--ml-ivory) !important;
  background-color: var(--ml-sand) !important;
  background-image:
    linear-gradient(
      180deg,
      rgba(43, 37, 33, 0.02) 0%,
      rgba(43, 37, 33, 0.16) 42%,
      rgba(43, 37, 33, 0.58) 100%
    ),
    var(--ml-bg) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(255, 251, 247, 0.22) !important;
  border-radius: clamp(26px, 2.8vw, 34px) !important;
  box-shadow: none !important;
  scroll-snap-align: start;
  text-decoration: none !important;
  transform: translateY(0) !important;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-image 240ms ease;
}

/* Neutralisation définitive des anciennes couches dupliquées */
.ml-home-universe-card::before,
.ml-home-universe-card::after,
.ml-home-universe-card:hover::before,
.ml-home-universe-card:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}

.ml-home-universe-card span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 11ch;
  color: var(--ml-ivory) !important;
  font-family: var(--ml-font-title);
  font-size: clamp(1.75rem, 2.6vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 4px 20px rgba(43, 37, 33, 0.42);
}

/* Hover classique : pas d'ombre externe pour éviter la bande rectangulaire */
.ml-home-universe-card:hover,
.ml-home-universe-card:focus-visible {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 251, 247, 0.42) !important;
  box-shadow: none !important;
  background-image:
    linear-gradient(
      180deg,
      rgba(232, 214, 194, 0.04) 0%,
      rgba(43, 37, 33, 0.14) 42%,
      rgba(43, 37, 33, 0.52) 100%
    ),
    var(--ml-bg) !important;
}

.ml-home-universe-card--highlight {
  background-image:
    linear-gradient(
      180deg,
      rgba(93, 106, 88, 0.04) 0%,
      rgba(93, 106, 88, 0.22) 42%,
      rgba(43, 52, 40, 0.62) 100%
    ),
    var(--ml-bg) !important;
}

.ml-home-universe-card--highlight:hover,
.ml-home-universe-card--highlight:focus-visible {
  background-image:
    linear-gradient(
      180deg,
      rgba(232, 214, 194, 0.04) 0%,
      rgba(93, 106, 88, 0.20) 42%,
      rgba(43, 52, 40, 0.56) 100%
    ),
    var(--ml-bg) !important;
}

.ml-home-universes-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.ml-home-universes-carousel__button {
  appearance: none;
  -webkit-appearance: none;
  display: grid !important;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0 !important;
  color: var(--ml-brown) !important;
  background: rgba(255, 251, 247, 0.96) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 28px rgba(43, 37, 33, 0.08);
  cursor: pointer;
  font-family: var(--ml-font-body);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 260ms ease,
    background-color 260ms ease,
    color 260ms ease;
}

.ml-home-universes-carousel__button:hover,
.ml-home-universes-carousel__button:focus-visible {
  color: var(--ml-ivory) !important;
  background: var(--ml-terracotta) !important;
  transform: translateY(-2px);
  outline: none;
}

.ml-home-universes__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
}

@media (max-width: 1024px) {
  .ml-home-proof {
    margin-top: -42px;
    padding-bottom: 38px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 246, 240, 0) 0px,
        rgba(250, 246, 240, 0) 36px,
        var(--ml-ivory) 37px,
        var(--ml-ivory) 45%,
        var(--ml-sand) 100%
      );
  }
}

@media (max-width: 767px) {
  .ml-home-proof {
    margin-top: -26px;
    padding: 0 16px 28px;
    background:
      linear-gradient(
        180deg,
        var(--ml-ivory) 0%,
        var(--ml-ivory) 40%,
        var(--ml-sand) 100%
      );
      padding-top:22px;
  }

  .ml-home-proof__inner {
    background: rgba(255, 251, 247, 0.96);
  }
}

@media (max-width: 640px) {
  .ml-home-universes {
    padding: 44px 18px 64px;
  }

  .ml-home-universes__head,
  .ml-home-universes__eyebrow,
  .ml-home-universes__title {
    text-align: left;
  }

  .ml-home-universes__head {
    margin-bottom: 26px;
  }

  .ml-home-universes__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-universes__title {
    font-size: clamp(2.05rem, 9.8vw, 2.85rem);
    line-height: 1;
  }

  .ml-home-universes-carousel__track {
    gap: 14px;
    padding-right: 16vw;
  }

  .ml-home-universe-card {
    flex-basis: 82vw;
    min-height: 178px;
    padding: 22px;
    border-radius: 24px !important;
  }

  .ml-home-universe-card:hover,
  .ml-home-universe-card:focus-visible {
    transform: none !important;
  }

  .ml-home-universe-card span {
    max-width: 15ch;
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .ml-home-universes-carousel__controls {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .ml-home-universes-carousel__button {
    width: 42px;
    height: 42px;
  }

  .ml-home-universes__action {
    margin-top: 24px;
  }

  .ml-home-universes__action .ml-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ml-home-universes-carousel__viewport {
    scroll-behavior: auto;
  }

  .ml-home-universe-card,
  .ml-home-universes-carousel__button {
    transition: none !important;
  }

  .ml-home-universe-card:hover,
  .ml-home-universes-carousel__button:hover {
    transform: none !important;
  }
}


/* ------------------------------
   SERVICES FORTS — 2 CARTES SPLIT MAÎTRISÉES
   Location bébé + cadeaux personnalisés
------------------------------ */

.ml-home-feature-services {
  padding: clamp(52px, 7vw, 92px) 20px;
  background: var(--ml-ivory);
}

.ml-home-feature-services__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
  width: min(100%, var(--ml-container));
  margin-inline: auto;
}

/* Carte */
.ml-home-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(260px, 0.54fr);
  min-height: clamp(440px, 33vw, 540px);
  overflow: hidden;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: clamp(28px, 3vw, 40px);
}

/* Contenu */
.ml-home-feature-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 46px);
}

.ml-home-feature-card--rental .ml-home-feature-card__content {
  background: var(--ml-sage);
}

.ml-home-feature-card--custom .ml-home-feature-card__content {
  background: var(--ml-sand);
}

.ml-home-feature-card__eyebrow {
  margin: 0 0 14px;
  font-family: var(--ml-font-body);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.ml-home-feature-card--rental .ml-home-feature-card__eyebrow,
.ml-home-feature-card--rental .ml-home-feature-card__title,
.ml-home-feature-card--rental .ml-home-feature-card__text,
.ml-home-feature-card--rental .ml-home-feature-card__points li {
  color: var(--ml-ivory);
}

.ml-home-feature-card--custom .ml-home-feature-card__eyebrow {
  color: var(--ml-terracotta);
}

.ml-home-feature-card--custom .ml-home-feature-card__title {
  color: var(--ml-brown);
}

.ml-home-feature-card--custom .ml-home-feature-card__text,
.ml-home-feature-card--custom .ml-home-feature-card__points li {
  color: var(--ml-text-soft);
}

/* Titre : réduit pour éviter l'effet compressé */
.ml-home-feature-card__title {
  margin: 0;
  font-family: var(--ml-font-title);
  font-size: clamp(1.95rem, 2.55vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.ml-home-feature-card__text {
  margin: 18px 0 0;
  font-family: var(--ml-font-body);
  font-size: 0.9rem;
  line-height: 1.58;
}

/* Points clés */
.ml-home-feature-card__points {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ml-home-feature-card__points li {
  position: relative;
  padding-left: 23px;
  font-family: var(--ml-font-body);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.42;
}

.ml-home-feature-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: 0.72;
}

/* Boutons : empêche le débordement */
.ml-home-feature-card .ml-btn {
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(26px, 3vw, 36px);
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.ml-btn--light {
  color: var(--ml-brown);
  background: var(--ml-ivory);
  border-color: var(--ml-ivory);
}

.ml-btn--light:hover {
  color: var(--ml-brown);
  background: var(--ml-sand);
  border-color: var(--ml-sand);
}

/* Image */
.ml-home-feature-card__media {
  display: block;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
  background: var(--ml-sand);
  text-decoration: none;
}

.ml-home-feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 680ms ease;
}

.ml-home-feature-card:hover .ml-home-feature-card__media img {
  transform: scale(1.018);
}

/* Grand desktop : on respire mieux */
@media (min-width: 1440px) {
  .ml-home-feature-card__content {
    padding: clamp(34px, 3vw, 52px);
  }

  .ml-home-feature-card__title {
    font-size: clamp(2.15rem, 2.4vw, 3.3rem);
  }
}

/* Laptop/tablette : on empile les cartes, mais chaque carte garde son split */
@media (max-width: 1180px) {
  .ml-home-feature-services__inner {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .ml-home-feature-card {
    grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
    min-height: 420px;
  }

  .ml-home-feature-card__title {
    font-size: clamp(2.15rem, 4vw, 3.5rem);
  }
}

/* Mobile : image en haut, texte en bas */
@media (max-width: 700px) {
  .ml-home-feature-services {
    padding: 50px 18px 66px;
  }

  .ml-home-feature-services__inner {
    gap: 18px;
  }

  .ml-home-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 28px;
  }

  .ml-home-feature-card__media {
    order: 1;
    min-height: 230px;
    aspect-ratio: 4 / 3;
  }

  .ml-home-feature-card__media img {
    min-height: 230px;
  }

  .ml-home-feature-card__content {
    order: 2;
    padding: 28px 24px 30px;
  }

  .ml-home-feature-card__eyebrow {
    margin-bottom: 14px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .ml-home-feature-card__title {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1;
  }

  .ml-home-feature-card__text {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .ml-home-feature-card__points {
    gap: 10px;
    margin-top: 22px;
  }

  .ml-home-feature-card__points li {
    padding-left: 22px;
    font-size: 0.86rem;
  }

  .ml-home-feature-card .ml-btn {
    width: 100%;
    justify-content: center;
    margin-top: 26px;
  }
}

/* -------------------------------------------------------
   HOME — Liste de naissance : visuel à droite
------------------------------------------------------- */

.ml-home-birthlist__note {
  margin: 16px 0 0;
  color: var(--ml-muted);
  font-family: var(--ml-font-body);
  font-size: 0.92rem;
  line-height: 1.65;
}

.ml-home-birthlist__visual {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(360px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 251, 247, 0.72);
  border: 1px solid rgba(43, 37, 33, 0.08);
  border-radius: clamp(28px, 3vw, 40px);
  box-shadow: 0 18px 48px rgba(43, 37, 33, 0.07);
}

.ml-home-birthlist__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

/* Placeholder temporaire */
.ml-home-birthlist__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: inherit;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(
      135deg,
      rgba(250, 246, 240, 0.92) 0%,
      rgba(233, 216, 197, 0.74) 52%,
      rgba(235, 207, 199, 0.58) 100%
    );
}

.ml-home-birthlist__placeholder::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 2vw, 28px);
  border: 1px dashed rgba(43, 37, 33, 0.2);
  border-radius: clamp(22px, 2.4vw, 32px);
  pointer-events: none;
}

.ml-home-birthlist__placeholder span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  max-width: 24ch;
  color: var(--ml-brown);
  font-family: var(--ml-font-body);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.72;
}

/* Quand la vraie image sera prête, tu remplaceras le placeholder par un img */
.ml-home-birthlist__visual--image {
  background: var(--ml-sand);
}

/* Tablette */
@media (max-width: 980px) {
  .ml-home-birthlist__visual {
    max-width: 760px;
    min-height: 420px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ml-home-birthlist__note {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .ml-home-birthlist__visual {
    min-height: 280px;
    border-radius: 28px;
  }

  .ml-home-birthlist__placeholder {
    min-height: 280px;
  }

  .ml-home-birthlist__placeholder span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

