/* =========================================================
   HANNAHA — Soins énergétiques · Feuille de style partagée
   Esthétique : éthérée, apaisante, céleste & terrienne
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  /* Palette — sable chaud, prune profonde, rose terreux, or */
  --cream:        #F6EFE5;
  --cream-2:      #EFE4D4;
  --ivory:        #FBF7F0;
  --ink:          #322334;
  --plum:         #3E2A40;
  --plum-soft:    #5A4560;
  --rose:         #BE8070;
  --rose-deep:    #C89F9F;
  --rose-soft:    #E4BBAA;
  --gold:         #C3A164;
  --gold-soft:    #DEC79A;
  --sage:         #9AA589;
  --lavender:     #B3A4C6;
  --mist:         #D9CFE0;
  --line:         rgba(62,42,64,.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Mulish', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 26px;
  --radius-sm: 16px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow-soft: 0 24px 60px -28px rgba(62,42,64,.34);
  --shadow-card: 0 30px 70px -40px rgba(62,42,64,.45);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Texture grain & ambiance ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Orbes flottants en arrière-plan */
.aura {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aura span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  animation: drift 26s var(--ease) infinite alternate;
}
.aura span:nth-child(1){ width: 46vw; height: 46vw; left: -12vw; top: -10vw;
  background: radial-gradient(circle at 30% 30%, var(--rose-soft), transparent 70%); }
.aura span:nth-child(2){ width: 40vw; height: 40vw; right: -10vw; top: 18vh;
  background: radial-gradient(circle at 50% 50%, var(--lavender), transparent 70%); animation-delay: -8s; }
.aura span:nth-child(3){ width: 38vw; height: 38vw; left: 20vw; bottom: -14vw;
  background: radial-gradient(circle at 50% 50%, var(--gold-soft), transparent 70%); animation-delay: -14s; }

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(4vw,5vh,0) scale(1.15); }
}

main, footer, .nav { position: relative; z-index: 1; }

/* ---------- Conteneur ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typo ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: -.01em; color: var(--plum); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before { content:""; width: 26px; height: 1px; background: var(--rose); display:inline-block; }
em, .it { font-style: italic; }

a { color: inherit; text-decoration: none; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body); font-weight: 600;
  font-size: .92rem; letter-spacing: .02em;
  padding: 16px 30px; border-radius: 100px;
  cursor: pointer; border: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--plum), var(--rose-deep));
  color: var(--ivory);
  box-shadow: 0 18px 40px -18px rgba(62,42,64,.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -18px rgba(62,42,64,.8); }
.btn-ghost {
  background: transparent; color: var(--plum);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.5); transform: translateY(-3px); }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== NAVBAR ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
  padding: 22px 0;
}
.nav.scrolled {
  background: rgba(246,239,229,.72);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), 0 14px 40px -30px rgba(62,42,64,.5);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name { font-family: var(--font-display); font-size: 1.5rem; color: var(--plum); letter-spacing: .02em; }
.brand .tag { font-size: .58rem; text-transform: uppercase; letter-spacing: .34em; color: var(--rose-deep); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 16px; border-radius: 100px; font-size: .9rem; font-weight: 500;
  color: var(--plum-soft); transition: color .3s, background .3s; position: relative;
}
.nav-links a:hover { color: var(--plum); }
.nav-links a.active { color: var(--plum); }
.nav-links a.active::after {
  content:""; position:absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--rose);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--plum); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(246,239,229,.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; color: var(--plum); padding: 12px; }
.mobile-menu .btn {
  margin-top: 18px;
  width: auto;
  padding: 12px 26px;
  font-size: .88rem;
}

/* ========== HERO ========== */
.hero { padding: 200px 0 110px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 300; }
.hero h1 .accent { font-style: italic; color: var(--rose-deep); }
.hero .lead { font-size: 1.18rem; color: var(--plum-soft); max-width: 30rem; margin: 26px 0 18px; }
.hero .sub { font-size: 1rem; color: var(--ink); max-width: 30rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visuel hero — médaillon céleste en SVG/CSS */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: 420px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.orb {
  width: 86%; aspect-ratio: 1/1; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.7), transparent 42%),
    conic-gradient(from 200deg, var(--rose-soft), var(--lavender), var(--gold-soft), var(--rose-soft));
  box-shadow: var(--shadow-soft), inset 0 0 80px rgba(255,255,255,.4);
  position: relative; animation: spin 50s linear infinite;
}
.orb::after {
  content:""; position:absolute; inset: 14%; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(251,247,240,.92), rgba(246,239,229,.6));
  box-shadow: inset 0 8px 30px rgba(62,42,64,.12);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-visual .ring {
  position: absolute; border: 1px solid var(--line); border-radius: 50%;
}
.hero-visual .ring.r1 { inset: -3%; animation: spin 80s linear infinite reverse; border-style: dashed; }
.hero-visual .ring.r2 { inset: 8%; }
.hero-visual .sigil {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
}
.hero-visual .sigil svg { width: 46%; opacity: .9; }

