:root {
  --green: #315b4b;
  --deep: #1f3d33;
  --sage: #dfe8dc;
  --cream: #fffaf1;
  --sand: #f4eadb;
  --terra: #c96f4d;
  --ink: #25332e;
  --muted: #68746e;
}

/* Hébergement statique : la structure mobile est activée directement par CSS. */
@media screen and (max-width: 767px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  html { scroll-padding-top: 68px; }
  html * { min-width: 0; }
  .head {
    height: 68px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .desktop-nav,
  .head-actions { display: none !important; }
  .burger {
    display: grid !important;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 50%;
    background: #315b4b12;
    color: var(--green);
    padding: 9px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav {
    width: 100%;
    flex-direction: column;
    padding: 10px 18px 20px;
    border-top: 1px solid #315b4b18;
    background: var(--cream);
  }
  .mobile-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid #315b4b18;
    font-weight: 700;
  }
  .mobile-nav .button { margin-top: 7px; }
  .section { padding: 62px 18px; }
  .section-head { display: block; }
  .section-head > p { margin-top: 20px; }
  .service-grid,
  .price-grid,
  .review-grid,
  .method,
  .about,
  .faq,
  .contact,
  .footer-main,
  .two {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .service-grid article { min-height: 0; }
  .service-photo { height: 210px; }
  .method,
  .about,
  .faq,
  .contact { gap: 45px; }
  .method aside {
    padding: 48px 28px;
    border-radius: 80px 20px 80px 20px;
  }
  .about-badge {
    height: min(105vw, 430px);
    border-radius: 22px 100px 22px 100px;
  }
  .about-points { display: grid; }
  .google-card {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }
  .google-mark { margin: auto; }
  .google-actions { width: 100%; flex-direction: column; }
  .contact { padding: 65px 18px; }
  .contact form { padding: 24px 18px; }
  footer { padding: 62px 18px 24px; }
  .footer-main { gap: 42px; }
  .footer-main > div + div {
    padding-top: 35px;
    border-top: 1px solid #ffffff18;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.6;
  }
  .footer-bottom > span[aria-hidden] { display: none; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
button,
a,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.65rem, 8vw, 5.8rem);
  line-height: 0.98;
  margin: 18px 0 25px;
}
h1 em,
h2 em {
  color: var(--terra);
  font-weight: 400;
}
h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.06;
  margin: 8px 0 20px;
}
h3 {
  font-size: 1.2rem;
}
.eyebrow {
  color: var(--terra);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.section {
  max-width: 1360px;
  margin: auto;
  padding: 82px 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 15px 24px;
  font-weight: 700;
  transition: 0.2s;
}
.button:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.small {
  padding: 12px 18px;
  font-size: 0.88rem;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.96);
  border-bottom: 1px solid #315b4b20;
  backdrop-filter: blur(10px);
}
.head {
  height: 78px;
  max-width: 1360px;
  margin: auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}
.logo > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: white;
}
.logo svg {
  width: 22px;
}
.logo strong {
  font-family: Georgia, serif;
  font-size: 1.12rem;
  white-space: nowrap;
}
.logo em {
  color: var(--terra);
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.desktop-nav a {
  font-size: 0.87rem;
  font-weight: 700;
  position: relative;
}
.desktop-nav a:after,
.footer-nav a:after,
.footer-bottom a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--terra);
  transition: 0.25s;
}
.desktop-nav a:hover:after,
.footer-nav a:hover:after,
.footer-bottom a:hover:after {
  width: 100%;
}
.head-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.phone,
.text-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
}
.phone svg,
.text-link svg {
  width: 18px;
}
.burger,
.mobile-nav {
  display: none;
}
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 28px;
  max-width: 1440px;
  margin: auto;
  padding: 45px 42px 70px;
}
.hero-copy {
  padding-left: max(0px, calc((100vw - 1360px) / 2));
}
.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 30px 0;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}
.trust span {
  display: flex;
  gap: 5px;
  align-items: center;
}
.trust svg {
  width: 15px;
}
.hero-image {
  position: relative;
  height: 610px;
  border-radius: 180px 24px 180px 24px;
  overflow: visible;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.note {
  position: absolute;
  left: -42px;
  bottom: 45px;
  background: white;
  box-shadow: 0 16px 45px #172a2226;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.note svg {
  color: var(--terra);
  fill: #c96f4d22;
}
.note span {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: var(--muted);
}
.note b {
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.intro {
  text-align: center;
  max-width: 920px;
}
.intro > p:last-child {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
  line-height: 1.8;
}
.services {
  max-width: none;
  background: var(--sage);
  padding-left: max(22px, calc((100vw - 1360px) / 2));
  padding-right: max(22px, calc((100vw - 1360px) / 2));
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}
.section-head > p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-grid article {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  padding: 0 25px 30px;
  display: flex;
  flex-direction: column;
  min-height: 370px;
}
.service-photo {
  height: 190px;
  margin: 0 -25px 20px;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-photo-1 {
  background-image: url("service-toilettage.webp");
}
.service-photo-2 {
  background-image: url("service-bain.webp");
}
.service-photo-3 {
  background-image: url("service-epilation.webp");
  background-position: center 24%;
}
html.desktop-device .service-photo-1 {
    background-position: center 35%;
}
html.desktop-device .service-photo-2 {
    background-position: center 62%;
}
html.desktop-device .service-photo-3 {
    background-position: center 6%;
}
.service-photo-4 {
  background-image: url("service-chiot.webp");
  background-position: center 20%;
}
.service-grid article > svg {
  color: var(--terra);
  width: 32px;
  height: 32px;
  margin: 0 0 18px;
}
.service-grid article p {
  color: var(--muted);
  line-height: 1.65;
}
.service-grid article > b {
  margin-top: auto;
  color: var(--green);
}
.service-grid button,
.price-grid button {
  border: 0;
  background: none;
  text-align: left;
  padding: 15px 0 0;
  color: var(--green);
  font-weight: 800;
}
.num {
  position: absolute;
  right: 24px;
  color: #315b4b55;
  font: italic 1.15rem Georgia;
}
.caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 24px 0 0;
}
.method {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}
.method > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.steps {
  margin-top: 35px;
}
.steps > div {
  display: flex;
  gap: 18px;
  margin: 22px 0;
}
.steps span {
  flex: 0 0 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--terra);
  font-weight: 800;
}
.steps p {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  line-height: 1.5;
}
.steps b {
  color: var(--ink);
  margin-bottom: 4px;
}
.method aside {
  background: var(--deep);
  color: white;
  border-radius: 150px 24px 150px 24px;
  padding: 70px 55px;
}
.method aside > svg {
  width: 44px;
  height: 44px;
  color: #eeb79f;
}
.method aside h3 {
  font: 2rem Georgia;
  margin: 22px 0;
}
.method aside p,
.method aside li {
  color: #e8efe9;
  line-height: 1.6;
}
.method aside li {
  margin: 9px 0;
}
.pricing {
  max-width: none;
  background: var(--sand);
  padding-left: max(22px, calc((100vw - 1360px) / 2));
  padding-right: max(22px, calc((100vw - 1360px) / 2));
}
.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.center > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}
.price-grid article {
  background: var(--cream);
  padding: 30px 26px;
  border-radius: 22px;
}
.price-grid article > span {
  color: var(--terra);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price-grid h3 {
  font: 1.6rem Georgia;
  margin: 18px 0;
}
.price-grid article > div {
  color: var(--muted);
}
.price-grid article > div b {
  font: 2.8rem Georgia;
  color: var(--green);
}
.price-grid ul {
  list-style: "✓  ";
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
}
.price-grid .featured {
  background: var(--green);
  color: white;
  padding-block: 50px;
  box-shadow: 0 20px 50px #315b4b25;
}
.price-grid .featured span,
.price-grid .featured div,
.price-grid .featured div b,
.price-grid .featured li,
.price-grid .featured button {
  color: white;
}
.about {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
}
.about-badge {
  height: 440px;
  border-radius: 30px 160px 30px 160px;
  background: linear-gradient(145deg, var(--sage), var(--sand));
  display: grid;
  place-items: center;
  position: relative;
}
.about-badge > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.about-badge > svg {
  width: 110px;
  height: 110px;
  color: var(--green);
}
.about-badge span {
  position: absolute;
  right: 25px;
  bottom: 28px;
  background: white;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}
.about-badge b {
  font: 1.5rem Georgia;
  color: var(--terra);
}
.about > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}
.about blockquote {
  font: italic 1.5rem Georgia;
  color: var(--green);
  border-left: 3px solid var(--terra);
  margin: 25px 0;
  padding-left: 22px;
}
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.about-points span {
  display: flex;
  gap: 7px;
  align-items: center;
  font-weight: 700;
}
.about-points svg {
  width: 18px;
  color: var(--terra);
}
.reviews {
  max-width: none;
  background: var(--deep);
  color: white;
  padding-left: max(22px, calc((100vw - 1360px) / 2));
  padding-right: max(22px, calc((100vw - 1360px) / 2));
}
.reviews .section-head > p {
  color: #cbd8d2;
}
.stars {
  color: #f0b38f;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
}
.stars small {
  color: #b9c8c1;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 7px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.review-grid blockquote {
  margin: 0;
  background: #ffffff0b;
  border: 1px solid #ffffff18;
  border-radius: 20px;
  padding: 30px;
  font: 1.05rem/1.7 Georgia;
}
.review-grid cite {
  display: block;
  color: #eeb79f;
  font: normal 0.78rem Arial;
  margin-top: 20px;
}
.demo-note {
  text-align: center;
  color: #aebfb7;
  font-size: 0.72rem;
  margin: 26px 0 0;
}
.google-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 18px;
  background: var(--cream);
  color: var(--ink);
}
.google-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.google-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.google-actions {
  display: flex;
  gap: 9px;
}
.google-actions button {
  border: 1px solid #315b4b33;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 11px 16px;
  cursor: default;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq > div:first-child > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}
