/* ===================================================================
   Poupon & moi — Scéances massage bébé
   Palette douce crème / beige / terre de Sienne
   =================================================================== */

:root {
  --cream:        #fbf6ef;
  --cream-2:      #f6ede1;
  --sand:         #f1e3d2;
  --beige:        #e7d4bd;
  --taupe:        #b08d63;
  --brown:        #8a6a44;
  --brown-deep:   #6f5436;
  --ink:          #5b4a3a;
  --muted:        #9a876f;
  --gold:         #c5a079;
  --white:        #fffdf9;
  --shadow:       0 24px 60px -28px rgba(138, 106, 68, .35);
  --shadow-sm:    0 14px 36px -22px rgba(138, 106, 68, .4);
  --radius:       28px;
  --radius-lg:    40px;
  --serif:        "Cormorant Garamond", Georgia, serif;
  --script:       "Dancing Script", cursive;
  --sans:         "Jost", system-ui, sans-serif;
  --maxw:         1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
  background:
    radial-gradient(120% 60% at 80% -10%, #fdf4e8 0%, transparent 55%),
    radial-gradient(100% 50% at 0% 110%, #f6ead9 0%, transparent 50%),
    var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

img, svg { display: block; max-width: 100%; }

/* texture grain très subtile sur tout le fond */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* harmonisation des photos avec la palette crème (ton sépia chaud) */
.hero__photo img,
.Scéance__media img,
.media-card__img {
  filter: sepia(.32) saturate(1.08) brightness(1.03) contrast(.96) hue-rotate(-6deg);
}
/* voile chaud par-dessus chaque photo pour l'unité chromatique */
.hero__photo::after,
.Scéance__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(247,231,212,.32), rgba(176,141,99,.22));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* barre de progression de défilement */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--taupe), var(--brown));
  box-shadow: 0 1px 8px rgba(176,141,99,.5);
  transition: width .12s ease-out;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: .76rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  margin-bottom: 22px;
}
.eyebrow span { color: var(--gold); }

.script {
  font-family: var(--script);
  color: var(--gold);
  font-weight: 600;
  display: block;
  line-height: 1.1;
}
.script--lg { font-size: 2.6rem; margin: 6px 0 18px; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--brown-deep);
  line-height: 1.05;
}

.link-arrow {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brown);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: center;
  transition: gap .3s ease, color .3s ease;
}
.link-arrow:hover { gap: 20px; color: var(--taupe); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: .9rem;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 40px;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .35s ease, background .35s ease, color .35s ease;
  white-space: nowrap;
}
.btn--solid,
.btn--pill {
  background: linear-gradient(135deg, var(--taupe), var(--brown));
  color: #fff;
  box-shadow: 0 16px 30px -14px rgba(138,106,68,.7);
}
.btn--solid:hover,
.btn--pill:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(138,106,68,.8); }
.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1.4px solid var(--beige);
}
.btn--ghost:hover { background: var(--white); border-color: var(--taupe); transform: translateY(-3px); }
.btn--pill { padding: 13px 28px; }

/* ===================================================================
   Header
   =================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 239, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .4s ease, background .4s ease, padding .4s ease;
}
.header.scrolled { box-shadow: 0 12px 44px -26px rgba(138,106,68,.55); background: rgba(251,246,239,.94); }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-block: 8px;
  transition: padding .4s ease;
}
.header.scrolled .nav { padding-block: 4px; }
.header.scrolled .logo__img { height: clamp(50px, 5vw, 62px); }
.logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; transition: transform .4s cubic-bezier(.2,.8,.3,1); }
.logo:hover { transform: scale(1.04); }
.logo__img { height: clamp(58px, 6vw, 74px); width: auto; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: .92rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--taupe);
  transition: width .35s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--brown-deep); }
.nav__links a.active::after, .nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 16px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative;
  padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 44px);
  background-image:
    linear-gradient(180deg, rgba(251,246,239,.72) 0%, rgba(251,246,239,.45) 45%, rgba(251,246,239,.82) 100%),
    url("img/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 6.2vw, 5.2rem);
  line-height: 1;
  color: var(--brown-deep);
  letter-spacing: -.01em;
}
.hero__title .script { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-top: 10px; }
.hero__lead {
  max-width: 430px;
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* hero visual */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__cloud {
  position: relative;
  width: min(440px, 90%);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.hero__cloud::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fbeede 38%, transparent 72%);
  box-shadow: 0 40px 90px -40px rgba(176,141,99,.5);
  z-index: -1;
}
.hero__cloud::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px dashed rgba(197,160,121,.4);
  animation: spin 60s linear infinite;
  z-index: -1;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 48% 52% 47% 53% / 52% 48% 52% 48%;
  overflow: hidden;
  box-shadow: 0 40px 80px -34px rgba(138,106,68,.55);
  border: 6px solid rgba(255,255,255,.7);
  animation: float 8s ease-in-out infinite, morph 16s ease-in-out infinite;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes morph {
  0%,100% { border-radius: 48% 52% 47% 53% / 52% 48% 52% 48%; }
  50%     { border-radius: 53% 47% 52% 48% / 47% 53% 47% 53%; }
}