/* ========== SECTIONS GÉNÉRIQUES ========== */
section { padding: 92px 0; position: relative; }
.section-head { max-width: 44rem; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 400; margin: 18px 0 16px; }
.section-head p { color: var(--plum-soft); font-size: 1.08rem; }

/* Bandeau alterné */
.band { background: linear-gradient(180deg, transparent, rgba(255,255,255,.45), transparent); }
.band-plum {
  background: linear-gradient(150deg, var(--plum), var(--ink));
  color: var(--ivory); border-radius: 40px; margin: 40px 0;
}
.band-plum h2, .band-plum h3 { color: var(--ivory); }
.band-plum .eyebrow { color: var(--gold-soft); }
.band-plum .eyebrow::before { background: var(--gold); }
.band-plum p { color: rgba(251,247,240,.82); }

/* ========== CARTES « résonance » ========== */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: rgba(251,247,240,.66);
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 34px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.card .num {
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem;
  color: var(--rose-deep); display: block; margin-bottom: 14px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--plum-soft); font-size: 1rem; }

/* Liste à puces ornées */
.dot-list { list-style: none; display: grid; gap: 14px; }
.dot-list li { position: relative; padding-left: 30px; color: var(--ink); }
.dot-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: .95rem;
}

/* ========== PRESTATIONS (cartes tarifs) ========== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing.has-discovery { grid-template-columns: repeat(3, 1fr); }
.price-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 32px;
  box-shadow: var(--shadow-soft); position: relative;
  display: flex; flex-direction: column; height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.price-card.featured {
  background: linear-gradient(160deg, var(--plum), var(--ink));
  color: var(--ivory); border: none;
}
.price-card.featured h3, .price-card.featured .price { color: var(--ivory); }
.price-card.featured .dot-list li { color: rgba(251,247,240,.9); }
.price-card.featured p { color: rgba(251,247,240,.78); }
.price-card .flag {
  position: absolute; top: 22px; right: 22px;
  font-size: .66rem; text-transform: uppercase; letter-spacing: .22em;
  background: var(--gold); color: var(--ink);
  padding: 5px 12px; border-radius: 100px; font-weight: 700;
}
.price-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-display); font-size: 2.6rem; color: var(--rose-deep); margin: 6px 0 4px; }
.price-card .price small { font-size: .9rem; color: inherit; opacity: .7; font-family: var(--font-body); }
.price-card .desc { font-size: .98rem; color: var(--plum-soft); margin-bottom: 20px; font-style: italic; }
.price-card .dot-list { margin-bottom: 26px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.price-card.featured .btn-primary { background: var(--ivory); color: var(--plum); }
.price-card .meta { font-size: .85rem; color: var(--plum-soft); margin-top: 16px; line-height: 1.6; }
.price-card.featured .meta { color: rgba(251,247,240,.7); }

/* Carte Appel découverte gratuit — style distinct, doux et lumineux */
.pricing-discovery-wrap { margin-top: 24px; }
.price-card.discovery {
  background: linear-gradient(160deg, rgba(251,247,240,.6), rgba(251,247,240,.92));
  border: 1px dashed var(--rose-deep);
  max-width: 560px;
  margin: 0 auto;
}
.price-card.discovery .flag {
  background: transparent;
  color: var(--rose-deep);
  border: 1px solid var(--rose-deep);
  font-weight: 600;
}
.price-card.discovery .price {
  color: var(--rose-deep);
  font-size: 2.1rem;
}
.price-card.discovery h3 { color: var(--plum); }

