@import "tailwindcss";

/* Ajustements de la version publique */
.hero {
  min-height: calc(100vh - 78px);
}
.hero-image:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(
    90deg,
    var(--sand),
    rgba(241, 229, 216, 0.66) 34%,
    rgba(241, 229, 216, 0)
  );
  pointer-events: none;
}
.hero-image .image-note {
  z-index: 2;
}
.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.service-card > img {
  height: 210px;
  object-fit: cover;
}
.service-card:last-child > img {
  object-position: center 30%;
}
.service-card-copy {
  padding: 25px 25px 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.service-card-copy > span {
  font:
    italic 25px Georgia,
    serif;
  color: var(--copper);
}
.service-card-copy a {
  margin-top: auto;
}
.gallery figure:nth-child(2) img {
  height: 430px;
}
.google-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 30px;
  color: #f8f4ef;
}
.contact-details > b {
  font:
    22px Georgia,
    serif;
}
.contact-details a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}
.contact-details a > span {
  color: inherit;
}
.contact-details a:has(.link-label) {
  flex-wrap: wrap;
}
.contact-details .link-label {
  font-weight: 400;
  color: #e6e5db;
}
.external-link-icon {
  flex: 0 0 auto;
}
.contact-details span {
  color: #e6e5db;
}
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 8px 0 10px;
  padding-left: 14px;
  border-left: 1px solid #ffffff66;
  font-size: 13px;
}
.opening-hours > b {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.submit:disabled {
  opacity: 0.72;
  cursor: wait;
}
.error {
  background: #f7e5e0;
  color: #7c342b;
  padding: 12px;
  font-size: 12px;
}
:root {
  --ink: #332522;
  --brown: #49332e;
  --copper: #b86f57;
  --cream: #fbf6ef;
  --sand: #f1e5d8;
  --sage: #737663;
  --white: #fffdfa;
  --line: #dfd0c3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
.demo-bar {
  height: 29px;
  background: var(--brown);
  color: #f7eee7;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.site-header {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 239, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid #49332e1f;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font:
    18px Georgia,
    serif;
  color: #94513e;
}
.brand strong {
  display: block;
  font:
    22px Georgia,
    serif;
  line-height: 1.05;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #76635e;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.1vw, 34px);
  font-size: 13px;
}
.main-nav > a:not(.mobile-phone),
.footer-nav > a,
.header-phone > span,
.mobile-phone > span,
.text-link > span,
.contact-details .link-underline,
.service-card a > span,
.footer-bottom a {
  position: relative;
}
.main-nav > a:not(.mobile-phone)::after,
.footer-nav > a::after,
.header-phone > span::after,
.mobile-phone > span::after,
.text-link > span::after,
.contact-details .link-underline::after,
.service-card a > span::after,
.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.22s;
}
.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.footer-nav > a:hover::after,
.footer-nav > a:focus-visible::after,
.header-phone:hover > span::after,
.header-phone:focus-visible > span::after,
.mobile-phone:hover > span::after,
.mobile-phone:focus-visible > span::after,
.text-link:hover > span::after,
.text-link:focus-visible > span::after,
.contact-details a:hover .link-underline::after,
.contact-details a:focus-visible .link-underline::after,
.service-card a:hover > span::after,
.service-card a:focus-visible > span::after,
.footer-bottom a:hover::after,
.footer-bottom a:focus-visible::after {
  transform: scaleX(1);
}
.mobile-phone {
  display: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone,
.text-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}
.button {
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid #94513e;
  background: #94513e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background-color 0.2s,
    border-color 0.2s;
}
.button:hover,
.button:focus-visible {
  background: var(--brown);
  border-color: var(--brown);
}
.button.small {
  min-height: 42px;
  padding: 9px 15px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 45px;
  height: 45px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}
.hero {
  min-height: calc(100vh - 107px);
  display: grid;
  grid-template-columns: 46% 54%;
  grid-template-rows: auto auto;
  background: var(--sand);
}
.hero-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding: clamp(70px, 9vw, 140px) 6vw 0;
}
.hero-details {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding: 0 6vw clamp(70px, 9vw, 140px);
}
.hero-image {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.hero-title-line { white-space: nowrap; }
.eyebrow {
  margin: 0 0 17px;
  color: #94513e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.contact-section h2 {
  font:
    400 clamp(42px, 5.3vw, 78px) / 0.98 Georgia,
    serif;
  letter-spacing: -0.025em;
  margin: 0;
}
.hero h1 em {
  color: #94513e;
  font-weight: 400;
}
.lead {
  max-width: 600px;
  font-size: 17px;
  color: #65524d;
  margin: 26px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.hero-image,
.about-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  height: 100%;
  object-fit: cover;
}
.image-note {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: #332522c7;
  color: #fff;
  padding: 5px 8px;
  font-size: 9px;
}
.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid #d7c4b5;
  font-size: 11px;
  color: #6b5852;
}
.trust-row span:before {
  content: "·";
  font-weight: 900;
  color: var(--copper);
  margin-right: 8px;
}
.section {
  padding: 100px max(6vw, 24px);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: -20px;
}
.section-heading h2,
.pricing h2,
.about h2,
.faq h2 {
  font-size: clamp(38px, 4.7vw, 64px);
}
.section-heading > p:last-child {
  margin: 0;
  max-width: 560px;
  color: #705e58;
}
.services,
.pricing,
.reviews {
  background: var(--white);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.service-card {
  padding: 34px 25px 30px;
  border-right: 1px solid var(--line);
}
.service-card:last-child {
  border: 0;
}
.service-card > span {
  font:
    italic 25px Georgia,
    serif;
  color: var(--copper);
}
.service-card h3 {
  font:
    24px Georgia,
    serif;
  margin: 26px 0 12px;
}
.service-card p {
  font-size: 14px;
  color: #725f59;
  min-height: 112px;
}
.service-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94513e;
  font-size: 12px;
  font-weight: 700;
}
.method {
  background: var(--brown);
  color: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}