.hero__chip {
  position: absolute;
  bottom: 6%; left: -4%;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(6px);
  padding: 12px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.8);
  animation: float 7s ease-in-out infinite reverse;
}
.hero__chip strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--brown-deep); line-height: 1; }
.hero__chip small { font-size: .76rem; color: var(--muted); }
.hero__chip-dot { width: 10px; height: 10px; border-radius: 50%; background: #8bbf8b; box-shadow: 0 0 0 4px rgba(139,191,139,.25); }

.flower { position: absolute; top: 4%; left: 14%; font-size: 2.4rem; animation: sway 6s ease-in-out infinite; }
.butterfly { position: absolute; top: 8%; right: 6%; font-size: 2rem; animation: flutter 5s ease-in-out infinite; }

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(231,212,189,.4));
  border: 1px solid rgba(255,255,255,.6);
  animation: rise 8s ease-in-out infinite;
}
.bubble--a { width: 28px; height: 28px; top: 26%; left: 6%; }
.bubble--b { width: 16px; height: 16px; top: 38%; left: 0%; animation-delay: 1.4s; }
.bubble--c { width: 20px; height: 20px; top: 18%; left: 36%; animation-delay: .7s; }

.leaf { position: absolute; font-size: 2.6rem; opacity: .6; }
.leaf--1 { top: 30%; right: 4%; animation: sway 8s ease-in-out infinite; }
.leaf--2 { bottom: 6%; left: 3%; animation: sway 7s ease-in-out infinite reverse; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes sway  { 0%,100%{transform:rotate(-6deg)} 50%{transform:rotate(8deg)} }
@keyframes flutter { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(-10px,-14px) rotate(-12deg)} }
@keyframes rise  { 0%,100%{transform:translateY(0); opacity:.5} 50%{transform:translateY(-22px); opacity:1} }

/* ===================================================================
   Features strip
   =================================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  background: linear-gradient(180deg, var(--white), var(--cream-2));
  border-radius: var(--radius-lg);
  padding: 46px 30px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}
.features__card {
  text-align: center;
  padding: 14px 18px;
  position: relative;
}
.features__card:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 22%; height: 56%;
  width: 1px; background: linear-gradient(transparent, var(--beige), transparent);
}
.feat__icon {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 18px;
}
.feat__icon svg { width: 48px; height: 48px; fill: none; stroke: var(--taupe); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.features__card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--brown-deep);
  margin-bottom: 12px;
}
.features__card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ===================================================================
   Scéances
   =================================================================== */
.Scéances { padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 7vw, 80px); position: relative; }

.Scéances__head { text-align: center; max-width: 620px; margin: 0 auto clamp(36px, 5vw, 56px); }
.script--inline { display: inline; }
.Scéances__head .section-title { margin-top: 2px; }
.Scéances__lead { color: var(--muted); margin-top: 16px; }

.Scéances__grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.Scéance {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(231,212,189,.45);
  transition: transform .5s cubic-bezier(.2,.8,.3,1), box-shadow .5s ease;
}
.Scéance:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

.Scéance__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.Scéance__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.3,1);
}
.Scéance:hover .Scéance__media img { transform: scale(1.07); }
.Scéance__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(111,84,54,.4), transparent 42%);
}
.Scéance__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--brown-deep);
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(4px);
  padding: 7px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 16px -8px rgba(138,106,68,.5);
}
.Scéance__emoji {
  position: absolute;
  bottom: 14px; right: 16px;
  z-index: 2;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.Scéance__body { padding: 24px 24px 28px; }
.Scéance__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.Scéance__body p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.Scéance__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .9rem;
  color: var(--taupe);
  text-decoration: none;
  font-weight: 500;
  transition: gap .35s ease, color .35s ease;
}
.Scéance__link span { transition: transform .35s ease; }
.Scéance:hover .Scéance__link { color: var(--brown); }
.Scéance:hover .Scéance__link span { transform: translateX(5px); }

.Scéances__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: clamp(36px, 5vw, 54px);
}

/* ===================================================================
   Bienfaits
   =================================================================== */