/* Déroulé en 3 temps */
.steps { display: grid; gap: 18px; margin: 18px 0 4px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 1rem; background: rgba(190,128,112,.16); color: var(--rose-deep);
}
.price-card.featured .step .n { background: rgba(255,255,255,.16); color: var(--gold-soft); }
.step .t { font-size: .95rem; }

/* ========== FAQ accordéon ========== */
.faq-list { display: grid; gap: 14px; max-width: 50rem; margin: 0 auto; }
.faq-item {
  background: rgba(251,247,240,.7); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .4s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 26px; font-family: var(--font-display); font-size: 1.18rem; color: var(--plum);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after {
  content:""; position: absolute; background: var(--rose); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%); transition: .4s var(--ease);
}
.faq-q .pm::before { width: 16px; height: 2px; }
.faq-q .pm::after  { width: 2px; height: 16px; }
.faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 26px 26px; color: var(--plum-soft); }
.faq-a-inner ul { margin: 10px 0 0 18px; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info .line { display: flex; gap: 16px; align-items: center; }
.contact-info .ic {
  flex: none; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(190,128,112,.14); color: var(--rose-deep);
}
.contact-info .ic svg { width: 22px; height: 22px; }
.contact-info .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--rose-deep); }
.contact-info .v { font-size: 1.1rem; color: var(--plum); }
.form-card {
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--plum-soft); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; transition: border .3s, box-shadow .3s; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(190,128,112,.12);
}

/* ========== Notes / avertissements ========== */
.notice {
  border-left: 3px solid var(--gold); background: rgba(195,161,100,.09);
  padding: 18px 24px; border-radius: 0 14px 14px 0; color: var(--plum-soft);
  font-size: .98rem; margin: 14px 0;
}
.notice strong { color: var(--plum); }

/* ========== Signature / about ========== */
.signature { text-align: center; max-width: 40rem; margin: 0 auto; }
.signature .mark {
  font-family: var(--font-display); font-style: italic; font-size: 2.4rem;
  color: var(--rose-deep); margin-top: 12px;
}

/* ========== CTA final ========== */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300; }
.cta-final h2 em { color: var(--rose-deep); }

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(160deg, var(--plum), var(--ink));
  color: rgba(251,247,240,.82); padding: 76px 0 32px; margin-top: 60px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
footer h4 { color: var(--ivory); font-size: 1.4rem; margin-bottom: 10px; }
footer .tag { font-size: .62rem; text-transform: uppercase; letter-spacing: .3em; color: var(--gold-soft); }
footer a { color: rgba(251,247,240,.82); transition: color .3s; }
footer a:hover { color: var(--gold-soft); }
.foot-col .h { font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold-soft); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-bottom {
  margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(251,247,240,.16);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(251,247,240,.6);
}
.social-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  border: 1px solid rgba(251,247,240,.24); border-radius: 100px; margin-top: 14px;
  transition: background .3s, transform .3s;
}
.social-pill:hover { background: rgba(251,247,240,.1); transform: translateY(-2px); }

/* ========== Animations au défilement ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Barre de progression de lecture */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--rose), var(--gold)); transition: width .1s linear; }

/* ========== band-plum variante home ========== */
.band-plum-home {
  padding: 70px 8%;
}

/* ========== Section "Si cela résonne" ========== */
.resonance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ========== Grilles pages internes ========== */