.method .eyebrow {
  color: #d99c84;
}
.method h2 {
  font-size: clamp(38px, 4.4vw, 62px);
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #ffffff29;
}
.steps b {
  width: 35px;
  height: 35px;
  border: 1px solid #d99c84;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e5ad96;
  font:
    16px Georgia,
    serif;
}
.steps h3 {
  margin: 0;
  font:
    24px Georgia,
    serif;
}
.steps p {
  margin: 5px 0;
  color: #d7c9c3;
  font-size: 14px;
}
.gallery-section {
  background: #f4ece4;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}
.gallery figure {
  margin: 0;
  background: #fff;
}
.gallery img {
  height: 430px;
  object-fit: cover;
}
.gallery figure:nth-child(2) img {
  height: 360px;
}
.gallery figcaption {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.gallery figcaption b {
  font:
    21px Georgia,
    serif;
}
.gallery figcaption span,
.demo-notice {
  color: #806c65;
  font-size: 12px;
}
.demo-notice {
  text-align: center;
  margin: 24px 0 0;
}
.pricing {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
}
.pricing-title p:not(.eyebrow) {
  color: #715e57;
  max-width: 470px;
}
.price-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.price-list b {
  font:
    18px Georgia,
    serif;
  color: #94513e;
  white-space: nowrap;
}
.price-note {
  grid-column: 2;
  font-size: 11px;
  color: #806e67;
  margin: 0;
}
.about {
  background: var(--sand);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  align-items: center;
}
.about-image img {
  height: 640px;
  object-fit: cover;
}
.about-copy > p:not(.eyebrow) {
  font-size: 16px;
  color: #6f5b55;
  max-width: 650px;
}
.about blockquote {
  font:
    italic 26px/1.4 Georgia,
    serif;
  color: #94513e;
  margin: 36px 0;
  padding-left: 23px;
  border-left: 1px solid var(--copper);
}
.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.value-chips span {
  border: 1px solid #cfb7a7;
  border-radius: 30px;
  padding: 7px 12px;
  font-size: 11px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-grid article {
  background: var(--cream);
  padding: 28px;
}
.stars {
  color: var(--copper);
  letter-spacing: 0.12em;
  font-size: 12px;
}
.review-grid article p {
  font:
    18px/1.55 Georgia,
    serif;
  min-height: 145px;
}
.review-grid article b,
.review-grid article span {
  display: block;
  font-size: 12px;
}
.review-grid article span {
  color: #8a756e;
}
.google-box {
  margin-top: 35px;
  border: 1px solid var(--line);
  padding: 25px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  align-items: center;
}
.google-g {
  font: bold 32px Arial;
  color: #4285f4;
}
.google-box h3 {
  margin: 0;
  font:
    20px Georgia,
    serif;
}
.google-box p {
  margin: 5px 0;
  color: #75615b;
  font-size: 13px;
}
.google-actions {
  display: flex;
  gap: 8px;
}
.google-actions button {
  padding: 10px 12px;
  border: 1px solid #c9b8ae;
  background: transparent;
  color: #81716a;
}
.faq {
  background: #f3e9df;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}
.accordions details {
  border-bottom: 1px solid #d5c1b3;
  padding: 21px 0;
}
.accordions summary {
  cursor: pointer;
  font:
    19px Georgia,
    serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.accordions summary::-webkit-details-marker {
  display: none;
}
.accordions summary::marker {
  content: "";
}
.accordions summary:after {
  content: "+";
  color: var(--copper);
}
.accordions details[open] summary:after {
  content: "−";
}
.accordions p {
  color: #705c56;
  font-size: 14px;
}
.contact-section {
  background: var(--sage);
  color: #fff;
  padding: 100px max(6vw, 24px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}
.contact-section .eyebrow {
  color: #edd2c4;
}
.contact-copy > p:not(.eyebrow) {
  color: #e6e5db;
}
.contact-phone {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 32px 0;
  font-size: 21px;
}
.contact-phone small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #dedbcf;
}
.location {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #dedbcf;
}
.contact-form {
  background: var(--white);
  color: var(--ink);
  padding: 35px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d4c5ba;
  background: #fffdf9;
  padding: 12px;
  margin-top: 6px;
  font-size: 16px;
  color: var(--ink);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 9px;
  font-weight: 400;
  letter-spacing: 0;
}
.consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0;
}
.submit {
  border: 0;
  cursor: pointer;
}
.success {
  background: #e8f0e3;
  color: #40503c;
  padding: 12px;
  font-size: 12px;
}
footer {
  background: #2e211e;
  color: #f5ece5;
  padding: 72px max(6vw, 24px) 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr 1.2fr;
  gap: clamp(55px, 7vw, 115px);
  align-items: start;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.footer-brand .brand-mark {
  color: #d9957b;
}
.footer-grid > div:first-child > p {
  max-width: 380px;
  color: #bfaea7;
  font-size: 13px;
}
.footer-grid h3 {
  margin: 2px 0 20px;
  color: #d9957b;
  font: 700 11px Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}
.footer-info details {
  border-bottom: 1px solid #ffffff21;
  padding: 8px 0;
}
.footer-info summary {
  cursor: pointer;
  font-size: 13px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 32px;
}
.footer-info summary::-webkit-details-marker {
  display: none;
}
.footer-info summary::marker {
  content: "";
}
.footer-info summary::after {
  content: "+";
  color: #d9957b;
  font-size: 17px;
  line-height: 1;
}
.footer-info details[open] summary::after {
  content: "−";
}
.footer-info p {
  color: #c7b8b1;
  font-size: 11px;
}
.share {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  max-width: 1360px;
  margin: 56px auto 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.share > div {
  display: flex;
  gap: 8px;
}
.share a,
.share button {
  width: 34px;
  height: 34px;
  border: 1px solid #75615b;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.share a:hover,
.share a:focus-visible,
.share button:hover,
.share button:focus-visible {
  border-color: #d88f74;
  color: #d88f74;
}

@media (min-width: 761px) and (hover: hover) {
  .button:not(:disabled):hover,
  .button:not(:disabled):focus-visible,
  .share a:hover,
  .share a:focus-visible,
  .share button:not(:disabled):hover,
  .share button:not(:disabled):focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 31, 27, 0.15);
  }
}
.footer-bottom {
  border-top: 1px solid #ffffff1f;
  width: 100%;
  max-width: 1360px;
  margin: 34px auto 0;
  padding-top: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 9px;
  text-align: center;
  font-size: 10px;
  color: #ad9e98;
}
.footer-bottom span + span::before {
  content: "·";
  margin-right: 9px;
  color: #d9957b;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }
  .header-phone {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy {
    padding: 60px 5vw;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:nth-child(2) {
    border-right: 0;
  }
  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 96px;
  }
  .demo-bar {
    height: 27px;
    font-size: 8px;
  }
  .site-header {
    height: 67px;
    padding: 0 18px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand strong {
    font-size: 19px;
  }
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 67px;
    background: var(--cream);
    padding: 20px 22px 25px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px #3325221f;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav > a {
    padding: 9px 0;
  }
  .main-nav .mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--line);
    margin-top: 5px;
    padding-top: 17px;
    font-weight: 700;
  }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    padding: 60px 22px 45px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .lead {
    font-size: 16px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .hero-actions .text-link {
    justify-content: center;
  }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    margin-top: 30px;
  }
  .hero-image {
    height: 430px;
  }
  .hero-image img {
    height: 100%;
    object-position: 63% center;
  }
  .section {
    padding: 72px 22px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading .eyebrow {
    margin-bottom: 17px;
  }
  .section-heading h2,
  .pricing h2,
  .about h2,
  .faq h2,
  .contact-section h2 {
    font-size: 40px;
  }
  .section-heading > p:last-child {
    margin-top: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
    padding: 28px 8px;
  }
  .service-card:last-child {
    border-bottom: 0 !important;
  }
  .service-card p {
    min-height: auto;
  }
  .method,
  .pricing,
  .about,
  .faq,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .steps {
    margin-top: 30px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img,
  .gallery figure:nth-child(2) img {
    height: 390px;
  }
  .price-list > div {
    flex-direction: column;
    gap: 4px;
  }
  .price-note {
    grid-column: 1;
  }
  .about {
    padding-top: 0;
  }
  .about-image {
    margin: 0 -22px;
  }
  .about-image img {
    height: 520px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-grid article p {
    min-height: auto;
  }
  .google-box {
    grid-template-columns: 40px 1fr;
  }
  .google-actions {
    grid-column: 1/-1;
    flex-direction: column;
  }
  .contact-section {
    padding-top: 72px;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-nav {
    border-top: 1px solid #ffffff21;
    padding-top: 28px;
  }
  .share {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom span + span::before {
    display: none;
  }
  .button {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 42px;
  }
  .section-heading h2,
  .pricing h2,
  .about h2,
  .faq h2,
  .contact-section h2 {
    font-size: 36px;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 20px 14px;
  }
  .gallery img,
  .gallery figure:nth-child(2) img {
    height: 330px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Finitions demandées pour la version publique */
html {
  scroll-padding-top: 88px;
}
.hero {
  min-height: calc(100vh - 78px);
}
.gallery figure:nth-child(2) img {
  height: 430px;
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }
  .hero-image:before {
    inset: 0 0 auto 0;
    width: auto;
    height: 24%;
    background: linear-gradient(
      180deg,
      var(--sand),
      rgba(241, 229, 216, 0.55) 42%,
      rgba(241, 229, 216, 0)
    );
  }
  .gallery img,
  .gallery figure:nth-child(2) img {
    height: 390px;
  }
}
@media (max-width: 360px) {
  .gallery img,
  .gallery figure:nth-child(2) img {
    height: 330px;
  }
}

/* Navigation mobile indépendante et protection anti-débordement */
.mobile-navigation {
  display: none;
}

@media (max-width: 760px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .site-header {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
  .desktop-nav,
  .header-actions {
    display: none !important;
  }
  .mobile-navigation {
    display: block;
    flex: 0 0 44px;
  }
  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    padding: 9px;
    touch-action: manipulation;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .menu-toggle span {
    transition: transform 0.2s, opacity 0.2s;
  }
  .mobile-panel {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    padding: 16px 20px 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px #3325221f;
  }
  .mobile-panel.open {
    display: flex;
    flex-direction: column;
  }
  .mobile-panel > a:not(.button) {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    border-bottom: 1px solid #dfd0c380;
  }
  .mobile-panel .mobile-phone {
    gap: 8px;
    margin: 4px 0 10px;
    font-weight: 700;
  }
  .mobile-appointment {
    width: 100%;
    min-height: 48px;
  }
  .brand {
    min-width: 0;
    max-width: calc(100% - 54px);
  }
  .brand > span:last-child {
    min-width: 0;
  }
  .brand strong,
  .brand small {
    white-space: nowrap;
  }
  .hero,
  .method,
  .pricing,
  .about,
  .faq,
  .contact-section,
  .section-heading,
  .service-grid,
  .gallery,
  .review-grid,
  .footer-grid,
  .field-row {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
  }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-copy,
  .hero-image,
  .section,
  .contact-section,
  .contact-copy,
  .contact-form,
  .service-card,
  .gallery figure,
  .review-grid article,
  .google-box,
  footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero h1,
  .section h2,
  .contact-section h2,
  p,
  a,
  span,
  label,
  summary {
    overflow-wrap: anywhere;
  }
  img,
  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }
  .button,
  .service-card a,
  .google-actions button {
    min-height: 44px;
    touch-action: manipulation;
  }
  .contact-details a {
    word-break: break-word;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 12px;
  }
  .brand {
    gap: 8px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.13em;
  }
}


/* Adaptation statique mobile : aucune détection JavaScript. */
@media (max-width:820px){
/* Version mobile autonome, chargée après le design bureau. */
html,html body{width:100%;max-width:100%;margin:0;overflow-x:hidden!important;scroll-padding-top:70px}
html body{min-width:0;-webkit-text-size-adjust:100%}
html *,html *::before,html *::after{box-sizing:border-box;max-width:100%}
html main{display:block;width:100%;min-width:0;max-width:100%;padding-top:70px;overflow-x:hidden!important}
html .site-header{position:fixed;top:0;right:0;left:0;z-index:1000;display:flex;align-items:center;justify-content:space-between;width:100%;height:70px;min-width:0;padding:0 16px;background:rgba(251,246,239,.98);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
html .desktop-nav,html .header-actions{display:none!important}
html .brand{display:flex;flex:1 1 auto;min-width:0;max-width:calc(100% - 52px);gap:9px}
html .brand-mark{flex:0 0 38px;width:38px;height:38px;font-size:16px}
html .brand>span:last-child{min-width:0;overflow:hidden}
html .brand strong{overflow:hidden;font-size:18px;line-height:1.1;white-space:nowrap;text-overflow:ellipsis}
html .brand small{overflow:hidden;font-size:8px;letter-spacing:.14em;white-space:nowrap;text-overflow:ellipsis}
html .mobile-navigation{display:block!important;flex:0 0 44px;width:44px}
html .menu-toggle{display:block!important;width:44px;height:44px;padding:9px;border:0;background:transparent;touch-action:manipulation}
html .menu-toggle span{display:block;width:100%;height:1px;margin:6px 0;background:var(--ink);transition:transform .2s,opacity .2s}
html .menu-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
html .menu-toggle.active span:nth-child(2){opacity:0}
html .menu-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
html .mobile-panel{display:none;position:absolute;top:70px;right:0;left:0;width:100%;max-width:100%;padding:14px 20px 22px;background:var(--cream);border-bottom:1px solid var(--line);box-shadow:0 12px 22px rgba(51,37,34,.14)}
html .mobile-panel.open{display:flex;flex-direction:column}
html .mobile-panel>a:not(.button){display:flex;align-items:center;width:100%;min-height:46px;padding:9px 0;border-bottom:1px solid rgba(223,208,195,.65)}
html .mobile-panel .mobile-phone{gap:8px;margin-bottom:10px;font-weight:700}
html .mobile-appointment{width:100%;min-height:48px}
html .hero{display:flex!important;flex-direction:column!important;width:100%;min-height:0}
html .hero-intro{width:100%;min-width:0;padding:22px 22px 0!important}
html .hero h1{max-width:100%;margin:0;font-size:clamp(42px,14vw,56px);line-height:.98;overflow-wrap:normal;word-break:normal}
html .hero .lead{width:100%;max-width:100%;margin:22px 0;font-size:16px}
html .hero-actions{display:flex;flex-direction:column;width:100%;gap:12px}
html .hero-actions .button,html .hero-actions .text-link{width:100%;min-height:48px;justify-content:center}
html .trust-row{display:grid;grid-template-columns:1fr;width:100%;gap:7px;margin-top:26px}
html .hero-image{width:100%;height:390px;min-width:0;overflow:hidden}
html .hero-image::before{inset:0 0 auto 0;width:100%;height:18%;background:linear-gradient(180deg,var(--sand),rgba(241,229,216,0))}
html .hero-image img{width:100%;height:100%;max-width:100%;object-fit:cover;object-position:64% center}
html .section,html .contact-section{display:block!important;width:100%;min-width:0;max-width:100%;padding:68px 22px}
html .section-heading,html .method,html .pricing,html .about,html .faq,html .contact-section{grid-template-columns:minmax(0,1fr)!important}
html .section-heading{display:block;width:100%;margin-bottom:32px}
html .section-heading .eyebrow,html .method-intro .eyebrow,html .pricing-title .eyebrow,html .about-copy .eyebrow,html .faq .eyebrow,html .contact-copy .eyebrow{position:static;display:block;width:100%;margin:0 0 16px;line-height:1.35;transform:none}
html .section-heading h2,html .method-intro h2,html .pricing-title h2,html .about-copy h2,html .faq h2,html .contact-copy h2{position:static;display:block;clear:both;margin-top:0}
html .section h2,html .contact-section h2{width:100%;max-width:100%;font-size:clamp(35px,11vw,44px);line-height:1.02;overflow-wrap:normal;word-break:normal}
html .section-heading>p:last-child{width:100%;margin-top:18px}
html .service-grid,html .gallery,html .review-grid,html .footer-grid,html .field-row{display:grid;grid-template-columns:minmax(0,1fr)!important;width:100%;min-width:0;max-width:100%}
html .service-card{width:100%;min-width:0;padding:27px 4px;border-right:0;border-bottom:1px solid var(--line)}
html .service-card p{min-height:0}
html .service-card a{min-height:44px;align-items:center}
html .method{display:block!important}
html .steps{width:100%;margin-top:28px}
html .steps li{grid-template-columns:38px minmax(0,1fr);width:100%}
html .gallery{gap:16px}
html .gallery figure,html .review-grid article{width:100%;min-width:0;margin:0}
html .gallery img,html .gallery figure:nth-child(2) img{width:100%;height:360px;object-fit:cover}
html .price-list,html .price-note{width:100%;min-width:0;grid-column:1}
html .price-list>div{display:flex;flex-direction:column;width:100%;gap:3px}
html .price-list b{white-space:normal}
html .about-image{width:calc(100% + 44px);max-width:none;height:470px;margin:-68px -22px 38px}
html .about-image img{width:100%;height:100%;object-fit:cover}
html .value-chips{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:10px}
html .value-chips span{display:flex;align-items:center;justify-content:center;width:100%;min-height:48px;padding:8px 10px;text-align:center;line-height:1.2}
html .review-grid{gap:14px}
html .review-grid article p{min-height:0}
html .google-box{display:grid;grid-template-columns:40px minmax(0,1fr);width:100%;min-width:0;padding:20px 16px}
html .google-actions{display:grid;grid-column:1/-1;grid-template-columns:1fr;width:100%}
html .google-actions button{width:100%;min-height:46px}
html .accordions,html .contact-copy,html .contact-form{width:100%;min-width:0;max-width:100%}
html .accordions{margin-top:30px}
html .accordions summary{gap:15px}
html .contact-form{margin-top:40px;padding:23px 16px}
html .contact-form label,html .contact-form input,html .contact-form select,html .contact-form textarea{width:100%;min-width:0;max-width:100%}
html .contact-form input,html .contact-form select,html .contact-form textarea{font-size:16px}
html .contact-form .consent{grid-template-columns:20px minmax(0,1fr)}
html .contact-form .consent input{width:18px}
html .contact-details a{width:100%;overflow-wrap:anywhere}
html footer{width:100%;min-width:0;max-width:100%;padding:58px 22px 20px}
html .footer-grid{gap:32px}
html .footer-nav{padding-top:25px;border-top:1px solid rgba(255,255,255,.13)}
html .share,html .footer-bottom{align-items:center;justify-content:center;flex-direction:column;width:100%;gap:9px;text-align:center}
html .share{margin-top:42px}
html .footer-bottom span+span::before{display:none}
html .share a,html .share button{max-width:34px}
html .button,html button,html select,html summary,html a{touch-action:manipulation}
html .button-arrow,html .external-link-icon{display:none}
html .service-card .button-arrow{display:block;flex:0 0 auto}
}
@media(max-width:360px){html .site-header{padding-inline:12px}html .brand strong{font-size:17px}html .section,html .contact-section{padding-right:18px;padding-left:18px}html .hero h1{font-size:42px}html .about-image{width:calc(100% + 36px);margin-right:-18px;margin-left:-18px}html .value-chips{gap:8px}html .value-chips span{padding-inline:6px;font-size:10px}}

/* Premier écran officiel du smartphone tenu verticalement. */
@media (max-width:767px) and (orientation:portrait){
.hero{display:flex!important;flex-direction:column!important;width:100%;min-width:0;min-height:0;background:var(--sand);overflow:hidden}
.hero-intro{width:100%;padding:22px 22px 0}
.hero-intro .eyebrow{margin:0 0 14px;font-size:11px;line-height:1.35;letter-spacing:.22em}
.hero-intro h1{width:100%;margin:0;font-size:clamp(41px,13.2vw,54px);line-height:.98;letter-spacing:-.035em;overflow-wrap:normal;word-break:normal}
.hero-title-line{display:inline;white-space:nowrap}
.hero-image{position:relative;width:82%;height:clamp(320px,95vw,400px);margin:20px auto 0;overflow:hidden}
.hero-image::before{display:none}
.hero-image img{display:block;width:100%;height:100%;object-fit:cover;object-position:63% center}
.hero-image .image-note{position:absolute;right:10px;bottom:10px;left:10px;width:auto;padding:8px 10px;background:rgba(45,31,27,.78);color:#fff;font-size:9px;line-height:1.3;text-align:center}
.hero-details{width:100%;padding:28px 22px 42px}
.hero-details .lead{width:100%;margin:0 0 22px;font-size:16px;line-height:1.55}
.hero-details .hero-actions{display:flex;flex-direction:column;width:100%;gap:12px}
.hero-details .hero-actions .button,.hero-details .hero-actions .text-link{width:100%;min-height:48px;justify-content:center}
.hero-details .trust-row{display:grid;grid-template-columns:1fr;width:100%;gap:7px;margin-top:26px}
}
@media (max-width:360px) and (orientation:portrait){
.hero-intro,.hero-details{padding-right:18px;padding-left:18px}
.hero-intro h1{font-size:41px}
.hero-image{width:84%}
}