.bienfaits { padding: clamp(40px, 6vw, 64px) 0 clamp(52px, 7vw, 84px); }
.bienfaits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bienfaits__media { position: relative; }
.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  border: 6px solid rgba(255,255,255,.7);
}
.media-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.3,1); }
.media-card:hover .media-card__img { transform: scale(1.05); }
.media-card__deco {
  position: absolute;
  top: -22px; right: -10px;
  font-size: 2.6rem;
  transform: rotate(18deg);
  animation: sway 7s ease-in-out infinite;
  z-index: 3;
}
.play {
  position: absolute; inset: 0; margin: auto;
  width: 74px; height: 74px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255,253,249,.85);
  color: var(--brown);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(111,84,54,.6);
  transition: .35s;
}
.play svg { width: 30px; height: 30px; margin-left: 4px; }
.play:hover { transform: scale(1.08); background: #fff; }
.play::after {
  content: ""; position: absolute; inset: -10px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(.9);opacity:.8} 100%{transform:scale(1.6);opacity:0} }

.bienfaits__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: var(--brown-deep);
  line-height: 1.05;
  margin-bottom: 6px;
}
.bienfaits__title .script { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: 8px; }
.bienfaits__lead { color: var(--muted); max-width: 440px; margin: 22px 0 32px; }

/* mini feats */
.mini-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(231,212,189,.7);
}
.mini-feat { display: flex; gap: 14px; align-items: flex-start; }
.mini-feat__icon {
  flex: none;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
}
.mini-feat__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--taupe); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.mini-feat h4 { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--brown-deep); }
.mini-feat p { font-size: .82rem; color: var(--muted); line-height: 1.45; }

/* ===================================================================
   Témoignages
   =================================================================== */
.temoignages { padding: clamp(48px, 7vw, 76px) 0 clamp(56px, 8vw, 96px); text-align: center; }
.quote-heart { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 30px; }
.testimonials { position: relative; min-height: 130px; max-width: 720px; margin-inline: auto; }
.testimonial {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.testimonial.active { opacity: 1; visibility: visible; transform: none; position: relative; }
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  color: var(--brown);
  line-height: 1.5;
}
.testimonial cite { display: block; margin-top: 18px; font-style: normal; color: var(--taupe); font-size: .95rem; }
.dots { display: flex; gap: 10px; justify-content: center; margin-top: 36px; }
.dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--beige); cursor: pointer; transition: .3s; padding: 0; }
.dot.active { background: var(--taupe); transform: scale(1.3); }

/* ===================================================================
   CTA / Contact
   =================================================================== */