/* Approche : "Vous êtes au bon endroit si" + "Qui est Hannaha" */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col-grid-asym {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

/* Prestations : "Déroulé du soin complet" */
.deroulé-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* band-plum variante approche */
.band-plum-approche {
  padding: 64px 8%;
}
.band-plum-approche .cards {
  grid-template-columns: repeat(3, 1fr);
}

/* band-plum variante prestations */
.band-plum-prestations {
  padding: 60px 8%;
}
.band-plum-prestations .cards {
  grid-template-columns: repeat(2, 1fr);
  max-width: 48rem;
  margin: 0 auto;
}

/* ========== Photo portrait Béatrice ========== */
.beatrice-photo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  border: 2px solid rgba(164,102,90,.35);
  box-shadow: 0 6px 20px -6px rgba(62,42,64,.25);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ===================== MOBILE ===================== */

@media (max-width: 720px) {

  html,
  body {
    overflow-x: hidden !important;
    font-size: 16px;
    width: 100%;
  }

  * {
    box-sizing: border-box;
  }

  .wrap {
    padding: 0 18px;
  }

  section {
    overflow-x: hidden;
    padding: 56px 0;
  }

  /* ===== NAVBAR ===== */

  .nav-links {
    display: none !important;
  }

  .nav-cta .btn {
    display: none !important;
  }

  .nav-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
  }

  .brand {
    text-align: left !important;
  }

  .nav-cta {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin-left: auto !important;
  }

  .burger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    margin-left: auto !important;
    z-index: 9999;
  }

  /* ===== HERO ===== */

  .hero {
    padding: 110px 0 60px;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    width: 100% !important;
    gap: 32px;
  }

  .hero h1 {
    text-align: center;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero .lead,
  .hero .sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .hero-visual {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-visual img.hero-logo {
    width: 170px !important;
    max-width: 75% !important;
    height: auto !important;
  }

  /* ===== SECTIONS ===== */

  .section-head {
    margin-bottom: 36px;
    text-align: center;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* ===== GRILLES → COLONNES ===== */

  .resonance-grid,
  .two-col-grid,
  .two-col-grid-asym,
  .deroulé-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .band-plum-approche .cards,
  .band-plum-prestations .cards {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .band-plum-approche,
  .band-plum-prestations {
    padding: 48px 22px !important;
  }

  .pricing,
  .cards,
  .contact-grid,
  .approche-grid,
  .section-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 18px;
  }

  .pricing > *,
  .cards > *,
  .contact-grid > *,
  .approche-grid > *,
  .section-grid > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ===== CARTES ===== */

  .card {
    padding: 26px 22px;
    text-align: left;
  }

  .card h3,
  .card p {
    text-align: left;
  }

  /* ===== TARIFS ===== */

  .price-card {
    padding: 28px 24px;
  }

  .price-card h3 {
    font-size: 1.45rem;
  }

  .price-card .price {
    font-size: 2.1rem;
  }

  /* ===== LISTES ORNÉES ===== */

  .dot-list {
    text-align: left;
  }

  .dot-list li {
    text-align: left;
  }

  /* ===== STEPS ===== */

  .step {
    text-align: left;
    align-items: flex-start;
  }

  .step .t {
    text-align: left;
  }

  /* ===== FAQ ===== */

  .faq-q {
    font-size: 1rem;
    padding: 18px 20px;
    text-align: left;
  }

  .faq-a-inner {
    padding: 0 20px 20px;
    text-align: left;
  }

  /* ===== CONTACT ===== */

  .contact-grid {
    gap: 32px;
  }

  .form-card {
    padding: 24px 18px;
  }

  .contact-info .line {
    text-align: left;
  }

  /* ===== BOUTONS ===== */

  .btn:not(.mobile-menu .btn) {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 160px;
  }

  /* ===== BLOCS COULEURS ===== */

  .band-plum {
    border-radius: 24px !important;
    padding: 48px 22px;
    margin: 30px 0;
  }

  .band-plum-home {
    padding: 48px 22px !important;
  }

  /* ===== FOOTER ===== */

  .foot-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 36px;
    width: 100%;
  }

  .foot-col {
    text-align: left;
  }

  footer {
    padding: 50px 0 28px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 36px;
  }

  /* ===== IMAGES ===== */

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

  /* ===== PHOTO BÉATRICE ===== */
  .beatrice-photo {
    width: 72px;
    height: 72px;
  }

  /* ===== TEXTES GLOBAUX ===== */

  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: normal;
  }

  p, li {
    overflow-wrap: break-word;
  }

  /* ===== EYEBROW ===== */
  .eyebrow {
    font-size: .68rem;
    letter-spacing: .22em;
    flex-wrap: wrap;
  }

  /* ===== CTA FINAL ===== */
  .cta-final .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-final .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* ===== SECTION HEAD CENTRAGE ===== */
  .section-head h2,
  .section-head p {
    text-align: center;
  }

}