*{margin:0;padding:0;box-sizing:border-box}
:root{
  /* Palette premium douce : beige, ivoire, noir doux */
  --marine:#23201d;
  --marine-light:#3a342f;
  --almond:#b49a82;
  --almond-light:#d9c7b4;
  --almond-soft:rgba(180,154,130,0.14);
  --beige:#f6f0e8;
  --beige-dark:#e8e0d6;
  --beige-soft:#fbf7f2;
  --bg:var(--beige);
  --card:#ffffff;
  --text:#262320;
  --muted:#655f58;
  --border:#e9ddd1;
  --accent:var(--marine);
  --soft:var(--beige-soft);
  --gradient-1:linear-gradient(135deg, var(--beige) 0%, var(--beige-soft) 50%, var(--beige) 100%);
  --gradient-2:linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(251,247,242,0.98) 100%);
  --shadow-sm:0 6px 20px rgba(54,43,33,0.06);
  --shadow-md:0 10px 28px rgba(54,43,33,0.1);
  --shadow-lg:0 18px 45px rgba(54,43,33,0.16);
}
html{
  scroll-behavior:smooth;
  overflow-x:clip;
}
html,body{height:100%}
body{
  overflow-x:clip;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,Roboto,Arial,sans-serif;
  background:var(--bg);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(251,247,242,0.95) 0%, rgba(251,247,242,0) 46%),
    radial-gradient(circle at 88% 10%, rgba(180,154,130,0.16) 0%, rgba(180,154,130,0) 44%),
    linear-gradient(135deg, #f6f0e8 0%, #fbf7f2 50%, #ffffff 100%);
  background-size:auto, auto, cover;
  background-position:center, center, center;
  background-attachment:fixed;
  background-blend-mode:normal;
  color:var(--text);
  line-height:1.65;
  position:relative;
}
h1,h2,h3{
  font-family:'Playfair Display', Georgia, serif;
  letter-spacing:-0.5px;
}
p,li,a,button,input,textarea,select{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,Roboto,Arial,sans-serif;
}
a,button,.btn,.card,.box,.pill,.nav a,.whatsapp-float,.scroll-top-btn{
  transition:all 0.25s ease;
}
body::before{
  content:'';
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background-image:repeating-linear-gradient(45deg, rgba(58,52,47,0.012) 0 1px, transparent 1px 8px);
  opacity:0.65;
  pointer-events:none;
  z-index:0;
}
a{color:inherit}
.copy-locked,
.copy-locked body{
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
}
.copy-locked input,
.copy-locked textarea,
.copy-locked [contenteditable="true"],
.copy-locked [contenteditable=""]{
  -webkit-user-select:text;
  -moz-user-select:text;
  -ms-user-select:text;
  user-select:text;
}
.container{max-width:1150px;margin:0 auto;padding:0 20px;position:relative;z-index:1}
.header{
  background:rgba(255,255,255,0.74);
  border-bottom:1px solid rgba(217,199,180,0.55);
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 8px 24px rgba(35,32,29,0.06);
}
.header .bar{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;gap:16px;
}
.brand{
  display:flex;align-items:center;gap:10px;text-decoration:none;
}
.brand img{
  width:40px;height:40px;border-radius:10px;
  object-fit:cover;
  background:transparent;
  border:none;
  box-shadow:var(--shadow-sm);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.brand:hover img{transform:scale(1.05);box-shadow:var(--shadow-md)}
.brand .name{font-weight:650;letter-spacing:-.2px}
.nav{display:flex;gap:8px;flex-wrap:nowrap;align-items:center}
.nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:.85rem;
  font-weight:600;
  color:var(--marine);
  padding:8px 10px;
  border-radius:999px;
  background:transparent;
  border:none;
  box-shadow:inset 0 0 0 1px transparent;
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space:nowrap;
  overflow:hidden;
  z-index:1;
}
.nav a:hover{
  background:rgba(255,255,255,0.72);
  color:var(--marine);
  transform:translateY(-1px);
  box-shadow:inset 0 0 0 1px rgba(217,199,180,0.7), 0 8px 20px rgba(35,32,29,0.08);
}
.nav a:active{
  transform:none;
  box-shadow:none;
}
.menu-btn{
  display:none;border:1px solid var(--border);
  background:var(--card);border-radius:999px;
  padding:10px 14px;font-size:.9rem;cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:all 0.2s ease;
}
.menu-btn:hover{
  box-shadow:var(--shadow-md);
  transform:translateY(-1px);
}
.mobile-nav{
  display:none;
  border-top:1px solid var(--border);
  background:rgba(246,240,232,.98);
}
.mobile-nav .links{
  display:flex;flex-direction:column;gap:10px;
  padding:14px 20px 18px;
}
.mobile-nav a{
  text-decoration:none;
  padding:12px 16px;border-radius:14px;
  background:var(--card);border:1px solid var(--border);
  font-size:.95rem;color:rgba(0,0,0,.8);
  transition:background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
.mobile-nav a:hover{
  background:var(--soft);
  color:var(--marine);
  transform:translateX(6px);
  box-shadow:0 2px 8px rgba(26,54,93,0.08);
}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.85rem;color:var(--marine-light);
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(217,199,180,0.88);
  padding:8px 12px;border-radius:999px;
  box-shadow:var(--shadow-sm);
  backdrop-filter:blur(10px);
  transition:all 0.2s ease;
}
.pill:hover{
  background:rgba(251,247,242,0.95);
  box-shadow:var(--shadow-md);
  transform:translateY(-1px);
}
.hero{
  padding:94px 0 62px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 80% 24%, rgba(180,154,130,0.14) 0%, rgba(180,154,130,0) 42%),
    radial-gradient(circle at 50% -10%, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0) 54%),
    radial-gradient(circle at 18% 86%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 44%),
    linear-gradient(145deg, #f9f4ed 0%, #fdfaf6 52%, #ffffff 100%);
  border-bottom:1px solid rgba(217,199,180,0.46);
}
.hero::before{
  content:'';
  position:absolute;
  top:-40px;right:-30px;
  width:420px;height:420px;
  background:radial-gradient(circle, rgba(180,154,130,0.24) 0%, rgba(180,154,130,0.12) 42%, rgba(180,154,130,0) 72%);
  border-radius:50%;
  z-index:-1;
  filter:blur(16px);
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-120px;left:-120px;
  width:360px;height:360px;
  background:radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(251,247,242,0.12) 54%, rgba(251,247,242,0) 100%);
  border-radius:50%;
  z-index:-1;
  opacity:0.95;
  filter:blur(1px);
}
.hero-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
  gap:clamp(20px, 2.5vw, 36px);
}
.hero-content{
  flex:0 1 620px;
  max-width:min(620px, 100%);
  min-width:0;
}
.hero-image-main{
  position:relative;
  flex:0 0 auto;
  width:min(360px, 100%);
  height:auto;
  aspect-ratio:5/6;
  max-height:min(520px, 70vh);
  object-fit:cover;
  object-position:center center;
  background:var(--bg);
  border-radius:30px;
  opacity:0.88;
  filter:brightness(1.04) saturate(0.95);
  box-shadow:0 20px 60px rgba(0,0,0,0.18);
}
.hero .subtitle,
.hero .seo-text{
  max-width:100%;
}
@keyframes float{
  0%,100%{transform:translate(0,0) scale(1) rotate(0deg);}
  50%{transform:translate(30px,-30px) scale(1.1) rotate(5deg);}
}
.hero h1{
  margin-top:18px;
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(2.25rem, 3.2vw, 3.35rem);
  letter-spacing:-0.5px;
  line-height:1.12;
  color:var(--marine);
  max-width:28ch;
  text-wrap:balance;
  font-weight:700;
  text-shadow:0 8px 24px rgba(35,32,29,0.08);
}
.subtitle strong{
  color:var(--accent);
  font-weight:700;
}
.subtitle{margin-top:18px;max-width:760px;color:rgba(38,35,32,.82)}
.cta-row{margin-top:26px;display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;border-radius:999px;
  text-decoration:none;font-size:.95rem;font-weight:600;
  border:1px solid var(--border);
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  z-index:1;
  cursor:pointer;
}
.btn::before{
  content:'';
  position:absolute;
  top:50%;left:50%;
  width:0;height:0;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  transform:translate(-50%,-50%);
  transition:width 0.6s ease, height 0.6s ease;
  pointer-events:none;
  z-index:0;
}
.btn:hover::before{
  width:300px;height:300px;
}
.btn.primary{
  background:#1f1b18;
  color:#fff;
  border-color:transparent;
  box-shadow:0 10px 22px rgba(35,32,29,0.18);
}
.btn.primary:hover{
  background:#312b26;
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(35,32,29,0.24);
}
.btn.secondary{
  background:#fbf7f2;
  color:var(--marine);
  border-color:var(--almond-light);
  box-shadow:var(--shadow-sm);
}
.btn.secondary:hover{
  background:rgba(255,255,255,0.95);
  color:var(--marine);
  transform:translateY(-1px);
  box-shadow:var(--shadow-md);
}
.section{
  padding:74px 0;
  position:relative;
  scroll-margin-top:88px;
  background:#ffffff;
}
main:not(.page) > .section:nth-of-type(3n+1){background:#ffffff}
main:not(.page) > .section:nth-of-type(3n+2){background:#fbf7f2}
main:not(.page) > .section:nth-of-type(3n){background:#f6f0e8}
/* Pages prestations : supprimer uniquement les <section> blanches à angles droits (pas les .card / .box) */
.page > .section:not(.section-bg),
.page > section.section:not(.section-bg),
.page .container > .section:not(.section-bg),
.page .container > section.section:not(.section-bg),
main.page > .section:not(.section-bg),
main.page > section.section:not(.section-bg){
  margin:56px 0 0;
  padding:0;
  width:100%;
  background:transparent;
}
.page > .section.section-bg,
.page > section.section.section-bg,
.page .container > .section.section-bg,
.page .container > section.section.section-bg,
main.page > .section.section-bg,
main.page > section.section.section-bg{
  background:#fbf7f2;
  margin:56px -20px 0;
  padding:48px 20px 56px;
  width:calc(100% + 40px);
  border-radius:22px;
}
.page .container > .grid-2 + .section.section-bg,
.page .container > .grid-3 + .section.section-bg,
.page .container > .grid-4 + .section.section-bg,
.page .container > .box + .section.section-bg,
.page .container > .cta-row + .section.section-bg,
.page .container > .faq + .section.section-bg,
.page .container > hr.sep + .section.section-bg,
.page .container > hr.sep + .section.zones-intervention-section,
.page .container > .faq + .section.zones-intervention-section{
  margin-top:64px;
}
.page > .section.section-bg + .section.section-bg,
.page > section.section.section-bg + section.section.section-bg,
.page .container > .section.section-bg + .section.section-bg,
.page .container > section.section.section-bg + section.section.section-bg,
main.page > .section.section-bg + .section.section-bg,
main.page > section.section.section-bg + section.section.section-bg{
  margin-top:64px;
}
.page .container > .grid-2,
.page .container > .grid-3,
.page .container > .grid-4{
  margin-top:48px;
  margin-bottom:56px;
}
.page .container > .grid-2:first-child,
.page .container > .grid-3:first-child,
.page .container > hr.sep + .grid-2,
.page .container > hr.sep + .grid-3{
  margin-top:0;
}
.page .container > .grid-2:last-child,
.page .container > .grid-3:last-child,
.page .container > .grid-4:last-child{
  margin-bottom:0;
}
.page hr.sep{
  margin:40px 0;
}
.page .section.section-bg .section-title{
  margin-bottom:40px;
}
.page .section.section-bg p + .section-title,
.page .section.section-bg p + h2.section-title{
  margin-top:48px;
}
.page .section.section-bg .section-title + .section-title{
  margin-top:48px;
}
.page .section.section-bg .section-title + .grid-2,
.page .section.section-bg .section-title + .grid-3,
.page .section.section-bg .section-title + .grid-4{
  margin-top:48px;
}
.page .section.section-bg .grid-2,
.page .section.section-bg .grid-3,
.page .section.section-bg .grid-4{
  gap:clamp(22px, 3vw, 32px);
}
.page .section.section-bg .grid-3 .card,
.page .section.section-bg .grid-2 .card,
.page .section.section-bg .grid-4 .card{
  margin-bottom:0;
}
.page .section.section-bg .grid-2 + .box,
.page .section.section-bg .grid-3 + .box,
.page .section.section-bg .grid-4 + .box{
  margin-top:40px;
}
.page .section.section-bg + .box,
.page .section.section-bg + .grid-2,
.page .section.section-bg + .grid-3{
  margin-top:56px;
}
.page .container > .section:not(.section-bg) + .section.section-bg,
.page .container > section.section:not(.section-bg) + section.section.section-bg,
main.page > .section:not(.section-bg) + .section.section-bg,
main.page > section.section:not(.section-bg) + section.section.section-bg{
  margin-top:64px;
}
.page .section:not(.section-bg) .section-title{
  margin-bottom:32px;
}
.page .grid-2 + .note,
.page .grid-3 + .note,
.page .grid-4 + .note{
  margin-top:48px;
  margin-left:auto;
  margin-right:auto;
  max-width:800px;
  padding:24px 28px;
  border-radius:22px;
  border:1px solid var(--border);
  background:linear-gradient(165deg, rgba(255,255,255,0.95), rgba(251,247,242,0.92));
  box-shadow:var(--shadow-md);
}
.page .container > .section .container,
.page .container > section.section .container{
  padding:0;
  max-width:1150px;
}
.page .container > .section.section-bg > .box.box-white-frame,
.page .container > .section.section-bg .box.box-white-frame,
.zones-intervention-section > .box.box-white-frame,
.zones-intervention-section .zones-intervention-box,
main > .section.zones-intervention-section .container > .box.box-white-frame,
main > .section.zones-intervention-section .zones-intervention-box{
  width:100%;
  max-width:none!important;
  margin-left:0!important;
  margin-right:0!important;
  box-sizing:border-box;
}
.zones-intervention-section > .section-title{
  margin-bottom:clamp(20px,3vw,28px);
}
.zones-intervention-box,
.zones-intervention-section > .box.box-white-frame{
  text-align:center;
  padding:clamp(24px,3vw,32px) clamp(18px,4vw,32px);
}
.zones-intervention-section .zones-intervention-box p,
.zones-intervention-section > .box.box-white-frame p{
  max-width:none;
}
main > .section.zones-intervention-section{
  background:#fbf7f2;
  padding:clamp(40px,6vw,56px) 20px;
}
main > .section.zones-intervention-section .container{
  padding:0 20px;
  max-width:1150px;
}
.section-title{
  text-align:center;
  margin-bottom:12px;
  font-size:clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing:-.5px;
  line-height:1.2;
  color:var(--text);
  font-family:'Playfair Display', Georgia, serif;
  font-weight:600;
}
.section-desc{
  font-size:1.08rem;
  color:rgba(0,0,0,.75);
  max-width:720px;
  margin:0 auto 40px;
  line-height:1.7;
  text-align:center;
}
.prose{
  max-width:70ch;
  line-height:1.78;
  font-size:1.05rem;
  color:rgba(0,0,0,.85);
}
.prose p{margin-bottom:1.25em}
.prose p:last-child{margin-bottom:0}
.prose strong{color:var(--marine)}
.prose + .cta-row,.prose .cta-row{margin-top:1.6em}
.grid-3{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:clamp(16px, 2vw, 22px);align-items:stretch}
.grid-2{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:clamp(16px, 2vw, 22px);align-items:stretch}
.grid-4{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap:clamp(16px, 2vw, 24px);
  align-items:stretch;
}
.card .clean,
.card ul.clean{
  font-size:clamp(0.85rem, 0.9vw, 0.9rem);
}
.card{
  display:flex;
  flex-direction:column;
  height:100%;
  background:rgba(255,255,255,0.72);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.82), rgba(251,247,242,0.64));
  border:1px solid var(--border);
  border-radius:25px;
  padding:22px;
  box-shadow:0 8px 24px rgba(35,32,29,0.08);
  backdrop-filter:blur(10px);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:linear-gradient(160deg, rgba(255,255,255,0.56), rgba(255,255,255,0.12));
  z-index:0;
  transition:background 0.3s ease;
  pointer-events:none;
}
.card:hover::before{
  background:rgba(255,255,255,0.65);
}
.card::after{
  content:'';
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:radial-gradient(circle at 10% 10%, rgba(180,154,130,0.16) 0%, rgba(180,154,130,0) 42%);
  opacity:0.5;
  z-index:-1;
  transition:opacity 0.3s ease;
  pointer-events:none;
}
.card:hover::after{
  opacity:0.12;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(35,32,29,0.14);
  border-color:var(--almond-light);
}
.card > *{
  position:relative;
  z-index:1;
}
.card h3{font-size:1.05rem;letter-spacing:-.2px;margin-top:0;color:var(--text);font-weight:650}
.card p{margin-top:10px;color:rgba(0,0,0,.80);font-size:.95rem;line-height:1.6}
.card .card-icon{position:relative;z-index:1}
.card .cta-row{
  position:relative;
  z-index:1;
  margin-top:auto;
  padding-top:20px;
}
.card a{
  position:relative;
  z-index:10;
  pointer-events:auto;
  cursor:pointer;
}
.card:hover h3{color:var(--text);font-weight:700}
.card:hover p{color:rgba(0,0,0,.90)}
.box{
  background:var(--gradient-2);
  background-image:linear-gradient(165deg, rgba(255,255,255,0.95), rgba(251,247,242,0.9));
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px;
  box-shadow:var(--shadow-md);
  backdrop-filter:blur(10px);
  position:relative;
  overflow:hidden;
}
.box::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:radial-gradient(circle at 80% 20%, rgba(180,154,130,0.14) 0%, rgba(180,154,130,0) 48%);
  opacity:1;
  z-index:0;
  transition:opacity 0.4s ease;
  pointer-events:none;
}
.box::after{
  content:'';
  position:absolute;
  top:-50%;right:-50%;
  width:200%;height:200%;
  background:radial-gradient(circle, rgba(251,247,242,0.4) 0%, transparent 70%);
  opacity:0;
  transition:opacity 0.4s ease;
  z-index:1;
  pointer-events:none;
}
.box:hover::before{
  opacity:0.1;
}
.box:hover::after{
  opacity:1;
}
.box > *{position:relative;z-index:2}
/* Bloc zone / secteur d'intervention : bordure blanche + halo beige (visible sur fond blanc ou ivoire) */
.box.box-white-frame{
  border:4px solid #fff;
  outline:1px solid rgba(217,199,180,0.5);
  box-shadow:
    0 0 0 8px #fbf7f2,
    0 0 0 9px rgba(217,199,180,0.4),
    0 14px 36px rgba(35,32,29,0.1);
}
.section:not(.section-bg) .box.box-white-frame{
  box-shadow:
    0 0 0 8px #f6f0e8,
    0 0 0 9px rgba(217,199,180,0.45),
    0 0 0 12px #fff,
    0 14px 36px rgba(35,32,29,0.1);
}
.box h2{font-size:1.25rem;letter-spacing:-.3px;position:relative;z-index:1}
.box p{margin-top:10px;color:rgba(0,0,0,.70);position:relative;z-index:1}
.box .cta-row{position:relative;z-index:1}
ul.clean{margin-top:14px;padding-left:18px;color:rgba(0,0,0,.72)}
ul.clean li{margin:7px 0}
.kicker{font-size:.95rem;color:rgba(0,0,0,.70);margin-top:10px;max-width:900px}
.h1{padding-top:18px}
.page{padding:32px 0 24px}
.page h1{font-size:2.1rem;letter-spacing:-.6px;line-height:1.2;margin-bottom:8px}
.page h2{margin-top:28px;margin-bottom:16px;font-size:1.45rem;letter-spacing:-.3px;line-height:1.3}
.page p{margin-top:12px;color:rgba(0,0,0,.78);line-height:1.72}
.page .kicker{margin-top:12px;line-height:1.65}
.badges{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
hr.sep{border:none;border-top:1px solid var(--border);margin:22px 0}
.profile-photo{
  width:100%;
  max-width:280px;
  height:auto;
  max-height:380px;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:center 15%;
  border-radius:20px;
  border:2px solid var(--border);
  box-shadow:var(--shadow-md);
  display:block;
  margin:0 auto;
}
.profile-photo--compact{
  max-width:240px;
  max-height:300px;
}
.presentation-video{
  width:100%;
  max-width:320px;
  margin:0 auto;
}
.presentation-video video{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
  background:#1a1816;
  box-shadow:var(--shadow-md);
  vertical-align:middle;
}
.presentation-video figcaption{
  margin-top:10px;
  font-size:.88rem;
  color:var(--muted);
  text-align:center;
  line-height:1.45;
}
.presentation-video--featured{
  max-width:min(720px, 100%);
}
.presentation-video--featured video{
  max-height:min(70vh, 520px);
  object-fit:contain;
}
.about-media{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}
.about-block{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:28px;
  align-items:center;
  padding:36px;
}
@media (max-width:768px){
  .about-block{grid-template-columns:1fr;text-align:center}
  .about-block .cta-row{justify-content:center}
}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  gap:20px;
}
.testimonial-card{
  margin:0;
  padding:24px;
  background:var(--gradient-2);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow-sm);
  transition:all 0.25s ease;
  position:relative;
}
.testimonial-card::before{
  content:'"';
  position:absolute;
  top:12px;left:18px;
  font-size:2.5rem;
  line-height:1;
  color:var(--almond);
  font-family:Georgia, serif;
  opacity:0.7;
}
.testimonial-card:hover{
  border-color:var(--almond-light);
  box-shadow:var(--shadow-md);
  transform:translateY(-2px);
}
.testimonial-text{
  font-size:1rem;
  line-height:1.65;
  color:rgba(0,0,0,.85);
  margin:0 0 16px 0;
  padding-left:24px;
  font-style:italic;
}
.testimonial-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  padding-left:24px;
  border-top:1px solid var(--border);
  padding-top:14px;
  margin-top:0;
}
.testimonial-name{
  font-weight:700;
  color:var(--marine);
  font-size:.95rem;
}
.testimonial-context{
  font-size:.85rem;
  color:var(--muted);
  background:var(--almond-soft);
  padding:4px 10px;
  border-radius:999px;
}
.faq{
  margin-top:14px;
  border:1px solid var(--border);
  border-radius:22px;
  background:var(--gradient-2);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  backdrop-filter:blur(10px);
}
.faq details{
  padding:16px 18px;
  border-top:1px solid var(--border);
  transition:background 0.2s ease;
}
.faq details:first-child{border-top:none}
.faq details:hover{
  background:rgba(251,247,242,0.5);
}
.faq summary{
  cursor:pointer;
  font-weight:650;
  list-style:none;
  transition:color 0.2s ease;
  position:relative;
  padding-right:24px;
}
.faq summary::after{
  content:'+';
  position:absolute;
  right:0;
  font-size:1.2rem;
  transition:transform 0.3s ease;
}
.faq details[open] summary::after{
  transform:rotate(45deg);
}
.faq summary:hover{color:var(--marine)}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin-top:12px;font-size:1rem;line-height:1.72;color:rgba(0,0,0,.78);animation:fadeIn 0.3s ease}
@keyframes fadeIn{
  from{opacity:0;transform:translateY(-5px);}
  to{opacity:1;transform:translateY(0);}
}
.footer{
  margin-top:0;
  border-top:1px solid var(--border);
  padding:36px 0;
  background:rgba(255,255,255,0.78);
  backdrop-filter:blur(20px) saturate(180%);
  position:relative;
}
.footer::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--border), transparent);
}
.footer-cta{
  display:grid;
  grid-template-columns:1.15fr minmax(200px, 0.95fr) auto;
  gap:24px;
  align-items:center;
  padding-bottom:28px;
  margin-bottom:24px;
  border-bottom:1px solid var(--border);
}
.footer-instagram{
  text-align:center;
  padding:22px 20px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(131,58,180,0.07) 0%, rgba(225,48,108,0.05) 50%, rgba(247,119,55,0.08) 100%);
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.footer-instagram h3{
  font-size:1.15rem;
  margin-bottom:10px;
  color:var(--marine);
  font-weight:700;
}
.footer-instagram p{
  font-size:0.9rem;
  color:rgba(0,0,0,.76);
  line-height:1.55;
  margin-bottom:14px;
}
.footer-instagram-handle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:600;
  font-size:0.92rem;
  color:var(--marine);
  text-decoration:none;
  margin-bottom:14px;
  transition:opacity 0.2s ease;
}
.footer-instagram-handle:hover{opacity:0.75}
.footer-instagram-icon{flex-shrink:0;color:#C13584}
.footer-instagram-btn{
  width:100%;
  max-width:220px;
  margin:0 auto;
  display:inline-flex;
  justify-content:center;
}
.footer-instagram-more{
  display:block;
  margin-top:10px;
  font-size:0.85rem;
  font-weight:600;
  color:var(--marine);
  text-decoration:none;
}
.footer-instagram-more:hover{text-decoration:underline}
.instagram-feed-section .section-desc{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.instagram-feed-wrap{
  width:100%;
  max-width:min(980px, 100%);
  margin:0 auto 16px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  background:#fff;
  min-height:580px;
}
.instagram-feed-wrap--grid{
  position:relative;
  overflow:hidden;
}
.instagram-feed-wrap--grid .instagram-embed-frame{
  width:1320px;
  max-width:none;
  will-change:transform;
}
.instagram-feed-wrap--footer{
  max-width:100%;
  min-height:360px;
  margin-top:14px;
}
.instagram-embed-frame{
  display:block;
  width:100%;
  height:760px;
  border:0;
  background:#fafafa;
}
.instagram-feed-wrap--footer .instagram-embed-frame{
  height:400px;
  margin-top:0;
}
@media (max-width:640px){
  .instagram-feed-wrap{min-height:520px}
}
.instagram-feed-fallback{
  margin:0;
  font-size:0.88rem;
  color:var(--muted);
  text-align:center;
  line-height:1.5;
}
.instagram-feed-fallback a{
  color:var(--marine);
  font-weight:600;
}
@media (max-width:1024px){
  .footer-cta{grid-template-columns:1fr 1fr;gap:20px}
  .footer-instagram{grid-column:1/-1;max-width:420px;margin:0 auto;width:100%}
}
@media (max-width:768px){
  .footer-cta{grid-template-columns:1fr;text-align:center;gap:24px}
  .footer-cta .footer-whatsapp{align-items:center}
  .footer-instagram{max-width:100%}
}
.footer-zones h3{
  font-size:1.15rem;
  margin-bottom:12px;
  color:var(--marine);
  font-weight:700;
}
.footer-zones p{
  font-size:0.95rem;
  color:rgba(0,0,0,.78);
  line-height:1.6;
  margin-bottom:14px;
}
.footer-zones .footer-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}
.footer-zones .footer-pills .pill{
  font-size:0.85rem;
  padding:6px 12px;
  background:var(--almond-soft);
  border:1px solid var(--almond-light);
}
.footer-whatsapp{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}
.footer-whatsapp p{
  font-size:0.95rem;
  font-weight:600;
  color:var(--marine);
  margin:0;
}
.footer .row{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap}
.footer p{color:rgba(0,0,0,.65);font-size:.9rem;margin:0}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:4px 0;
}
.footer a{
  color:rgba(0,0,0,.65);
  text-decoration:none;
  margin-left:14px;
  padding:4px 8px;
  border-radius:6px;
  transition:all 0.2s ease;
}
.footer a:hover{
  color:rgba(0,0,0,.92);
  background:rgba(255,255,255,0.5);
}
.footer-credit{
  display:inline;
  margin-left:14px;
  padding:4px 8px;
  font-size:0.85rem;
  color:rgba(0,0,0,.55);
  line-height:1.5;
  white-space:nowrap;
}
.footer-credit a{
  color:var(--marine);
  font-weight:600;
  text-decoration:none;
  margin-left:0;
  padding:0;
}
.footer-credit a:hover{
  text-decoration:underline;
  color:var(--marine-light);
  background:transparent;
}
.whatsapp-float{
  position:fixed;right:18px;bottom:18px;z-index:60;
  background:var(--marine);color:#fff;
  padding:14px 18px;border-radius:999px;
  text-decoration:none;font-weight:700;font-size:.92rem;
  box-shadow:0 10px 30px rgba(0,0,0,0.2), 0 0 0 0 rgba(35,32,29,0.2);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation:pulse 3s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 10px 30px rgba(0,0,0,0.2), 0 0 0 0 rgba(35,32,29,0.22);}
  50%{box-shadow:0 12px 32px rgba(0,0,0,0.24), 0 0 0 9px rgba(35,32,29,0);}
}
.whatsapp-float:hover{
  background:var(--marine-light);
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(35,32,29,0.32);
  animation:none;
}