.cta { padding: 30px 0 90px; }
.cta__inner {
  background:
    radial-gradient(120% 120% at 0% 0%, #fdf4e7, transparent 60%),
    linear-gradient(135deg, var(--sand), var(--beige));
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta__inner .script--lg { color: var(--brown); }
.cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown-deep);
}
.cta__lead { max-width: 520px; margin: 16px auto 34px; color: var(--brown); }
.cta__form {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; max-width: 640px; margin-inline: auto;
}
.cta__form input {
  flex: 1 1 200px;
  font-family: var(--sans);
  font-size: .95rem;
  padding: 15px 22px;
  border-radius: 40px;
  border: 1px solid rgba(176,141,99,.3);
  background: rgba(255,253,249,.8);
  color: var(--ink);
}
.cta__form input::placeholder { color: var(--muted); }
.cta__form input:focus { outline: none; border-color: var(--taupe); background: #fff; }
.cta__note { margin-top: 20px; color: var(--brown-deep); font-family: var(--serif); font-size: 1.2rem; }
.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta__actions .link-arrow { color: var(--brown-deep); }

/* ===================================================================
   Footer
   =================================================================== */
.footer { background: linear-gradient(180deg, var(--cream-2), #f0e2cf); padding: 60px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer__logo { height: 96px; width: auto; }
.footer__brand p { color: var(--muted); max-width: 320px; margin-top: 14px; font-size: .9rem; }
.footer__col h5 {
  font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
  color: var(--brown-deep); margin-bottom: 16px;
}
.footer__col a { display: block; color: var(--muted); text-decoration: none; font-size: .9rem; margin-bottom: 10px; transition: color .3s; }
.footer__col a:hover { color: var(--taupe); }
.footer__bottom { border-top: 1px solid rgba(176,141,99,.2); padding: 22px 28px; text-align: center; }
.footer__bottom p { font-size: .85rem; color: var(--muted); }
.footer__bottom span { color: var(--gold); }

/* ===================================================================
   Reveal animation
   =================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
   =================================================================== */

/* Le bouton « Réserver » du menu mobile : caché sur desktop */
.nav__cta { display: none; }

/* ---------- Large tablets / petits portables (≤ 1100px) ---------- */
@media (max-width: 1100px) {
  .nav__links { gap: 22px; }
  .Scéances__grid2 { gap: 20px; }
  .bienfaits__grid { gap: 40px; }
}

/* ---------- Tablette (≤ 980px) : menu plein écran ---------- */
@media (max-width: 980px) {
  .nav { gap: 16px; }

  /* le backdrop-filter du header capturerait le menu fixed (containing block) :
     on le retire sur mobile pour que l'overlay couvre tout le viewport */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  body.menu-open .header { background: transparent; box-shadow: none; }

  .nav__toggle { display: flex; z-index: 210; }
  .logo { position: relative; z-index: 210; }
  .nav__right .btn--pill { display: none; }
  body.menu-open { overflow: hidden; }

  /* overlay plein écran */
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 205;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 3.5vh, 30px);
    background:
      radial-gradient(120% 80% at 80% 0%, #fdf4e7, transparent 60%),
      radial-gradient(100% 70% at 0% 100%, #f5e6d2, transparent 55%),
      var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.3,1), visibility .4s;
  }
  .nav__links.open { opacity: 1; visibility: visible; transform: none; }

  .nav__links a {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    color: var(--brown-deep);
    opacity: 0;
    transform: translateY(18px);
  }
  .nav__links a::after { display: none; }
  .nav__links.open a {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.3,1);
  }
  /* apparition en cascade */
  .nav__links.open a:nth-child(1) { transition-delay: .10s; }
  .nav__links.open a:nth-child(2) { transition-delay: .16s; }
  .nav__links.open a:nth-child(3) { transition-delay: .22s; }
  .nav__links.open a:nth-child(4) { transition-delay: .28s; }
  .nav__links.open a:nth-child(5) { transition-delay: .34s; }
  .nav__links.open a:nth-child(6) { transition-delay: .40s; }

  .nav__cta {
    display: inline-flex;
    margin-top: 14px;
    font-family: var(--sans) !important;
    font-size: .95rem !important;
    color: #fff !important;
  }
  .nav__links.open .nav__cta { transition-delay: .46s; }

  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__cloud { width: min(360px, 78%); }
  .leaf { display: none; }

  .features { grid-template-columns: repeat(3, 1fr); gap: 8px 14px; }
  .features__card:nth-child(3)::after { display: none; }

  .Scéances__grid2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .Scéances__grid2 .Scéance:last-child { grid-column: 1 / -1; }
  .Scéances__grid2 .Scéance:last-child { display: grid; grid-template-columns: 1fr 1fr; }
  .Scéances__grid2 .Scéance:last-child .Scéance__media { aspect-ratio: auto; height: 100%; min-height: 240px; }

  .bienfaits__grid { grid-template-columns: 1fr; gap: 36px; }
  .bienfaits__text { text-align: center; }
  .bienfaits__lead { margin-inline: auto; }
  .media-card { max-width: 540px; margin-inline: auto; }
  .mini-feats { grid-template-columns: repeat(2, 1fr); gap: 22px 30px; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__brand p { margin-inline: auto; }
  .footer__logo { height: 88px; }
}

/* ---------- Grand mobile (≤ 680px) ---------- */
@media (max-width: 680px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 34px 20px; }
  .features__card::after { display: none; }
  .features__card { padding: 16px 10px; }
}

/* ---------- Mobile (≤ 540px) ---------- */
@media (max-width: 540px) {
  .container { padding-inline: 18px; }

  .hero { padding-top: 28px; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero__chip { left: 0; bottom: 2%; padding: 10px 16px; }
  .hero__chip strong { font-size: 1.05rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .features { grid-template-columns: 1fr; }
  .features__card { display: flex; align-items: center; text-align: left; gap: 16px; padding: 12px 6px; }
  .features__card:not(:last-child) { border-bottom: 1px solid rgba(231,212,189,.5); padding-bottom: 18px; }
  .feat__icon { margin: 0; flex: none; width: 52px; height: 52px; }
  .feat__icon svg { width: 40px; height: 40px; }
  .features__card h3 br { display: none; }

  .Scéances__grid2 { grid-template-columns: 1fr; gap: 18px; }
  .Scéances__grid2 .Scéance:last-child { display: block; }
  .Scéances__grid2 .Scéance:last-child .Scéance__media { aspect-ratio: 4/5; min-height: 0; }
  .Scéances__cta { flex-direction: column; gap: 16px; }
  .mini-feats { grid-template-columns: 1fr; gap: 18px; margin-top: 44px; padding-top: 34px; }
  .mini-feat { text-align: left; }

  .cta__inner { padding: 40px 22px; }
  .cta__form { flex-direction: column; }
  .cta__form input, .cta__form .btn { width: 100%; }
  .cta__form .btn { justify-content: center; }
  .script--lg { font-size: 2rem; }
}

/* ---------- Très petit mobile (≤ 380px) ---------- */
@media (max-width: 380px) {
  .nav__links { width: 88vw; }
  .hero__title { font-size: clamp(2.2rem, 11vw, 2.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