.faq details {
  border-bottom: 1px solid #315b4b28;
  padding: 20px 0;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::marker {
  content: "";
  font-size: 0;
}
.faq summary svg {
  width: 18px;
}
.faq details[open] svg {
  transform: rotate(180deg);
}
.faq details p {
  color: var(--muted);
  line-height: 1.7;
  padding-right: 30px;
  margin: 14px 0 0;
}
.contact {
  background: var(--terra);
  color: white;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 90px max(22px, calc((100vw - 1360px) / 2));
}
.contact .eyebrow {
  color: #fff0e9;
}
.contact-info > p:not(.eyebrow) {
  color: #fff4ed;
  line-height: 1.7;
}
.contact-lines {
  margin: 32px 0;
}
.contact-lines > a,
.contact-lines > div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}
.contact-lines svg {
  width: 24px;
}
.contact-lines span {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.contact-web {
  padding-left: 38px;
}
.contact-web span {
  align-items: flex-start;
}
.contact-lines small {
  font-size: 0.68rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.zone {
  font-size: 0.8rem !important;
}
.contact form {
  background: var(--cream);
  color: var(--ink);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}
.contact input,
.contact select,
.contact textarea {
  width: 100%;
  border: 1px solid #315b4b33;
  border-radius: 10px;
  background: white;
  padding: 13px;
  font-size: 16px;
  color: var(--ink);
  outline: none;
}
.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px #315b4b18;
}
.consent {
  flex-direction: row !important;
  align-items: flex-start;
  font-weight: 400 !important;
  line-height: 1.45;
}
.consent input {
  width: auto;
  margin-top: 3px;
}
.success {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  margin: 0;
}
.success svg {
  width: 18px;
}
.form-error {
  color: #9f3024;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
}
.contact form button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
footer {
  background: #172d26;
  color: #e9f0ec;
  padding: 70px max(22px, calc((100vw - 1360px) / 2)) 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 80px;
}
.footer-main > div:first-child > p {
  max-width: 370px;
  color: #aebfb7;
  line-height: 1.7;
  margin: 22px 0;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.footer-phone svg {
  width: 18px;
}
.footer-main h3 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #eeb79f;
  margin-bottom: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer-nav a,
.footer-bottom a,
.slide-link,
.contact-web a,
.service-grid button,
.price-grid button {
  position: relative;
}
.slide-link::after,
.contact-web a::after,
.service-grid button::after,
.price-grid button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s;
}
.slide-link:hover::after,
.contact-web a:hover::after,
.service-grid button:hover::after,
.price-grid button:hover::after {
  width: 100%;
}
.service-grid button,
.price-grid button {
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
}
.contact-lines > a {
  width: fit-content;
}
.contact-lines > a span {
  position: relative;
  width: fit-content;
  font-size: 1.08rem;
}
.contact-lines > a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s;
}
.contact-lines > a:hover span::after {
  width: 100%;
}
.legal details {
  margin: 12px 0;
}
.legal summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.legal summary::-webkit-details-marker {
  display: none;
}
.legal summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1;
}
.legal details[open] summary::after {
  content: "−";
}
.legal p {
  font-size: 0.78rem;
  color: #aebfb7;
  line-height: 1.6;
}
.share {
  text-align: center;
  margin-top: 45px;
}
.share > span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aebfb7;
}
.share > div {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.share a,
.share button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff25;
  border-radius: 50%;
  background: transparent;
  color: white;
  transition: 0.2s;
}
.share a:hover,
.share button:hover,
.share a:focus-visible,
.share button:focus-visible {
  background: transparent;
  border-color: var(--terra);
  color: #eeb79f;
  transform: translateY(-3px);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 4px;
}
.share svg {
  width: 18px;
}
.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font:
    700 0.82rem/1 Arial,
    sans-serif;
}
.share small {
  display: block;
  height: 16px;
  color: #eeb79f;
  margin-top: 8px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  border-top: 1px solid #ffffff18;
  margin-top: 30px;
  padding-top: 22px;
  color: #91a59c;
  font-size: 0.72rem;
}
.copyright {
  text-align: center;
}
.footer-bottom a {
  color: #e9f0ec;
  font-weight: 700;
}
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 14px;
  }
  .desktop-nav a {
    font-size: 0.76rem;
  }
  .phone {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-image {
    height: 500px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Ancienne couche mobile neutralisée : la fondation active est html.mobile-device. */
@media screen and (max-width: 0px) {
  html {
    scroll-padding-top: 68px;
  }
  .section {
    padding: 62px 18px;
  }
  .head {
    height: 66px;
    padding: 0 17px;
    display: flex;
    justify-content: space-between;
  }
  .head .logo strong {
    font-size: 1rem;
  }
  .head .logo > span {
    width: 36px;
    height: 36px;
  }
  .desktop-nav,
  .head-actions {
    display: none;
  }
  .burger {
    display: grid;
    place-items: center;
    border: 0;
    background: none;
    color: var(--green);
    padding: 8px;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 18px 20px;
    border-top: 1px solid #315b4b18;
    background: var(--cream);
  }
  .mobile-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid #315b4b18;
    font-weight: 700;
  }
  .mobile-nav > a:nth-last-child(2) {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
  }
  .mobile-nav svg {
    width: 18px;
  }
  .mobile-nav .button {
    margin-top: 7px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 45px 18px 60px;
    gap: 42px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
  .lead {
    font-size: 1rem;
  }
  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .text-link {
    justify-content: center;
  }
  .trust {
    display: grid;
    gap: 10px;
  }
  .hero-image {
    width: 100%;
    height: 390px;
    border-radius: 80px 18px 80px 18px;
  }
  .note {
    left: 12px;
    right: 12px;
    bottom: -24px;
    padding: 13px;
  }
  .intro h2 br {
    display: none;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 20px;
  }
  .service-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: 420px;
  }
  .service-photo {
    height: 200px;
  }
  .method,
  .about,
  .faq,
  .contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .method aside {
    border-radius: 80px 20px 80px 20px;
    padding: 50px 32px;
  }
  .price-grid .featured {
    padding-block: 40px;
  }
  .about-badge {
    height: 320px;
    border-radius: 22px 100px 22px 100px;
  }
  .about-points {
    display: grid;
  }
  .stars {
    margin-top: 24px;
  }
  .google-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .google-mark {
    margin: auto;
  }
  .google-actions {
    flex-direction: column;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .contact {
    padding: 65px 18px;
  }
  .contact form {
    padding: 24px 18px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer-main > div + div {
    padding-top: 35px;
    border-top: 1px solid #ffffff18;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
  }
  .footer-bottom > span[aria-hidden] {
    display: none;
  }
  .contact-web {
    padding-left: 38px;
  }
  .share {
    margin-top: 38px;
  }
}
@media (min-width: 1800px) {
  .hero {
    max-width: 1520px;
  }
  .hero-copy {
    padding-left: 40px;
  }
  .hero-image {
    height: 650px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Structure smartphone indépendante */
/* Ancienne couche mobile neutralisée : évite tout conflit avec la fondation unique. */
@media screen and (max-width: 0px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  * {
    min-width: 0;
  }
  header {
    width: 100%;
  }
  .head {
    position: relative;
    width: 100%;
    max-width: none;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .desktop-nav,
  .head-actions {
    display: none !important;
  }
  .burger {
    display: grid !important;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #315b4b12;
  }
  .head .logo {
    max-width: calc(100% - 54px);
  }
  .head .logo strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-nav {
    width: 100%;
    max-width: none;
    overflow: hidden;
  }
  .hero,
  .section,
  .contact,
  footer {
    width: 100%;
    max-width: none;
  }
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 42px 18px 64px;
    min-height: 0;
    align-items: stretch;
    gap: 38px;
  }
  .hero-copy {
    width: 100%;
    padding: 0;
  }
  .hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.55rem, 12.8vw, 3.35rem);
    line-height: 1.02;
  }
  .hero h1 br {
    display: none;
  }
  .hero-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .hero-buttons .button,
  .hero-buttons .text-link {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
  }
  .hero-buttons .text-link {
    justify-content: center;
  }
  .trust {
    width: 100%;
  }
  .hero-image {
    width: 100%;
    max-width: 100%;
    height: min(108vw, 430px);
    min-height: 340px;
    order: 2;
  }
  .hero-image img {
    width: 100%;
    max-width: 100%;
  }
  .service-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .service-grid article,
  .price-grid article,
  .review-grid blockquote {
    width: 100%;
    max-width: 100%;
  }
  .service-grid article {
    min-height: 0;
  }
  .service-photo {
    width: calc(100% + 50px);
  }
  .method,
  .about,
  .faq,
  .contact,
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .about-badge,
  .method aside,
  .contact form {
    width: 100%;
    max-width: 100%;
  }
  .about-badge {
    height: min(105vw, 430px);
  }
  .contact {
    padding-inline: 18px;
  }
  .contact-lines,
  .contact-lines > a,
  .contact-lines > div,
  .contact-web,
  .contact-web a {
    max-width: 100%;
  }
  .contact-lines > a,
  .contact-lines > div {
    align-items: flex-start;
  }
  .contact-web a {
    overflow-wrap: anywhere;
  }
  .two {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact input,
  .contact select,
  .contact textarea {
    min-width: 0;
    max-width: 100%;
  }
  .google-card,
  .google-actions {
    width: 100%;
  }
  footer {
    padding-inline: 18px;
  }
  .footer-bottom {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .copyright {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Version téléphone indépendante : activée avant l'affichage par détection de l'appareil. */
html.mobile-device,
html.mobile-device body,
html.mobile-device main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
html.mobile-device {
  scroll-padding-top: 68px;
}
html.mobile-device * {
  min-width: 0;
}
html.mobile-device header,
html.mobile-device .head,
html.mobile-device .hero,
html.mobile-device .section,
html.mobile-device .contact,
html.mobile-device footer {
  width: 100%;
  max-width: none;
}
html.mobile-device .head {
  height: 68px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
html.mobile-device .desktop-nav,
html.mobile-device .head-actions {
  display: none !important;
}
html.mobile-device .burger {
  display: grid !important;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 50%;
  background: #315b4b12;
  color: var(--green);
  padding: 9px;
}
html.mobile-device .head .logo {
  max-width: calc(100% - 54px);
}
html.mobile-device .head .logo > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}
html.mobile-device .head .logo strong {
  font-size: clamp(0.96rem, 4.7vw, 1.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
html.mobile-device .mobile-nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 10px 18px 20px;
  border-top: 1px solid #315b4b18;
  background: var(--cream);
}
html.mobile-device .mobile-nav > a:not(.button) {
  padding: 13px 4px;
  border-bottom: 1px solid #315b4b18;
  font-weight: 700;
}
html.mobile-device .mobile-nav > a:nth-last-child(2) {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
}
html.mobile-device .mobile-nav .button {
  margin-top: 7px;
}
html.mobile-device .mobile-nav svg {
  width: 18px;
}
html.mobile-device .section {
  padding: 62px 18px;
}
html.mobile-device .hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 38px;
  padding: 42px 18px 64px;
}
html.mobile-device .hero-copy {
  width: 100%;
  padding: 0;
}
html.mobile-device .hero h1 {
  max-width: 100%;
  font-size: clamp(2.45rem, 12.5vw, 3.25rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}
html.mobile-device .hero h1 br,
html.mobile-device .intro h2 br {
  display: none;
}
html.mobile-device .lead {
  font-size: 1rem;
  line-height: 1.65;
}
html.mobile-device .hero-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 26px 0;
}
html.mobile-device .hero-buttons .button,
html.mobile-device .hero-buttons .text-link {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}
html.mobile-device .trust {
  width: 100%;
  display: grid;
  gap: 12px;
}
html.mobile-device .hero-image {
  width: 100%;
  max-width: 100%;
  height: min(108vw, 430px);
  min-height: 340px;
  border-radius: 80px 18px 80px 18px;
}
html.mobile-device .hero-image img {
  width: 100%;
  max-width: 100%;
  object-position: 72% center;
}

/* Première section reconstruite pour les téléphones tenus verticalement. */
@media screen and (max-width: 767px) and (orientation: portrait) {
  html.mobile-device .hero-desktop {
    display: none;
  }
  html.mobile-device .hero-mobile {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 28px 18px 54px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
  }
  html.mobile-device .hero-mobile .eyebrow {
    margin-bottom: 14px;
    font-size: clamp(0.69rem, 3.15vw, 0.78rem);
    line-height: 1.35;
  }
  html.mobile-device .hero-mobile h1 {
    width: 100%;
    margin: 0 0 18px;
    font-size: clamp(2.35rem, 11.4vw, 3.05rem);
    line-height: 1.01;
    overflow-wrap: normal;
  }
  html.mobile-device .hero-mobile h1 br {
    display: block;
  }
  html.mobile-device .hero-mobile-image {
    position: relative;
    align-self: center;
    width: 82vw;
    height: clamp(315px, 94vw, 405px);
    margin-bottom: 48px;
    border-radius: 72px 18px 72px 18px;
  }
  html.mobile-device .hero-mobile-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    border-radius: inherit;
  }
  html.mobile-device .hero-mobile .note {
    left: 10px;
    right: 10px;
    bottom: -27px;
    padding: 12px 14px;
    gap: 10px;
  }
  html.mobile-device .hero-mobile .note b {
    font-size: 0.96rem;
  }
  html.mobile-device .hero-mobile .note span {
    font-size: 0.76rem;
  }
  html.mobile-device .hero-mobile .lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  html.mobile-device .hero-mobile .hero-buttons {
    width: 100%;
    margin: 24px 0;
  }
  html.mobile-device .hero-mobile .trust {
    width: 100%;
  }
}
html.mobile-device .note {
  left: 12px;
  right: 12px;
  bottom: -24px;
  padding: 13px;
}
html.mobile-device .section-head {
  display: block;
}
html.mobile-device .section-head > p {
  margin-top: 20px;
}
html.mobile-device .service-grid,
html.mobile-device .price-grid,
html.mobile-device .review-grid,
html.mobile-device .method,
html.mobile-device .about,
html.mobile-device .faq,
html.mobile-device .contact,
html.mobile-device .footer-main,
html.mobile-device .two {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
html.mobile-device .service-grid article,
html.mobile-device .price-grid article,
html.mobile-device .review-grid blockquote,
html.mobile-device .about-badge,
html.mobile-device .method aside,
html.mobile-device .contact form {
  width: 100%;
  max-width: 100%;
}
html.mobile-device .service-grid article {
  min-height: 0;
}
html.mobile-device .service-photo {
  height: 210px;
}
html.mobile-device .price-grid .featured {
  padding-block: 40px;
}
html.mobile-device .stars {
  margin-top: 24px;
}
html.mobile-device .method,
html.mobile-device .about,
html.mobile-device .faq,
html.mobile-device .contact {
  gap: 45px;
}
html.mobile-device .method aside {
  padding: 48px 28px;
  border-radius: 80px 20px 80px 20px;
}
html.mobile-device .about-badge {
  height: min(105vw, 430px);
  border-radius: 22px 100px 22px 100px;
}
html.mobile-device .about-points {
  display: grid;
}
html.mobile-device .google-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}
html.mobile-device .google-mark {
  margin: auto;
}
html.mobile-device .google-actions {
  width: 100%;
  flex-direction: column;
}
html.mobile-device .contact {
  padding: 65px 18px;
}
html.mobile-device .contact form {
  padding: 24px 18px;
}
html.mobile-device .contact-lines,
html.mobile-device .contact-lines > a,
html.mobile-device .contact-lines > div,
html.mobile-device .contact-web,
html.mobile-device .contact-web a,
html.mobile-device .contact input,
html.mobile-device .contact select,
html.mobile-device .contact textarea {
  max-width: 100%;
}
html.mobile-device .contact-lines > a,
html.mobile-device .contact-lines > div {
  align-items: flex-start;
}
html.mobile-device .contact-web a,
html.mobile-device .copyright {
  overflow-wrap: anywhere;
}
html.mobile-device footer {
  padding: 62px 18px 24px;
}
html.mobile-device .footer-main {
  gap: 42px;
}
html.mobile-device .footer-main > div + div {
  padding-top: 35px;
  border-top: 1px solid #ffffff18;
}
html.mobile-device .footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.6;
}
html.mobile-device .footer-bottom > span[aria-hidden] {
  display: none;
}

/* Accueil unique : structure mobile native, recomposée en grille sur les grands écrans. */
.primary-hero-v2 {
  width: 100%;
  padding: 28px 18px 56px;
  overflow: hidden;
}
.primary-hero-v2 .primary-title-desktop {
  display: none;
}
.primary-hero-v2 .primary-title-mobile {
  display: block;
}
.primary-hero-v2 h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.4rem, 11.6vw, 3.1rem);
  line-height: 1.01;
}
.primary-hero-image {
  position: relative;
  width: 82vw;
  height: clamp(315px, 94vw, 405px);
  margin: 0 auto 49px;
  border-radius: 72px 18px 72px 18px;
}
.primary-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  border-radius: inherit;
}
.primary-hero-image .note {
  left: 10px;
  right: 10px;
  bottom: -27px;
  padding: 12px 14px;
  gap: 10px;
}
.primary-hero-image .note b {
  font-size: 0.96rem;
}
.primary-hero-image .note span {
  font-size: 0.76rem;
}
.primary-hero-details .lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.primary-hero-details .hero-buttons {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.primary-hero-details .hero-buttons .button,
.primary-hero-details .hero-buttons .text-link {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}
.primary-hero-details .trust {
  display: grid;
  gap: 12px;
}

@media screen and (min-width: 768px), screen and (orientation: landscape) {
  .primary-hero-v2 {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 28px;
    max-width: 1440px;
    margin: auto;
    padding: 45px 42px 70px;
    overflow: visible;
  }
  .primary-hero-intro,
  .primary-hero-details {
    grid-column: 1;
    padding-left: max(0px, calc((100vw - 1360px) / 2));
  }
  .primary-hero-intro {
    align-self: end;
  }
  .primary-hero-details {
    align-self: start;
  }
  .primary-hero-v2 .primary-title-desktop {
    display: block;
  }
  .primary-hero-v2 .primary-title-mobile {
    display: none;
  }
  .primary-hero-v2 h1 {
    margin: 18px 0 25px;
    font-size: clamp(2.65rem, 8vw, 5.8rem);
    line-height: 0.98;
  }
  .primary-hero-image {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 610px;
    margin: 0;
    border-radius: 180px 24px 180px 24px;
  }
  .primary-hero-image img {
    object-position: center;
  }
  .primary-hero-image .note {
    left: -42px;
    right: auto;
    bottom: 45px;
    padding: 16px 20px;
    gap: 13px;
  }
  .primary-hero-image .note b,
  .primary-hero-image .note span {
    font-size: inherit;
  }
  .primary-hero-details .lead {
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .primary-hero-details .hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 30px 0;
  }
  .primary-hero-details .hero-buttons .button,
  .primary-hero-details .hero-buttons .text-link {
    width: auto;
    min-height: 0;
  }
  .primary-hero-details .trust {
    display: flex;
    gap: 18px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
  .primary-hero-v2 {
    min-height: auto;
  }
  .primary-hero-image {
    height: 500px;
  }
}

/* Smartphone horizontal : composition bureau compacte et image panoramique. */
@media screen and (max-width: 950px) and (max-height: 500px) and (orientation: landscape) {
  .primary-hero-v2 {
    min-height: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0 24px;
    padding: 26px 28px 38px;
  }
  .primary-hero-intro,
  .primary-hero-details {
    padding-left: 0;
  }
  .primary-hero-v2 h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.35rem, 6.7vw, 3rem);
    line-height: 0.98;
  }
  .primary-hero-image {
    align-self: start;
    height: clamp(245px, calc(100svh - 86px), 330px);
    border-radius: 88px 18px 88px 18px;
  }
  .primary-hero-image img {
    object-position: 64% center;
  }
  .primary-hero-image .note {
    left: -18px;
    bottom: 14px;
    padding: 10px 13px;
  }
  .primary-hero-image .note span {
    font-size: 0.72rem;
  }
  .primary-hero-details .lead {
    font-size: 0.94rem;
    line-height: 1.5;
  }
  .primary-hero-details .hero-buttons {
    display: grid;
    gap: 10px;
    margin: 18px 0;
  }
  .primary-hero-details .hero-buttons .button,
  .primary-hero-details .hero-buttons .text-link {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }
  .primary-hero-details .trust {
    display: grid;
    gap: 7px;
  }
}

/* Composant réellement indépendant pour le smartphone tenu horizontalement. */
.landscape-hero-v3 {
  display: none;
}
html.phone-landscape .primary-hero-v2 {
  display: none;
}
html.phone-landscape .landscape-hero-v3 {
  display: grid;
  width: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 24px;
  padding: 24px 28px 34px;
  overflow: hidden;
}
html.phone-landscape .landscape-hero-copy {
  min-width: 0;
}
html.phone-landscape .landscape-hero-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 0.68rem;
  line-height: 1.35;
}
html.phone-landscape .landscape-hero-copy h1 {
  margin: 0 0 15px;
  font-size: clamp(2.15rem, 5.5vw, 2.85rem);
  line-height: 0.98;
}
html.phone-landscape .landscape-hero-copy .lead {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.45;
}
html.phone-landscape .landscape-hero-copy .hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 17px 0;
}
html.phone-landscape .landscape-hero-copy .button {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.82rem;
}
html.phone-landscape .landscape-hero-copy .text-link {
  width: auto;
  min-height: 42px;
  font-size: 0.82rem;
}
html.phone-landscape .landscape-hero-copy .trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
}
html.phone-landscape .landscape-hero-image {
  position: relative;
  width: 100%;
  height: clamp(245px, calc(100svh - 112px), 310px);
  border-radius: 92px 18px 92px 18px;
}
html.phone-landscape .landscape-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  border-radius: inherit;
}
html.phone-landscape .landscape-hero-image .note {
  left: -18px;
  right: 12px;
  bottom: 12px;
  padding: 10px 13px;
  gap: 9px;
}
html.phone-landscape .landscape-hero-image .note b {
  font-size: 0.83rem;
}
html.phone-landscape .landscape-hero-image .note span {
  font-size: 0.69rem;
}

/* Le menu existe dans le HTML statique mais reste fermé jusqu'à l'action utilisateur. */
html.mobile-device .mobile-nav:not(.open) {
  display: none;
}