/* Bouton remonter en haut */
.scroll-top-btn{
  position:fixed;
  right:18px;
  bottom:88px;
  z-index:58;
  width:48px;
  height:48px;
  padding:0;
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--marine);
  color:#fff;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(35,32,29,0.22);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.scroll-top-btn.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.scroll-top-btn:hover{
  background:var(--marine-light);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(35,32,29,0.28);
}
.scroll-top-btn.is-visible:hover{transform:translateY(-2px)}
.scroll-top-btn:focus-visible{
  outline:2px solid var(--almond);
  outline-offset:3px;
}

/* Avis Google – page témoignages (Places API) */
.google-reviews-section{
  padding-top:clamp(24px, 4vw, 40px);
  padding-bottom:clamp(24px, 4vw, 40px);
}
.google-reviews-grid{
  margin-top:20px;
  display:grid;
  gap:clamp(16px,2.5vw,24px);
  grid-template-columns:1fr;
  align-items:stretch;
}
@media (min-width:600px){
  .google-reviews-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
.google-review-card{
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:0;
}
.google-review-card .testimonial-text{
  flex:1;
  margin-bottom:0;
}
.google-review-card .testimonial-text.is-clamped{
  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.google-review-card .review-read-more{
  align-self:flex-start;
  margin:10px 0 0 24px;
  padding:0;
  border:0;
  background:none;
  color:var(--marine);
  font-size:0.9rem;
  font-weight:600;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:3px;
}
.google-review-card .review-read-more:hover{color:var(--marine-light)}
.google-reviews-empty{
  grid-column:1 / -1;
  text-align:center;
  color:var(--muted);
  padding:24px;
  line-height:1.65;
}
.google-reviews-updated{
  display:inline;
  color:var(--muted);
  font-size:0.88em;
}
.google-review-header{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}
.google-review-avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  background:var(--beige-soft);
}
.google-review-avatar--placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:var(--marine);
  font-size:1rem;
}
.google-review-header-text{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.google-review-header .testimonial-name{
  margin-top:2px;
}

/* Page contact — limiter le CLS au chargement des polices */
.page-contact .container > .box:first-of-type{
  min-height:118px;
}
.page-contact .section.section-bg .box-white-frame{
  min-height:220px;
}
.page-contact .grid-2 .box{
  min-height:280px;
}
@media (min-width:769px){
  .page-contact .grid-2 .box{min-height:300px}
}

/* Widget flottant Avis Google */
.google-reviews-widget{
  position:fixed;left:18px;bottom:18px;z-index:59;
  display:flex;align-items:center;gap:12px;
  padding:12px 16px;
  background:linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(251,247,242,0.98) 100%);
  border:1px solid var(--border);border-radius:16px;
  box-shadow:var(--shadow-md);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.google-reviews-widget:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.google-reviews-widget-body{line-height:1.2}
.google-reviews-widget-stars{display:flex;gap:2px;flex-shrink:0}
.google-reviews-widget-stars svg{width:18px;height:18px;fill:var(--almond)}
.google-reviews-widget-rating{font-weight:700;font-size:1.1rem;color:var(--marine);line-height:1.2}
.google-reviews-widget-count{font-size:0.8rem;color:var(--muted);margin-top:2px}
.google-reviews-widget-cta{
  padding:8px 14px;background:var(--marine);color:#fff;
  text-decoration:none;font-weight:600;font-size:0.85rem;
  border-radius:10px;white-space:nowrap;
  transition:background 0.2s,transform 0.2s;
}
.google-reviews-widget-cta:hover{background:var(--marine-light);color:#fff;transform:scale(1.02)}
.google-review-card .review-rating-stars{display:flex;gap:2px;margin-bottom:8px}
.google-review-card .review-rating-stars svg{width:14px;height:14px;fill:var(--almond)}

/* Bloc Google Évaluation */
.google-evaluation-section{padding-top:20px}
.google-evaluation-box{
  display:flex;flex-wrap:wrap;align-items:center;gap:20px 28px;
  padding:28px 32px;
  background:var(--gradient-2);border:1px solid var(--border);
  border-radius:20px;box-shadow:var(--shadow-md);
}
.google-evaluation-logo{display:flex;align-items:center;gap:10px;font-size:1rem;font-weight:600;color:var(--text)}
.google-evaluation-logo img{border-radius:8px}
.google-evaluation-content{display:flex;align-items:center;gap:16px;min-height:40px}
.google-evaluation-loading{display:flex;align-items:center;gap:10px;font-size:0.95rem;color:var(--muted)}
.google-evaluation-loading[hidden],
.google-evaluation-data[hidden]{display:none!important}
.google-evaluation-loading-dot{
  width:8px;height:8px;border-radius:50%;background:var(--almond);
  animation:google-loading-pulse 1s ease-in-out infinite;
}
@keyframes google-loading-pulse{0%,100%{opacity:0.4;transform:scale(0.9)}50%{opacity:1;transform:scale(1.1)}}
.google-evaluation-data{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.google-evaluation-rating{font-size:1.75rem;font-weight:700;color:var(--marine);line-height:1}
.google-evaluation-stars{font-size:1.25rem;letter-spacing:2px;color:var(--almond)}
.google-evaluation-count{font-size:0.95rem;color:var(--muted)}
.google-evaluation-actions{display:flex;flex-wrap:wrap;gap:12px;margin-left:auto}
.google-evaluation-pagination{font-size:0.9rem;color:var(--muted);width:100%;text-align:center;margin-top:4px}

.note{
  margin-top:12px;
  padding:14px 16px;
  border-radius:16px;
  border:1px dashed rgba(0,0,0,.18);
  background:rgba(255,255,255,0.7);
  color:rgba(0,0,0,.72);
  font-size:.92rem;
  box-shadow:var(--shadow-sm);
  backdrop-filter:blur(10px);
  position:relative;
}
.note::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  border-radius:16px;
  padding:1px;
  background:linear-gradient(135deg, rgba(230,222,214,0.3), rgba(251,247,242,0.3));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite:exclude;
  pointer-events:none;
}

.decorative-img,
.decorative-img.lipoedeme-hero,
.decorative-img.postop-hero{
  display:block;
  width:100%!important;
  max-width:100%;
  height:clamp(200px, 42vw, 400px)!important;
  object-fit:cover;
  border-radius:clamp(18px, 3vw, 30px);
  box-shadow:var(--shadow-md);
  margin:20px 0;
  opacity:1;
  transition:all 0.3s ease;
  filter:brightness(1.05) saturate(1.1);
}
.decorative-img:hover{
  opacity:1;
  transform:scale(1.03);
  box-shadow:var(--shadow-lg);
  filter:brightness(1.1) saturate(1.15);
}
.decorative-img.lipoedeme-hero{object-position:center 35%;background:#fff}
.decorative-img.postop-hero{object-position:center;background:#fff}
.decorative-img.renata-franca-methode{
  object-fit:cover;
  object-position:center 40%;
}
.card-icon[style*="object-fit"]{
  object-fit:cover;
}
.hero-image{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:400px;
  height:500px;
  object-fit:cover;
  border-radius:22px;
  opacity:0.15;
  filter:blur(20px) brightness(1.2);
  z-index:-1;
  pointer-events:none;
}
.section.section-bg{
  background:#fbf7f2;
}
.section-bg::before{
  display:none;
}
.card-icon{
  width:80px;
  height:80px;
  border-radius:20px;
  object-fit:cover;
  margin-bottom:20px;
  box-shadow:var(--shadow-md);
  opacity:0.95;
  transition:all 0.3s ease;
  border:2px solid rgba(255,255,255,0.5);
}
.card:hover .card-icon{
  opacity:1;
  transform:scale(1.08);
  box-shadow:var(--shadow-lg);
}
.card-icon{
  width:60px;
  height:60px;
  border-radius:16px;
  object-fit:cover;
  margin-bottom:16px;
  box-shadow:var(--shadow-sm);
  opacity:0.8;
  transition:all 0.3s ease;
}
.card:hover .card-icon{
  opacity:1;
  transform:scale(1.07);
}

.badges .pill{
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(217,199,180,0.92);
  color:#473f37;
  box-shadow:0 6px 18px rgba(35,32,29,0.07);
}
.badges .pill:hover{
  background:#fff;
  border-color:rgba(180,154,130,0.58);
}

.contraindications-box{
  margin-top:0;
  padding:34px 36px;
}
.contraindications-title{
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing:.14em;
  text-transform:uppercase;
  margin:0 0 28px;
  color:var(--marine);
  font-weight:600;
}
.contraindications-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 48px;
}
.contraindications-col h4{
  font-size:1.05rem;
  font-weight:700;
  color:var(--marine);
  margin:0 0 14px;
  letter-spacing:-.2px;
}
.contraindications-list{
  margin-top:0;
  padding-left:0;
  list-style:none;
}
.contraindications-list li{
  margin:9px 0;
  padding-left:14px;
  position:relative;
  color:rgba(0,0,0,.82);
  font-size:.98rem;
  line-height:1.55;
}
.contraindications-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:.62em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--almond);
}
@media (max-width:768px){
  .contraindications-grid{grid-template-columns:1fr;gap:24px}
  .contraindications-box{padding:28px 22px}
}

.engagements-stack{
  display:flex;
  flex-direction:column;
  gap:32px;
}
.engagements-visual{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100%;
}
.engagements-visual .decorative-img{
  margin:0;
  height:clamp(220px, 32vw, 320px);
}
.engagements-resources{
  width:100%;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.engagements-resources > h3,
.engagements-resources > p{
  width:100%;
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}
.engagements-resources .cta-row{
  margin-top:8px;
  justify-content:center;
  width:100%;
}
.ebook-soon-grid{
  width:100%;
  max-width:640px;
  margin:0 auto 28px;
  gap:clamp(16px, 3vw, 24px);
}
.ebook-soon-card{
  padding:20px;
  background:rgba(255,255,255,0.65);
  border-radius:18px;
  border:1px solid var(--border);
  text-align:center;
}
.ebook-soon-card .badge-soon{
  margin:0 auto 12px;
  display:inline-flex;
}
.ebook-soon-icon{
  font-size:2rem;
  margin-bottom:10px;
  line-height:1;
}
.ebook-soon-card h4{
  font-size:1rem;
  margin:0 0 6px;
  font-weight:650;
}
.ebook-soon-card p{
  margin:0;
  font-size:0.9rem;
  color:rgba(0,0,0,.70);
}
@media (max-width:768px){
  .engagements-stack{gap:24px}
  .engagements-visual .decorative-img{height:clamp(200px, 45vw, 280px)}
  .engagements-resources{padding:22px 18px}
  .ebook-soon-grid{
    max-width:100%;
    grid-template-columns:1fr;
  }
  .ebook-soon-card{max-width:360px;margin:0 auto;width:100%}
}

.badge-soon{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 14px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:var(--marine-light);
  background:rgba(251,247,242,0.95);
  border:1px dashed rgba(180,154,130,0.75);
}
.card.ebook-off{
  opacity:0.98;
  min-height:280px;
}
.card.ebook-off .badge-soon{
  margin-bottom:12px;
}
.ebooks-grid .card.ebook-off{
  display:flex;
  flex-direction:column;
}
.ebooks-grid .card.ebook-off .cta-row{
  margin-top:auto;
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important}
}

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

/* Base : textes & médias ne débordent pas */
.hero h1,
.page h1,
.page h2,
.section-title,
.section-desc,
.kicker{
  overflow-wrap:break-word;
  hyphens:auto;
}
.decorative-img{
  max-width:100%;
}
.profile-photo{
  max-width:min(280px, 100%);
}

/* Grands écrans & ultrawide (34") */
@media (min-width: 1400px){
  .container,
  .page .container > .section .container,
  .page .container > section.section .container{max-width:1280px}
  .container{padding:0 28px}
  .hero-content{flex:0 1 680px;max-width:min(680px, 100%)}
  .hero-image-main{width:min(400px, 100%);max-height:min(560px, 72vh)}
  .hero h1{max-width:34ch;font-size:clamp(2.45rem, 2.2vw, 3.45rem)}
  .card{padding:24px}
  .section-desc{max-width:820px}
}
@media (min-width: 1920px){
  .container,
  .page .container > .section .container,
  .page .container > section.section .container{max-width:1360px}
  .hero-content{flex:0 1 720px;max-width:min(720px, 100%)}
  .hero-image-main{width:min(420px, 100%);max-height:min(580px, 75vh)}
}

/* Tablette */
@media (max-width: 900px){
  .grid-4{grid-template-columns:repeat(2, minmax(0, 1fr))}
  main:not(.page) > .section{padding:56px 0}
}
/* Desktop étroit / tablette paysage */
@media (max-width: 1100px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .hero{padding:72px 0 52px}
  .hero h1{font-size:clamp(1.95rem, 4.5vw, 2.35rem);max-width:100%}
  .section{padding:54px 0}
  .hero::before{width:200px;height:200px;top:-30px;right:-30px}
  .hero::after{width:150px;height:150px;bottom:-50px;left:-50px}
  .hero-image{display:none}
  .page h1{font-size:clamp(1.65rem, 4vw, 2rem)}
}
@media (max-width: 960px){
  .hero-inner{flex-direction:column;align-items:stretch}
  .hero-content{flex:1 1 auto;max-width:100%}
  .hero-image-main{
    width:100%;
    max-width:100%;
    max-height:min(340px, 50vh);
    aspect-ratio:16/10;
  }
  .grid-3{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .about-block{grid-template-columns:1fr;gap:22px;padding:28px 22px}
  .google-evaluation-box{padding:22px 20px}
  .google-evaluation-actions{margin-left:0;width:100%}
}
@media (max-width: 768px){
  body{padding-bottom:110px}
  .grid-3,.grid-2{grid-template-columns:1fr}
  .contraindications-grid{grid-template-columns:1fr;gap:24px}
  .contraindications-box{padding:28px 22px}
  .footer-cta{grid-template-columns:1fr;text-align:center;gap:24px}
  .footer-cta .footer-whatsapp{justify-content:center}
  .footer .row{flex-direction:column;align-items:center;text-align:center;gap:12px}
  .footer-links{justify-content:center}
  .footer-links a,.footer-credit{margin-left:8px;margin-right:8px}
  .footer-credit{white-space:normal}
  .testimonials-grid{grid-template-columns:1fr}
  .google-reviews-grid{grid-template-columns:1fr;gap:16px}
  .google-evaluation-box .google-evaluation-actions .btn{width:100%;justify-content:center}
  .cta-row .btn{flex:1 1 auto;min-width:min(100%, 220px);justify-content:center}
  .google-evaluation-box{flex-direction:column;align-items:stretch}
  .google-evaluation-actions{margin-left:0;width:100%;justify-content:center}
  .google-reviews-widget{
    left:12px;right:12px;bottom:76px;
    max-width:calc(100vw - 24px);
    padding:10px 12px;
    gap:10px;
    flex-wrap:wrap;
  }
  .google-reviews-widget-cta{padding:6px 12px;font-size:.8rem}
  .whatsapp-float{
    right:12px;
    bottom:max(12px, env(safe-area-inset-bottom, 12px));
    padding:12px 16px;
    font-size:.85rem;
    max-width:calc(100vw - 24px);
    text-align:center;
  }
  .scroll-top-btn{
    right:12px;
    bottom:148px;
    width:44px;
    height:44px;
  }
  main:not(.page) > .section{padding:44px 0}
}
@media (max-width: 700px){
  .grid-4{grid-template-columns:1fr}
  .section-title{font-size:1.55rem}
  .section-desc{font-size:1rem;margin-bottom:28px}
  .container{padding:0 18px}
  .hero{padding:56px 0 44px}
  .section{padding:44px 0}
  .page .section:not(.section-bg),
  .page section.section:not(.section-bg),
  main.page > .section:not(.section-bg),
  main.page > section.section:not(.section-bg){padding:0}
  .page .container > .section.section-bg,
  .page .container > section.section.section-bg,
  .page > .section.section-bg,
  .page > section.section.section-bg,
  main.page > .section.section-bg,
  main.page > section.section.section-bg{
    margin-top:40px;
    margin-left:-18px;
    margin-right:-18px;
    padding:36px 18px 44px;
    width:calc(100% + 36px);
  }
  .page .container > .grid-2,
  .page .container > .grid-3,
  .page .container > .grid-4{
    margin-top:36px;
    margin-bottom:40px;
  }
  .page .container > .grid-2:first-child,
  .page .container > .grid-3:first-child{margin-top:0}
  .page{padding:24px 0 18px}
  .page h1{font-size:clamp(1.45rem, 5.5vw, 1.9rem)}
  .page h2{font-size:1.25rem}
  .card{padding:20px}
  .card h3{font-size:1rem}
  .card p{font-size:.92rem;line-height:1.55}
  .box{padding:22px 18px}
  .decorative-img,
  .decorative-img.lipoedeme-hero,
  .decorative-img.postop-hero{height:clamp(180px, 38vw, 280px)!important}
  .badges{gap:8px}
  .badges .pill,.pill{font-size:.8rem;padding:7px 11px}
  .header .bar{height:64px}
  .brand .name{font-size:.95rem}
  .faq summary{font-size:.95rem;padding-right:20px}
}
@media (max-width: 480px){
  .hero h1{font-size:1.75rem;line-height:1.15}
  .hero .subtitle{font-size:1rem!important}
  .hero .seo-text{font-size:.95rem!important}
  .btn{width:100%;padding:13px 18px;min-height:44px}
  .cta-row{flex-direction:column;align-items:stretch;gap:10px}
  .cta-row .btn{width:100%}
  .google-reviews-widget{
    flex-direction:column;
    align-items:center;
    text-align:center;
    bottom:82px;
  }
  .google-reviews-widget-stars svg{width:16px;height:16px}
  .google-reviews-widget-rating{font-size:1rem}
  .whatsapp-float{
    left:12px;right:12px;
    border-radius:16px;
  }
  .scroll-top-btn{
    right:12px;
    bottom:168px;
    width:42px;
    height:42px;
  }
  .profile-photo{max-width:100%}
  .page .section.section-bg .section-title{font-size:1.4rem}
  .contraindications-title{font-size:1.2rem;letter-spacing:.08em}
}
@media (max-width: 380px){
  .menu-btn{padding:8px 12px;font-size:.85rem}
  .card-icon{width:52px;height:52px}
}

/* Mentions légales — panneau fixe + scroll interne */
.page-legal [id]{
  scroll-margin-top:20px;
}
.legal-panel{
  display:grid;
  grid-template-columns:minmax(220px,280px) 1fr;
  gap:20px;
  align-items:start;
  margin-top:20px;
}
.legal-sommaire-side{
  position:sticky;
  top:76px;
  padding:20px 22px;
  font-size:0.92rem;
  overflow:visible;
  box-shadow:0 8px 24px rgba(35,32,29,0.08);
  align-self:start;
}
.legal-sommaire-links{
  line-height:1.85;
  color:var(--muted);
}
.legal-sommaire-links a{
  color:var(--marine);
  text-decoration:underline;
  text-underline-offset:3px;
}
.legal-sommaire-links a:hover{
  color:var(--marine-light);
}
.legal-content-scroll{
  margin-top:0!important;
  padding:28px 32px 32px;
  max-height:calc(100vh - 88px);
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:rgba(180,154,130,0.65) rgba(251,247,242,0.5);
}
.legal-content-scroll:focus{
  outline:2px solid rgba(180,154,130,0.55);
  outline-offset:2px;
}
.legal-content-scroll::-webkit-scrollbar{
  width:10px;
}
.legal-content-scroll::-webkit-scrollbar-track{
  background:rgba(251,247,242,0.6);
  border-radius:999px;
}
.legal-content-scroll::-webkit-scrollbar-thumb{
  background:rgba(180,154,130,0.55);
  border-radius:999px;
  border:2px solid rgba(251,247,242,0.6);
}
.legal-content-scroll::-webkit-scrollbar-thumb:hover{
  background:rgba(180,154,130,0.85);
}
.legal-back-top--nav{
  border-top:none;
  padding-top:0;
  text-align:left;
}
.legal-back-top{
  margin:22px 0 4px;
  padding-top:16px;
  border-top:1px dashed rgba(217,199,180,0.65);
  font-size:0.88rem;
  text-align:right;
}
.legal-back-top a{
  color:var(--muted);
  text-decoration:none;
  font-weight:500;
}
.legal-back-top a:hover{
  color:var(--marine);
  text-decoration:underline;
}
.legal-float-top{
  position:fixed;
  right:20px;
  bottom:100px;
  z-index:40;
  padding:10px 16px;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:600;
  color:var(--marine);
  background:rgba(255,255,255,0.95);
  border:1px solid var(--border);
  box-shadow:0 8px 22px rgba(35,32,29,0.12);
  text-decoration:none;
  backdrop-filter:blur(10px);
  transition:transform 0.2s ease,box-shadow 0.2s ease;
}
.legal-float-top:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(35,32,29,0.16);
  color:var(--marine);
}
.legal-contact-block{
  margin-top:16px;
  padding:18px 20px;
  border-radius:14px;
  background:rgba(251,247,242,0.85);
  border:1px solid rgba(217,199,180,0.5);
}
.legal-contact-block p{
  margin:0;
  line-height:1.65;
  font-size:0.95rem;
}
.legal-contact-block p + p{margin-top:8px}
.legal-contact-title{
  margin-bottom:10px!important;
  font-weight:600;
  font-size:0.88rem!important;
  letter-spacing:.02em;
  color:var(--marine);
  text-transform:uppercase;
}
.legal-footer-meta{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid var(--border);
  font-size:0.9rem;
  color:var(--muted);
  line-height:1.75;
}
@media (max-width: 960px){
  .legal-panel{
    grid-template-columns:1fr;
    position:relative;
    top:auto;
    max-height:none;
  }
  .legal-sommaire-side{
    position:relative;
    top:auto;
    overflow:visible;
  }
  .legal-content-scroll{
    max-height:min(70vh,640px);
  }
}
/* Galerie résultats */
.results-disclaimer{
  max-width:820px;
  margin:0 auto 32px;
  text-align:center;
}
.results-group-title{
  font-size:1.25rem;
  font-weight:650;
  color:var(--marine);
  margin:36px 0 18px;
  letter-spacing:-0.3px;
}
.results-group-title:first-of-type{margin-top:8px}
.results-gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.results-gallery--duo{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  max-width:900px;
  margin:0 auto;
}
.results-gallery--story{
  grid-template-columns:minmax(0, 1fr);
  max-width:min(100%, 440px);
  margin:0 auto;
}
.results-figure--story picture,
.results-figure--story img{
  aspect-ratio:auto;
  max-height:none;
  object-fit:contain;
  object-position:center;
  background:#1a1a1a;
}
.results-figure{
  margin:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.results-figure picture,
.results-figure img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:center top;
}
.results-figure picture img{
  width:100%;
}
.results-figure figcaption{
  padding:12px 14px;
  font-size:0.88rem;
  font-weight:600;
  color:var(--marine);
  text-align:center;
  background:rgba(251,247,242,0.9);
  border-top:1px solid var(--border);
}
@media (max-width: 900px){
  .results-gallery{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width: 560px){
  .results-gallery,
  .results-gallery--duo{grid-template-columns:1fr;max-width:100%}
  .results-figure img{aspect-ratio:4/5}
}

@media (max-width: 768px){
  .legal-content-scroll{
    max-height:min(65vh,560px);
    padding:22px 18px 24px;
  }
  .legal-float-top{
    right:12px;
    bottom:88px;
    padding:9px 14px;
    font-size:0.8rem;
  }
}

