:root {
  --ink: #171116;
  --muted: #746d72;
  --white: #fff;
  --soft: #f7f5f3;
  --line: #e9e4e6;
  --accent: #c98878;
  --accent-rgb: 201, 136, 120;
  --display: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor {
  position: fixed;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  mix-blend-mode: multiply;
  z-index: 200;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor.is-link {
  width: 38px;
  height: 38px;
}
.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 300;
  display: grid;
  place-items: center;
  transition: clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
  clip-path: inset(0);
}
.loader.is-done {
  clip-path: inset(0 0 100% 0);
}
.loader__word {
  font: clamp(56px, 10vw, 140px) / 1 var(--display);
  letter-spacing: 0.08em;
}
.loader__word span {
  color: var(--accent);
}
.loader__line {
  position: absolute;
  width: 180px;
  height: 1px;
  background: var(--line);
  top: 63%;
  overflow: hidden;
}
.loader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform-origin: left;
  animation: load 1.2s ease both;
}
@keyframes load {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: 88px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  color: var(--ink);
}
.nav.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border: 1px solid;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 23px var(--display);
  position: relative;
}
.brand__mark:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  right: -2px;
  top: 4px;
}
.brand__name {
  font: 20px var(--display);
  letter-spacing: 0.1em;
}
.brand__name small {
  display: block;
  font: 7px var(--sans);
  letter-spacing: 0.36em;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a,
.nav__book {
  font-size: 11px;
  letter-spacing: 0.11em;
  text-decoration: none;
}
.nav__links a {
  opacity: 0.62;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 1;
}
.nav__book {
  padding: 13px 19px;
  border: 1px solid;
  border-radius: 99px;
}
.menu {
  display: none;
  background: none;
  border: 0;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 600;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 210px;
  padding: 17px 21px;
  border-radius: 99px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid var(--ink);
  transition:
    color 0.25s,
    background 0.25s;
}
.button b {
  font-size: 18px;
}
.button--dark {
  background: var(--ink);
  color: #fff;
}
.button--dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.button--light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
body.ready .reveal {
  opacity: 1;
  transform: none;
}
.home-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: 88px;
}
.home-hero__copy {
  align-self: center;
  padding: 7vw 3vw 7vw 5vw;
  position: relative;
  z-index: 3;
}
.home-hero h1,
.page-hero h1,
.product-copy h1 {
  font: clamp(70px, 8.6vw, 145px) / 0.78 var(--display);
  letter-spacing: -0.045em;
  margin: 32px 0;
}
.home-hero h1 span {
  display: block;
}
.home-hero h1 em {
  font-weight: 400;
  color: var(--accent);
  padding-left: 7vw;
}
.home-hero__lead {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.75;
  margin-left: 11vw;
  color: var(--muted);
}
.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 34px 0 0 11vw;
}
.home-hero__actions small {
  letter-spacing: 0.14em;
  color: var(--muted);
}
.product-scene {
  position: relative;
  min-height: calc(100svh - 88px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}
.product-scene:before {
  content: "";
  position: absolute;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.75);
  filter: blur(105px);
  opacity: 0.45;
  transition: background 0.6s;
}
.product-scene__rings {
  position: absolute;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.product-scene__rings:before,
.product-scene__rings:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.product-scene__rings:before {
  inset: 10%;
}
.product-scene__rings:after {
  inset: 24%;
}
.product-scene__image {
  position: absolute;
  width: 76%;
  height: 78%;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.42));
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: 0.75s;
}
.product-scene__image.active {
  opacity: 1;
  transform: none;
  animation: float 4.7s ease-in-out infinite;
}
.product-scene__name {
  position: absolute;
  font: clamp(92px, 13vw, 200px) / 1 var(--display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  z-index: 1;
  transition: 0.4s;
}
.product-scene__meta {
  position: absolute;
  z-index: 5;
  left: 6%;
  bottom: 5%;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.product-scene__count {
  position: absolute;
  z-index: 5;
  right: 6%;
  top: 6%;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 18px var(--display);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}
.slash-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.slash-field i {
  position: absolute;
  width: 2px;
  height: 42%;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: rotate(28deg);
  animation: slash 5s ease-in-out infinite;
}
.slash-field i:nth-child(1) {
  left: 12%;
  top: -8%;
}
.slash-field i:nth-child(2) {
  left: 32%;
  top: 58%;
  height: 60%;
  animation-delay: -1.2s;
}
.slash-field i:nth-child(3) {
  right: 18%;
  top: -10%;
  height: 55%;
  animation-delay: -2.6s;
}
.slash-field i:nth-child(4) {
  right: 3%;
  top: 55%;
  animation-delay: -3.5s;
}
@keyframes slash {
  0%,
  100% {
    translate: 0 -5%;
    opacity: 0.15;
  }
  50% {
    translate: 45px 18%;
    opacity: 0.75;
  }
}
.section {
  padding: 10vw 5vw;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 5vw;
}
.section-head h2,
.about-preview h2,
.cities-preview h2,
.booking h2 {
  font: clamp(54px, 7.2vw, 112px) / 0.9 var(--display);
  letter-spacing: -0.035em;
  margin: 22px 0 0;
}
.section-head p:last-child {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.service-card {
  grid-column: span 4;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
}
.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 80px rgba(23, 17, 22, 0.11);
}
.service-card__visual {
  height: 350px;
  background: var(--ink);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.service-card__visual:before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--card-accent);
  filter: blur(65px);
  opacity: 0.58;
}
.service-card__visual img {
  height: 91%;
  width: 85%;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.38));
  transition: transform 0.55s;
}
.service-card:hover img {
  transform: translateY(-9px) rotate(2deg);
}
.service-card__visual .slash-field i {
  height: 65%;
}
.service-card__body {
  padding: 26px 26px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}
.service-card__tag {
  grid-column: 1/-1;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--card-accent);
  font-weight: 600;
}
.service-card h3 {
  font: clamp(30px, 3vw, 48px) / 1 var(--display);
  margin: 5px 0;
}
.service-card__price {
  font: 26px var(--display);
}
.service-card__body p {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.service-card__link {
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-top: 10px;
}
.about-preview {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 105vh;
  background: var(--soft);
}
.about-preview__image {
  position: relative;
  overflow: hidden;
}
.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview__image span {
  position: absolute;
  left: 4vw;
  bottom: 3vw;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.about-preview__copy {
  align-self: center;
  padding: 8vw 6vw;
}
.about-preview__copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin: 35px 0;
}
.cities-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #fff;
  border-top: 1px solid var(--line);
}
.cities-preview__art {
  min-height: 700px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cities-preview__art:before,
.cities-preview__art:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}
.cities-preview__art:before {
  width: 70%;
  aspect-ratio: 1;
  left: 15%;
  top: 14%;
}
.cities-preview__art:after {
  width: 42%;
  aspect-ratio: 1;
  left: 29%;
  top: 28%;
}
.cities-preview__word {
  position: absolute;
  font: clamp(90px, 15vw, 230px) / 1 var(--display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.19);
  transform: rotate(-90deg);
  top: 36%;
  left: -15%;
}
.city-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(var(--accent-rgb), 0.35);
}
.city-pin:nth-of-type(1) {
  top: 26%;
  left: 57%;
}
.city-pin:nth-of-type(2) {
  top: 49%;
  left: 50%;
}
.city-pin:nth-of-type(3) {
  top: 73%;
  left: 58%;
}
.cities-preview__copy {
  align-self: center;
  padding: 8vw 6vw;
}
.city-list {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
}
.city-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.city-list span {
  font: 23px var(--display);
}
.city-list small {
  letter-spacing: 0.12em;
  color: var(--muted);
}
.page-hero {
  min-height: 72vh;
  padding: 170px 5vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  margin-bottom: 25px;
}
.page-hero__lead {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin-left: 34%;
}
.page-number {
  position: absolute;
  right: 5vw;
  top: 160px;
  width: 86px;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 24px var(--display);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 105vh;
}
.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__copy {
  align-self: center;
  padding: 8vw;
}
.story__copy h2 {
  font: clamp(48px, 6vw, 92px) / 0.92 var(--display);
  margin: 24px 0;
}
.story__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.values article {
  padding: 6vw 4vw;
  min-height: 350px;
  border-right: 1px solid var(--line);
}
.values article:last-child {
  border: 0;
}
.values span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.values h3 {
  font: 36px var(--display);
  margin: 55px 0 18px;
}
.values p {
  color: var(--muted);
  line-height: 1.7;
}
.product-page {
  --accent: #c98878;
  --accent-rgb: 201, 136, 120;
}
.product-hero {
  min-height: 100svh;
  padding-top: 88px;
  display: grid;
  grid-template-columns: 52% 48%;
}
.product-hero .product-scene {
  min-height: calc(100svh - 88px);
}
.product-copy {
  align-self: center;
  padding: 7vw 5vw;
}
.product-copy h1 {
  font-size: clamp(64px, 7.4vw, 120px);
}
.product-copy__tag {
  color: var(--accent);
}
.product-copy__intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
}
.product-price {
  font: clamp(48px, 6vw, 82px) var(--display);
  margin: 35px 0;
}
.product-price small {
  font: 13px var(--sans);
  letter-spacing: 0.15em;
}
.product-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--soft);
}
.product-info > div {
  padding: 9vw 7vw;
}
.product-info > div + div {
  border-left: 1px solid var(--line);
}
.product-info h2 {
  font: clamp(44px, 5vw, 76px) / 0.95 var(--display);
  margin: 20px 0 35px;
}
.product-info p,
.product-info li {
  color: var(--muted);
  line-height: 1.75;
}
.product-info ol {
  padding-left: 20px;
}
.product-info li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.notice {
  border: 1px solid var(--line);
  padding: 24px;
  margin-top: 35px;
  font-size: 13px;
}
.next-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6vw 5vw;
  text-decoration: none;
  border-top: 1px solid var(--line);
}
.next-service span {
  font-size: 10px;
  letter-spacing: 0.2em;
}
.next-service strong {
  font: clamp(34px, 5vw, 72px) var(--display);
  font-weight: 400;
}
.next-service b {
  font-size: 32px;
}
.booking {
  min-height: 85vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10vw 5vw;
  background: var(--soft);
}
.booking p:not(.eyebrow) {
  max-width: 560px;
  line-height: 1.8;
  color: var(--muted);
  margin: 30px auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-grid article {
  padding: 7vw 6vw;
  border-bottom: 1px solid var(--line);
}
.contact-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.contact-grid h2 {
  font: 42px var(--display);
  margin: 30px 0 15px;
}
.contact-grid p {
  color: var(--muted);
  line-height: 1.7;
}
footer {
  padding: 65px 5vw 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  border-top: 1px solid var(--line);
}
footer > p {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
}
footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
footer a {
  font-size: 10px;
  text-decoration: none;
}
footer > small {
  grid-column: 1/-1;
  max-width: 850px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
  margin-top: 25px;
}
.mobile-panel {
  display: none;
}
@media (max-width: 900px) {
  .cursor {
    display: none;
  }
  .nav {
    height: 70px;
    padding: 0 20px;
  }
  .nav__links,
  .nav__book {
    display: none;
  }
  .menu {
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid;
    border-radius: 50%;
  }
  .menu span {
    display: block;
    width: 15px;
    height: 1px;
    background: var(--ink);
    margin: 5px auto;
  }
  .mobile-panel {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    clip-path: inset(0 0 100% 0);
    transition: 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .mobile-panel.open {
    clip-path: inset(0);
  }
  .mobile-panel button {
    position: absolute;
    right: 22px;
    top: 20px;
    background: none;
    border: 0;
    font-size: 40px;
  }
  .mobile-panel a {
    text-decoration: none;
    font: 13vw/1.4 var(--display);
    border-bottom: 1px solid var(--line);
  }
  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .home-hero__copy {
    padding: 85px 20px 55px;
  }
  .home-hero h1 {
    font-size: 19vw;
  }
  .home-hero__lead,
  .home-hero__actions {
    margin-left: 0;
  }
  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-scene,
  .product-hero .product-scene {
    min-height: 78svh;
  }
  .product-scene__rings {
    width: 80vw;
  }
  .product-scene__image {
    width: 88%;
    height: 86%;
  }
  .section {
    padding: 100px 20px;
  }
  .section-head {
    display: block;
  }
  .section-head h2,
  .about-preview h2,
  .cities-preview h2,
  .booking h2 {
    font-size: 16vw;
  }
  .service-grid {
    display: block;
  }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    margin-bottom: 18px;
    min-height: 520px;
  }
  .service-card__visual {
    height: 325px;
  }
  .about-preview,
  .cities-preview,
  .story,
  .product-hero,
  .product-info,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-preview__image,
  .story__visual {
    min-height: 78svh;
  }
  .about-preview__copy,
  .cities-preview__copy,
  .story__copy {
    padding: 85px 20px;
  }
  .cities-preview__art {
    min-height: 70svh;
  }
  .page-hero {
    min-height: 70vh;
    padding: 135px 20px 70px;
  }
  .page-hero h1 {
    font-size: 18vw;
  }
  .page-hero__lead {
    margin-left: 0;
  }
  .page-number {
    display: none;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .values article {
    min-height: auto;
    padding: 60px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-hero {
    padding-top: 70px;
  }
  .product-copy {
    order: -1;
    padding: 90px 20px 55px;
  }
  .product-copy h1 {
    font-size: 17vw;
  }
  .product-info > div {
    padding: 80px 20px;
  }
  .product-info > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .next-service {
    padding: 60px 20px;
    align-items: flex-end;
  }
  .next-service strong {
    font-size: 10vw;
  }
  .booking {
    padding: 100px 20px;
  }
  .contact-grid article,
  .contact-grid article:nth-child(odd) {
    padding: 60px 20px;
    border-right: 0;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 55px 20px;
  }
  footer > p {
    text-align: left;
  }
  footer > div {
    justify-content: flex-start;
  }
  footer > small {
    grid-column: 1;
  }
}

/* V11 — objets éditoriaux et soie liquide interactive */
.liquid-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  pointer-events: none;
  opacity: 0.72;
  filter: saturate(1.15);
  -webkit-mask-image: linear-gradient(90deg, transparent 0 43%, #000 68% 100%);
  mask-image: linear-gradient(90deg, transparent 0 43%, #000 68% 100%);
}
.nav,
.mobile-panel {
  z-index: 80;
}
.price-directory article {
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.94);
}
.price-directory__visual {
  height: 270px;
  margin: -30px -30px 28px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #09080a;
}
.price-directory__visual::before {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--treatment-accent);
  filter: blur(58px);
  opacity: 0.48;
  animation: visual-breathe 5s ease-in-out infinite;
}
.price-directory__visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: orbit 17s linear infinite;
}
.price-directory__visual img {
  position: relative;
  z-index: 3;
  height: 112%;
  width: 90%;
  object-fit: contain;
  filter: hue-rotate(var(--art-hue))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.price-directory article:hover .price-directory__visual img {
  transform: translateY(-9px) scale(1.045) rotate(1.5deg);
}
.visual-silk,
.treatment-art__silk {
  position: absolute;
  z-index: 4;
  width: 160%;
  height: 23%;
  left: -30%;
  top: 53%;
  border-radius: 50%;
  transform: rotate(-17deg);
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--treatment-accent) 68%, white),
    rgba(255, 255, 255, 0.9),
    transparent
  );
  filter: blur(8px);
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: silk-drift 4.8s ease-in-out infinite;
}
.treatment-art {
  --treatment-accent: #c88e9d;
  isolation: isolate;
}
.treatment-art::before {
  width: 82%;
  background: radial-gradient(
    circle,
    rgba(var(--treatment-accent-rgb, 200, 142, 157), 0.48),
    transparent 67%
  );
  border: 0;
  filter: blur(15px);
}
.treatment-art__image {
  position: absolute;
  inset: 3% 8%;
  width: 84%;
  height: 94%;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.46));
  animation: product-float 5.8s ease-in-out infinite;
}
.treatment-art > span#treatment-art {
  position: absolute;
  inset: auto 4% 6%;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.24);
  text-align: left;
  font-size: clamp(42px, 5.5vw, 86px);
}
.treatment-art > small {
  z-index: 6;
}
.treatment-art__silk {
  top: 47%;
  z-index: 5;
}
@keyframes visual-breathe {
  50% {
    transform: scale(1.16);
    opacity: 0.65;
  }
}
@keyframes silk-drift {
  50% {
    transform: translateX(13%) rotate(-11deg) scaleY(1.35);
    opacity: 0.82;
  }
}
@keyframes product-float {
  50% {
    transform: translateY(-13px) rotate(0.8deg);
  }
}
@media (max-width: 900px) {
  .liquid-canvas {
    opacity: 0.5;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0 20%,
      #000 68% 100%
    );
    mask-image: linear-gradient(90deg, transparent 0 20%, #000 68% 100%);
  }
  .price-directory__visual {
    height: 330px;
    margin: -30px -24px 25px;
  }
  .treatment-art__image {
    inset: 2% 3%;
    width: 94%;
    height: 96%;
  }
  .treatment-art > span#treatment-art {
    font-size: 12vw;
    bottom: 4%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .price-directory__visual::before,
  .price-directory__visual::after,
  .visual-silk,
  .treatment-art__silk,
  .treatment-art__image {
    animation: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .loader {
    display: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V4 — lisibilité, ton professionnel et réservation guidée */
:root {
  --display: "DM Sans", Arial, sans-serif;
  --logo: "Italiana", Georgia, serif;
}
body {
  font-size: 17px;
  font-weight: 450;
  line-height: 1.65;
}
.brand__mark,
.brand__name,
.loader__word {
  font-family: var(--logo);
}
.brand__name small {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
}
.nav__links a,
.nav__book {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.eyebrow {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.home-hero h1,
.page-hero h1,
.product-copy h1,
.section-head h2,
.about-preview h2,
.cities-preview h2,
.booking h2,
.story__copy h2,
.product-info h2 {
  font-family: var(--sans);
  font-weight: 750;
  letter-spacing: -0.055em;
}
.home-hero h1,
.page-hero h1,
.product-copy h1 {
  line-height: 0.92;
}
.home-hero h1 em,
.page-hero h1 em,
.section-head h2 em,
.about-preview h2 em,
.cities-preview h2 em,
.booking h2 em {
  font-style: normal;
  font-weight: 750;
  color: var(--accent);
}
.home-hero__lead,
.page-hero__lead,
.product-copy__intro,
.about-preview__copy > p:not(.eyebrow),
.story__copy p,
.product-info p,
.product-info li,
.cities-preview__copy > p,
.booking p:not(.eyebrow) {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}
.button {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 220px;
  padding: 16px 22px;
}
.button b,
.next-service b {
  display: none;
}
.product-scene__meta,
.service-card__tag,
.service-card__link,
.product-price small,
.next-service span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.about-preview__image span {
  font-size: 13px;
  font-weight: 700;
}
.section-head p:last-child {
  font-size: 18px;
  font-weight: 500;
}
.service-card__body p {
  font-size: 16px;
  font-weight: 500;
}
.service-card h3,
.service-card__price,
.product-price,
.next-service strong {
  font-family: var(--sans);
  font-weight: 750;
}
.values span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.values h3,
.contact-grid h2 {
  font-family: var(--sans);
  font-weight: 750;
}
.values p,
.contact-grid p {
  font-size: 17px;
  font-weight: 500;
}
footer > p,
footer a {
  font-size: 14px;
  font-weight: 600;
}
footer > small {
  font-size: 13px;
  line-height: 1.6;
}
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 6vw;
  padding: 150px 5vw 9vw;
  background: var(--soft);
  min-height: 100vh;
}
.booking-intro {
  padding-top: 40px;
}
.booking-intro h1 {
  font: 750 clamp(48px, 6vw, 92px) / 0.95 var(--sans);
  letter-spacing: -0.05em;
  margin: 24px 0;
}
.booking-intro > p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}
.booking-points {
  list-style: none;
  padding: 0;
  margin: 50px 0;
}
.booking-points li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
}
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(25px, 4vw, 55px);
  box-shadow: 0 25px 80px rgba(23, 17, 22, 0.07);
}
.booking-form h2 {
  font: 750 clamp(30px, 3.5vw, 52px) / 1.05 var(--sans);
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.booking-form__note {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 35px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--wide {
  grid-column: 1/-1;
}
.field label,
.choice-title {
  font-size: 15px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8d2d5;
  background: #fff;
  border-radius: 0;
  padding: 15px 16px;
  font: 500 16px/1.4 var(--sans);
  color: var(--ink);
  outline: none;
}
.field textarea {
  min-height: 115px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(23, 17, 22, 0.08);
}
.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
}
.choice span {
  display: block;
  border: 1px solid #d8d2d5;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.choice input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}
.consent input {
  margin-top: 4px;
  accent-color: var(--ink);
}
.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  font-size: 14px;
}
.form-status.visible {
  display: block;
}
.booking-form .button {
  width: 100%;
  margin-top: 26px;
  border: 0;
  cursor: pointer;
}
.privacy-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.summary-card {
  margin-top: 35px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}
.summary-card strong {
  display: block;
  margin-bottom: 8px;
}
.summary-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  body {
    font-size: 16px;
  }
  .home-hero__lead,
  .page-hero__lead,
  .product-copy__intro,
  .about-preview__copy > p:not(.eyebrow),
  .story__copy p,
  .product-info p,
  .product-info li,
  .cities-preview__copy > p,
  .booking p:not(.eyebrow) {
    font-size: 17px;
  }
  .home-hero h1,
  .page-hero h1,
  .product-copy h1 {
    font-size: 15vw;
  }
  .section-head h2,
  .about-preview h2,
  .cities-preview h2,
  .booking h2 {
    font-size: 13vw;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    padding: 110px 20px 80px;
  }
  .booking-intro {
    padding-top: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field--wide {
    grid-column: auto;
  }
  .booking-form {
    padding: 25px 20px;
  }
  .mobile-panel a {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10vw;
  }
}

/* V5 — hero mobile simultané et fiches prestations détaillées */
.scene-controls {
  position: absolute;
  z-index: 8;
  right: 6%;
  bottom: 5%;
  display: flex;
  gap: 8px;
}
.scene-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(23, 17, 22, 0.3);
  color: #fff;
  font: 700 13px var(--sans);
  cursor: pointer;
  transition: 0.25s;
}
.scene-controls button[aria-pressed="true"] {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: scale(1.08);
}
.scene-controls button span {
  pointer-events: none;
}
.service-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 9vw 5vw;
  background: #fff;
  border-top: 1px solid var(--line);
}
.service-detail__heading {
  padding-right: 8vw;
}
.service-detail__heading h2 {
  font: 750 clamp(42px, 5vw, 76px) / 1.02 var(--sans);
  letter-spacing: -0.045em;
  margin: 22px 0 30px;
}
.service-detail__heading > p:last-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}
.service-detail__included {
  border-left: 1px solid var(--line);
  padding-left: 5vw;
}
.service-detail__included ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.service-detail__included li {
  position: relative;
  padding: 17px 0 17px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
}
.service-detail__included li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.service-detail__faq {
  grid-column: 1/-1;
  margin-top: 7vw;
  border-top: 1px solid var(--line);
  padding-top: 5vw;
}
.service-detail__faq > .eyebrow {
  margin-bottom: 25px;
}
.service-detail__faq details {
  border-bottom: 1px solid var(--line);
}
.service-detail__faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 50px 24px 0;
  font-size: 19px;
  font-weight: 700;
  position: relative;
}
.service-detail__faq summary::-webkit-details-marker {
  display: none;
}
.service-detail__faq summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  font-size: 25px;
  font-weight: 400;
}
.service-detail__faq details[open] summary:after {
  content: "−";
}
.service-detail__faq details p {
  margin: 0 0 25px;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .home-hero {
    height: 100svh;
    min-height: 700px;
    grid-template-rows: minmax(0, 48%) minmax(0, 52%);
    overflow: hidden;
    padding-top: 70px;
  }
  .home-hero__copy {
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
  }
  .home-hero h1 {
    font-size: clamp(48px, 13.5vw, 70px);
    line-height: 0.88;
    margin: 15px 0;
  }
  .home-hero h1 em {
    padding-left: 8vw;
  }
  .home-hero__lead {
    font-size: 15px;
    line-height: 1.5;
    max-width: 96%;
    margin-bottom: 0;
  }
  .home-hero__actions {
    margin-top: 16px;
    display: block;
  }
  .home-hero__actions .button {
    padding: 12px 16px;
    min-width: 0;
    font-size: 14px;
  }
  .home-hero__actions small {
    display: none;
  }
  .home-hero .product-scene {
    min-height: 0;
    height: 100%;
    width: 100%;
  }
  .home-hero .product-scene__image {
    height: 94%;
    width: 80%;
  }
  .home-hero .product-scene__rings {
    width: min(68vw, 330px);
  }
  .home-hero .product-scene__name {
    font-size: 22vw;
  }
  .home-hero .product-scene__meta {
    display: none;
  }
  .home-hero .product-scene__count {
    top: 5%;
    right: 5%;
    width: 43px;
    height: 43px;
    font-size: 15px;
  }
  .scene-controls {
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
  }
  .scene-controls button {
    width: 34px;
    height: 34px;
  }
  .product-hero {
    height: auto;
    min-height: 100svh;
    grid-template-rows: auto minmax(390px, 48svh);
    padding-top: 70px;
  }
  .product-copy {
    padding: 28px 20px 22px;
  }
  .product-copy h1 {
    font-size: clamp(48px, 13vw, 68px);
    margin: 14px 0;
  }
  .product-copy__intro {
    font-size: 15px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-price {
    font-size: 36px;
    margin: 18px 0;
  }
  .product-actions {
    gap: 8px;
  }
  .product-actions .button {
    padding: 12px 15px;
    font-size: 14px;
    min-width: 0;
  }
  .product-hero .product-scene {
    min-height: 390px;
    height: 48svh;
  }
  .product-hero .product-scene__image {
    height: 95%;
    width: 82%;
  }
  .product-hero .product-scene__rings {
    width: min(72vw, 350px);
  }
  .service-detail {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }
  .service-detail__heading {
    padding-right: 0;
  }
  .service-detail__heading h2 {
    font-size: 11vw;
  }
  .service-detail__heading > p:last-child {
    font-size: 17px;
  }
  .service-detail__included {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 55px 0 0;
    margin-top: 50px;
  }
  .service-detail__faq {
    margin-top: 65px;
    padding-top: 45px;
  }
  .service-detail__faq summary {
    font-size: 17px;
  }
}
@media (max-width: 390px), (max-height: 720px) and (max-width: 900px) {
  .home-hero {
    min-height: 620px;
  }
  .home-hero__copy {
    padding-top: 14px;
  }
  .home-hero h1 {
    font-size: clamp(43px, 12.5vw, 58px);
  }
  .home-hero__lead {
    font-size: 14px;
  }
  .home-hero .product-scene__image {
    height: 90%;
  }
  .scene-controls button {
    width: 30px;
    height: 30px;
  }
  .product-copy__intro {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 900px) {
  .home-hero {
    min-height: 100svh !important;
  }
}
.home-hero h1 em {
  transition: color 0.65s ease;
}
.booking-phone {
  margin: 26px 0;
  font-size: 16px;
  font-weight: 700;
}
.booking-phone a {
  color: var(--ink);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* V6 — hero immersif, contenu éditorial et mouvement cohérent */
.home-page .nav {
  transition:
    height 0.35s,
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
}
.home-page .nav:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(8, 7, 9, 0.78), transparent);
  color: #fff;
  border-color: transparent;
}
.home-page .nav:not(.scrolled) .brand,
.home-page .nav:not(.scrolled) .nav__links a,
.home-page .nav:not(.scrolled) .nav__book {
  color: #fff;
}
.home-page .nav:not(.scrolled) .brand__mark,
.home-page .nav:not(.scrolled) .menu {
  border-color: rgba(255, 255, 255, 0.5);
}
.home-page .nav:not(.scrolled) .menu span {
  background: #fff;
}
.home-hero {
  --hero-x: 0;
  --hero-y: 0;
  display: block;
  position: relative;
  height: 100svh;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  background: #09080a;
  color: #fff;
  isolation: isolate;
}
.home-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
      90deg,
      rgba(8, 7, 9, 0.98) 0%,
      rgba(8, 7, 9, 0.86) 28%,
      rgba(8, 7, 9, 0.32) 59%,
      rgba(8, 7, 9, 0.05) 78%
    ),
    linear-gradient(0deg, rgba(8, 7, 9, 0.55), transparent 40%);
}
.home-hero__copy {
  position: relative;
  z-index: 5;
  width: min(760px, 55vw);
  height: 100%;
  padding: clamp(140px, 16vh, 190px) 0 70px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.home-hero h1 {
  font-size: clamp(64px, 7.4vw, 126px);
  margin: 24px 0 28px;
  line-height: 0.86;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
}
.home-hero h1 span {
  display: block;
}
.home-hero h1 span:nth-child(2) {
  padding-left: 6vw;
}
.home-hero h1 em {
  color: var(--accent);
}
.home-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
  font-weight: 500;
}
.home-hero__actions {
  margin: 34px 0 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.home-hero__actions small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.button--light {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}
.button--light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.home-hero .product-scene {
  position: absolute;
  inset: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  background: #09080a;
  overflow: hidden;
}
.home-hero .product-scene:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 52vw;
  height: 52vw;
  right: -2vw;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.58),
    rgba(var(--accent-rgb), 0.12) 43%,
    transparent 70%
  );
  filter: blur(22px);
  transition: background 0.65s;
}
.home-hero .product-scene__rings {
  width: min(49vw, 760px);
  right: 4vw;
  left: auto;
  top: 50%;
  translate: calc(var(--hero-x) * 12px) calc(-50% + var(--hero-y) * 10px);
  transition: translate 0.45s ease;
}
.home-hero .product-scene__rings:before {
  box-shadow: 0 0 70px rgba(var(--accent-rgb), 0.22);
}
.home-hero .product-scene__image {
  left: auto;
  right: 1.5vw;
  width: 54vw;
  height: 88%;
  translate: calc(var(--hero-x) * -18px) calc(-50% + var(--hero-y) * -12px);
  filter: drop-shadow(0 35px 34px rgba(0, 0, 0, 0.58));
  transition:
    opacity 0.85s,
    transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.65s,
    translate 0.5s;
}
.home-hero .product-scene__image.active {
  transform: scale(1.04) rotate(1deg);
}
.home-hero .product-scene__name {
  left: auto;
  right: -2vw;
  top: 50%;
  translate: 0 -50%;
  font-size: clamp(110px, 18vw, 290px);
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  opacity: 1;
}
.home-hero .product-scene__count {
  top: 16%;
  right: 5vw;
  border-color: rgba(255, 255, 255, 0.28);
}
.home-hero .product-scene__meta {
  left: auto;
  right: 5vw;
  bottom: 6%;
  color: rgba(255, 255, 255, 0.68);
}
.home-hero .scene-controls {
  right: 5vw;
  bottom: 10%;
  z-index: 6;
}
.home-hero .slash-field {
  opacity: 0.75;
}
.motion-ribbon {
  overflow: hidden;
  background: var(--accent);
  color: #111;
  padding: 14px 0;
  transition: background 0.65s;
}
.motion-ribbon div {
  width: max-content;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
  animation: ribbon 24s linear infinite;
}
@keyframes ribbon {
  to {
    transform: translateX(-50%);
  }
}
.iv-explainer {
  padding: 10vw 5vw 9vw;
  background: #fff;
}
.iv-explainer__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 7vw;
  align-items: start;
}
.iv-explainer__intro .eyebrow {
  grid-column: 1/-1;
}
.iv-explainer h2,
.journey h2,
.standards h2,
.home-faq h2 {
  font: 750 clamp(46px, 6vw, 94px) / 0.95 var(--sans);
  letter-spacing: -0.055em;
  margin: 25px 0;
}
.iv-explainer h2 em,
.journey h2 em,
.home-faq h2 em {
  font-style: normal;
  color: var(--accent);
}
.iv-explainer__intro > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 36px;
}
.iv-explainer__intro .lead {
  font-size: 20px;
  color: var(--ink);
  font-weight: 600;
}
.iv-explainer__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 7vw;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.iv-explainer__cards article {
  padding: 45px 35px;
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.iv-explainer__cards span,
.journey__steps span {
  font-size: 13px;
  color: var(--accent);
  font-weight: 800;
}
.iv-explainer__cards h3,
.journey__steps h3,
.standards__grid h3 {
  font: 750 26px/1.15 var(--sans);
  letter-spacing: -0.025em;
  margin: 55px 0 16px;
}
.iv-explainer__cards p,
.journey__steps p,
.standards p,
.home-faq p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.journey {
  padding: 10vw 5vw;
  background: #0a090b;
  color: #fff;
  overflow: hidden;
}
.journey__head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 8vw;
}
.journey__head .eyebrow {
  grid-column: 1/-1;
  color: var(--accent);
}
.journey__head > p:last-child {
  align-self: end;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  padding-bottom: 18px;
}
.journey__steps {
  list-style: none;
  padding: 0;
  margin: 6vw 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  counter-reset: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.journey__steps li {
  padding: 34px 22px 20px 0;
  position: relative;
}
.journey__steps li:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 1s 0.25s;
}
.journey__steps li.is-visible:before {
  width: 100%;
}
.journey__steps h3 {
  margin: 45px 0 14px;
}
.journey__steps p {
  color: rgba(255, 255, 255, 0.62);
  padding-right: 18px;
}
.standards {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  background: #f4f2f3;
  min-height: 850px;
}
.standards__visual {
  position: relative;
  background: #0a090b;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.standards__visual:before,
.standards__visual:after {
  content: "";
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: orbit 12s linear infinite;
}
.standards__visual:after {
  width: 42%;
  animation-direction: reverse;
  animation-duration: 8s;
}
.standards__orb {
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(30px);
  opacity: 0.75;
  transition: background 0.65s;
}
.standards__visual > p {
  position: relative;
  text-align: center;
  font: clamp(52px, 7vw, 100px) / 0.75 var(--logo);
  color: #fff;
  letter-spacing: -0.04em;
}
.standards__visual small {
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.3em;
}
.standards__copy {
  padding: 8vw 6vw;
}
.standards h2 {
  font-size: clamp(42px, 4.7vw, 72px);
}
.standards__copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 17px;
}
.standards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 55px;
  border-top: 1px solid var(--line);
}
.standards__grid article {
  padding: 30px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}
.standards__grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.standards__grid article:nth-child(even) {
  padding-left: 28px;
}
.standards__grid h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
.home-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 10vw 5vw;
  background: #fff;
}
.home-faq > div:first-child {
  position: sticky;
  top: 150px;
  align-self: start;
}
.home-faq > div:first-child > p:last-child {
  max-width: 480px;
  font-size: 17px;
}
.home-faq__list details,
.service-detail__faq details {
  border-bottom: 1px solid var(--line);
}
.home-faq__list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 27px 50px 27px 0;
  font-size: 19px;
  font-weight: 700;
}
.home-faq__list summary::-webkit-details-marker {
  display: none;
}
.home-faq__list summary:after {
  content: "+";
  position: absolute;
  right: 6px;
  font-size: 24px;
  font-weight: 400;
}
.home-faq__list details[open] summary:after {
  content: "−";
}
.home-faq__list details p {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: 17px;
}
.service-detail {
  padding-bottom: 0;
}
.service-understand {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 8vw -5vw 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-understand article {
  padding: 7vw 6vw;
}
.service-understand article + article {
  border-left: 1px solid var(--line);
  background: var(--soft);
}
.service-understand h3,
.service-timeline h3 {
  font: 750 clamp(28px, 3.5vw, 50px) / 1.05 var(--sans);
  letter-spacing: -0.04em;
  margin: 24px 0;
}
.service-understand article > p:last-child {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}
.service-timeline {
  grid-column: 1/-1;
  padding: 8vw 0;
}
.service-timeline > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-timeline article {
  padding: 38px 32px;
  min-height: 390px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-timeline article > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--accent);
}
.service-timeline h3 {
  font-size: 27px;
  margin: 45px 0 22px;
}
.service-timeline ul {
  padding: 0;
  list-style: none;
}
.service-timeline li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--muted);
}
.service-facts {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 -5vw;
  background: #0a090b;
  color: #fff;
}
.service-facts > div {
  padding: 45px 3vw;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.service-facts small {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.service-facts strong {
  font-size: 18px;
  line-height: 1.4;
}
.service-detail__faq {
  padding-bottom: 8vw;
}
.product-info[hidden] {
  display: none !important;
}
.ready .motion-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.25, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.25, 1);
}
.ready .motion-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.service-card.motion-reveal:nth-child(2),
.journey__steps li:nth-child(2) {
  transition-delay: 0.08s;
}
.service-card.motion-reveal:nth-child(3),
.journey__steps li:nth-child(3) {
  transition-delay: 0.16s;
}
.service-card.motion-reveal:nth-child(4),
.journey__steps li:nth-child(4) {
  transition-delay: 0.24s;
}
.service-card.motion-reveal:nth-child(5),
.journey__steps li:nth-child(5) {
  transition-delay: 0.32s;
}
@media (max-width: 900px) {
  .home-page .nav:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(8, 7, 9, 0.86), transparent);
  }
  .home-hero {
    height: 100svh;
    min-height: 680px !important;
    padding: 0;
    display: block;
  }
  .home-hero:after {
    background: linear-gradient(
      180deg,
      rgba(8, 7, 9, 0.92) 0%,
      rgba(8, 7, 9, 0.6) 42%,
      rgba(8, 7, 9, 0.16) 66%,
      rgba(8, 7, 9, 0.7) 100%
    );
  }
  .home-hero__copy {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding: 105px 20px 90px;
    display: block;
  }
  .home-hero h1 {
    font-size: clamp(47px, 13.4vw, 72px);
    line-height: 0.9;
    margin: 18px 0 20px;
    max-width: 94%;
  }
  .home-hero h1 span:nth-child(2) {
    padding-left: 7vw;
  }
  .home-hero__lead {
    font-size: 15px;
    line-height: 1.55;
    max-width: 92%;
    display: block;
  }
  .home-hero__actions {
    position: absolute;
    left: 20px;
    bottom: 79px;
    margin: 0;
    display: block;
  }
  .home-hero__actions .button {
    padding: 13px 17px;
    font-size: 14px;
  }
  .home-hero__actions small {
    display: none;
  }
  .home-hero .product-scene {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }
  .home-hero .product-scene:before {
    width: 105vw;
    height: 105vw;
    right: -35vw;
    top: 62%;
  }
  .home-hero .product-scene__image {
    right: -18vw;
    top: 62%;
    width: 116vw;
    height: 65%;
    translate: 0 -50%;
  }
  .home-hero .product-scene__image.active {
    transform: scale(1.03);
  }
  .home-hero .product-scene__rings {
    width: 88vw;
    right: -17vw;
    top: 62%;
  }
  .home-hero .product-scene__name {
    right: -3vw;
    top: 57%;
    font-size: 25vw;
  }
  .home-hero .product-scene__count {
    top: 25%;
    right: 18px;
  }
  .home-hero .product-scene__meta {
    display: none;
  }
  .home-hero .scene-controls {
    left: auto;
    right: 18px;
    bottom: 22px;
    transform: none;
  }
  .home-hero .scene-controls button {
    width: 34px;
    height: 34px;
  }
  .motion-ribbon {
    padding: 12px 0;
  }
  .iv-explainer,
  .journey {
    padding: 95px 20px;
  }
  .iv-explainer__intro,
  .journey__head {
    grid-template-columns: 1fr;
  }
  .iv-explainer__intro .eyebrow,
  .journey__head .eyebrow {
    grid-column: auto;
  }
  .iv-explainer h2,
  .journey h2,
  .standards h2,
  .home-faq h2 {
    font-size: clamp(42px, 12vw, 62px);
  }
  .iv-explainer__intro > p {
    margin-top: 18px;
  }
  .iv-explainer__intro .lead {
    font-size: 18px;
  }
  .iv-explainer__cards {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
  .iv-explainer__cards article {
    min-height: auto;
    padding: 38px 25px;
  }
  .iv-explainer__cards h3 {
    margin: 32px 0 14px;
  }
  .journey__head > p:last-child {
    padding: 0;
  }
  .journey__steps {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }
  .journey__steps li {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .journey__steps li:before {
    width: 3px;
    height: 0;
    top: 0;
    transition: height 1s 0.2s;
  }
  .journey__steps li.is-visible:before {
    width: 3px;
    height: 100%;
  }
  .journey__steps h3 {
    margin: 20px 0 10px;
  }
  .standards {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .standards__visual {
    min-height: 70vw;
  }
  .standards__copy {
    padding: 85px 20px;
  }
  .standards__grid {
    grid-template-columns: 1fr;
  }
  .standards__grid article,
  .standards__grid article:nth-child(even) {
    padding: 25px 0;
    border-right: 0;
  }
  .home-faq {
    grid-template-columns: 1fr;
    padding: 95px 20px;
  }
  .home-faq > div:first-child {
    position: static;
  }
  .service-understand {
    grid-template-columns: 1fr;
    margin: 70px -20px 0;
  }
  .service-understand article {
    padding: 65px 20px;
  }
  .service-understand article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-understand article > p:last-child {
    font-size: 17px;
  }
  .service-timeline {
    padding: 75px 0;
  }
  .service-timeline > div {
    grid-template-columns: 1fr;
  }
  .service-timeline article {
    min-height: 0;
    padding: 35px 24px;
  }
  .service-timeline h3 {
    margin: 25px 0 18px;
  }
  .service-facts {
    grid-template-columns: 1fr 1fr;
    margin: 0 -20px;
  }
  .service-facts > div {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .service-detail__faq {
    padding-bottom: 70px;
  }
  .ready .motion-reveal {
    transform: translateY(24px);
  }
}
@media (max-width: 390px), (max-height: 720px) and (max-width: 900px) {
  .home-hero {
    min-height: 620px !important;
  }
  .home-hero__copy {
    padding-top: 88px;
  }
  .home-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }
  .home-hero__lead {
    font-size: 14px;
    max-width: 94%;
  }
  .home-hero .product-scene__image {
    height: 58%;
    top: 64%;
  }
  .home-hero .product-scene__rings {
    top: 64%;
  }
  .home-hero__actions {
    bottom: 66px;
  }
  .home-hero .scene-controls {
    bottom: 16px;
  }
  .home-hero .scene-controls button {
    width: 30px;
    height: 30px;
  }
  .service-facts {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
  .motion-ribbon div {
    animation: none;
  }
  .standards__visual:before,
  .standards__visual:after {
    animation: none;
  }
}

/* V7 — définition claire de chaque prestation */
.service-definition {
  grid-column: 1/-1;
  margin: -9vw -5vw 8vw;
  padding: 9vw 5vw 8vw;
  background: #0a090b;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-definition:before {
  content: "";
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  right: -12vw;
  top: -18vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.5),
    rgba(var(--accent-rgb), 0.08) 48%,
    transparent 70%
  );
  filter: blur(20px);
}
.service-definition > * {
  position: relative;
  z-index: 1;
}
.service-definition .eyebrow {
  color: var(--accent);
}
.service-definition > h2 {
  font: 750 clamp(50px, 7vw, 108px) / 0.92 var(--sans);
  letter-spacing: -0.06em;
  max-width: 1000px;
  margin: 25px 0 34px;
}
.service-definition__answer {
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.45;
  max-width: 1000px;
  color: rgba(255, 255, 255, 0.9);
}
.service-definition__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.service-definition__columns article {
  padding: 42px 5vw 10px 0;
}
.service-definition__columns article + article {
  padding-left: 5vw;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.service-definition__columns h3 {
  font: 700 21px/1.3 var(--sans);
  margin: 0 0 16px;
  color: #fff;
}
.service-definition__columns p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.67);
  max-width: 680px;
}
@media (max-width: 900px) {
  .service-definition {
    margin: -80px -20px 70px;
    padding: 90px 20px 75px;
  }
  .service-definition:before {
    width: 110vw;
    right: -55vw;
    top: -20vw;
  }
  .service-definition > h2 {
    font-size: clamp(43px, 12.5vw, 66px);
  }
  .service-definition__answer {
    font-size: 20px;
  }
  .service-definition__columns {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }
  .service-definition__columns article {
    padding: 32px 0;
  }
  .service-definition__columns article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .service-definition__columns p {
    font-size: 16px;
  }
}
.service-detail--static .service-detail__faq h2 {
  font: 750 clamp(38px, 5vw, 74px) / 1 var(--sans);
  letter-spacing: -0.05em;
  margin: 18px 0 42px;
  max-width: 900px;
}
.service-detail--static .service-understand {
  margin-top: 0;
}
.service-detail--static .service-timeline {
  padding-top: 8vw;
}

/* V9 — catalogue complet des soins */
.catalog-intro {
  padding: 8vw 5vw 4vw;
}
.catalog-intro h2,
.treatment-intro h2,
.treatment-faq h2 {
  font: 750 clamp(40px, 5.5vw, 82px) / 0.98 var(--sans);
  letter-spacing: -0.055em;
  margin: 18px 0;
}
.catalog-intro > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 55px;
}
.category-card {
  position: relative;
  min-height: 380px;
  padding: 42px;
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition:
    background 0.35s,
    color 0.35s;
}
.category-card:hover {
  background: var(--ink);
  color: #fff;
}
.category-card__number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.category-card h3 {
  font: 750 clamp(30px, 3.2vw, 50px) / 1 var(--sans);
  letter-spacing: -0.045em;
  margin: 55px 0 20px;
}
.category-card p {
  max-width: 530px;
  color: var(--muted);
  font-size: 16px;
}
.category-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}
.category-card__link {
  position: absolute;
  left: 42px;
  bottom: 35px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.catalog-section {
  padding: 7vw 5vw;
  border-top: 1px solid var(--line);
}
.catalog-section__head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  margin-bottom: 55px;
}
.catalog-section__head h2 {
  font: 750 clamp(40px, 5vw, 76px) / 1 var(--sans);
  letter-spacing: -0.055em;
  margin: 15px 0;
}
.catalog-section__head > p {
  align-self: end;
  color: var(--muted);
  font-size: 18px;
}
.price-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.price-directory article {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 210px;
}
.price-directory h3 {
  font-size: 21px;
  margin: 0 0 14px;
}
.price-directory p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 25px;
}
.price-directory strong {
  display: block;
  font-size: 19px;
}
.price-directory a {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid;
}
.medical-notice {
  margin: 0 5vw 8vw;
  padding: 32px 35px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 15px;
  line-height: 1.7;
}
.medical-notice strong {
  display: block;
  font-size: 17px;
  margin-bottom: 7px;
}
.treatment-hero {
  min-height: 78vh;
  padding: 150px 5vw 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 6vw;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.treatment-hero h1 {
  font: 750 clamp(54px, 7vw, 112px) / 0.9 var(--sans);
  letter-spacing: -0.065em;
  margin: 24px 0;
}
.treatment-hero__lead {
  font-size: 19px;
  max-width: 650px;
  color: var(--muted);
}
.treatment-art {
  height: min(60vh, 650px);
  background: #0a090b;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.treatment-art:before,
.treatment-art:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}
.treatment-art:before {
  width: 74%;
  aspect-ratio: 1;
}
.treatment-art:after {
  width: 44%;
  aspect-ratio: 1;
  animation-direction: reverse;
}
.treatment-art span {
  font: 750 clamp(45px, 6vw, 90px) / 1 var(--sans);
  letter-spacing: -0.06em;
  z-index: 2;
  text-align: center;
}
.treatment-art small {
  position: absolute;
  bottom: 28px;
  letter-spacing: 0.18em;
  font-size: 11px;
}
.treatment-intro {
  padding: 8vw 5vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
}
.treatment-intro > div:last-child p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.treatment-list {
  border-top: 1px solid var(--line);
}
.treatment-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 1.35fr minmax(180px, 0.5fr);
  gap: 4vw;
  padding: 55px 5vw;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.treatment-card__index {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.13em;
}
.treatment-card h2 {
  font: 750 clamp(29px, 3.2vw, 49px) / 1.03 var(--sans);
  letter-spacing: -0.045em;
  margin: 14px 0;
}
.treatment-card__copy p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 0;
}
.treatment-card__copy ul {
  padding-left: 20px;
  font-size: 15px;
}
.treatment-card__price {
  border-left: 1px solid var(--line);
  padding-left: 3vw;
}
.price-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.price-line strong {
  white-space: nowrap;
}
.treatment-card__price .button {
  margin-top: 25px;
  min-width: 0;
  width: 100%;
  padding: 13px 16px;
}
.treatment-process {
  padding: 8vw 5vw;
  background: #0a090b;
  color: #fff;
}
.treatment-process h2 {
  font: 750 clamp(40px, 5.5vw, 80px) / 1 var(--sans);
  letter-spacing: -0.055em;
  max-width: 850px;
}
.treatment-process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.treatment-process li {
  padding: 34px 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.treatment-process li span {
  color: var(--accent);
  font-weight: 800;
}
.treatment-process h3 {
  font-size: 20px;
  margin: 35px 0 12px;
}
.treatment-process p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}
.treatment-faq {
  padding: 8vw 5vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}
.treatment-faq details {
  border-bottom: 1px solid var(--line);
}
.treatment-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 25px 45px 25px 0;
  font-size: 18px;
  font-weight: 750;
  position: relative;
}
.treatment-faq summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  font-size: 24px;
  font-weight: 400;
}
.treatment-faq details[open] summary:after {
  content: "−";
}
.treatment-faq details p {
  color: var(--muted);
  margin: 0 0 25px;
}
@media (max-width: 900px) {
  .category-grid,
  .price-directory {
    grid-template-columns: 1fr;
  }
  .category-card {
    min-height: 330px;
    padding: 30px 24px;
  }
  .category-card__link {
    left: 24px;
  }
  .catalog-intro {
    padding: 90px 20px 55px;
  }
  .catalog-section {
    padding: 75px 20px;
  }
  .catalog-section__head {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .treatment-hero {
    grid-template-columns: 1fr;
    padding: 120px 20px 45px;
  }
  .treatment-art {
    height: 62vw;
    min-height: 300px;
  }
  .treatment-intro {
    grid-template-columns: 1fr;
    padding: 75px 20px;
    gap: 25px;
  }
  .treatment-card {
    grid-template-columns: 1fr;
    padding: 45px 20px;
    gap: 18px;
  }
  .treatment-card__price {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0 0;
  }
  .treatment-process {
    padding: 80px 20px;
  }
  .treatment-process ol {
    grid-template-columns: 1fr;
  }
  .treatment-faq {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }
  .medical-notice {
    margin: 0 20px 70px;
    padding: 25px 22px;
  }
}

/* V11 — priorité finale des visuels */
.price-directory__visual {
  height: 270px;
  margin: -30px -30px 28px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #09080a;
}
.price-directory__visual img {
  position: relative;
  z-index: 3;
  height: 112%;
  width: 90%;
  object-fit: contain;
  filter: hue-rotate(var(--art-hue))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
}
.treatment-art::before {
  width: 82%;
  border: 0;
  background: radial-gradient(
    circle,
    rgba(var(--treatment-accent-rgb, 200, 142, 157), 0.48),
    transparent 67%
  );
  filter: blur(15px);
}
.treatment-art__image {
  position: absolute;
  inset: 3% 8%;
  width: 84%;
  height: 94%;
  object-fit: contain;
  z-index: 3;
  animation: product-float 5.8s ease-in-out infinite;
}
.treatment-art > span#treatment-art {
  position: absolute;
  inset: auto 4% 6%;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.24);
  text-align: left;
  font-size: clamp(42px, 5.5vw, 86px);
}
@media (max-width: 900px) {
  .price-directory__visual {
    height: 330px;
    margin: -30px -24px 25px;
  }
  .treatment-art__image {
    inset: 2% 3%;
    width: 94%;
    height: 96%;
  }
  .treatment-art > span#treatment-art {
    font-size: 12vw;
    bottom: 4%;
  }
}

/* V13 — cadrage intégral et couleurs individuelles, sans effet flottant */
.liquid-canvas,
.navigation-silk {
  display: none !important;
}
.price-directory article {
  position: relative;
  border-top: 3px solid var(--treatment-accent, transparent);
}
.price-directory__visual {
  height: 290px;
  margin: -30px -30px 28px;
  background: radial-gradient(
      circle at 50% 52%,
      rgba(var(--treatment-accent-rgb), 0.68),
      rgba(var(--treatment-accent-rgb), 0.13) 37%,
      transparent 65%
    ),
    #09080a;
}
.price-directory__visual::before {
  width: 62%;
  opacity: 0.4;
  background: var(--treatment-accent);
}
.price-directory__visual img {
  width: 76%;
  height: 78%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: hue-rotate(var(--art-hue)) saturate(1.08)
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}
.price-directory article:hover .price-directory__visual img {
  transform: translateY(-4px) scale(1.025);
}
.price-directory article h3 {
  text-decoration-color: var(--treatment-accent);
}
.visual-orbit {
  position: absolute;
  z-index: 2;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}
.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.visual-orbit::before {
  inset: 13%;
}
.visual-orbit::after {
  inset: 29%;
}
.treatment-art {
  background: radial-gradient(
      circle at 50% 52%,
      rgba(var(--treatment-accent-rgb), 0.62),
      rgba(var(--treatment-accent-rgb), 0.12) 39%,
      transparent 67%
    ),
    #09080a;
}
.treatment-art__image {
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 900px) {
  .price-directory__visual {
    height: 310px;
    margin: -30px -24px 25px;
  }
  .price-directory__visual img {
    width: 72%;
    height: 76%;
  }
  .treatment-art__image {
    inset: 8%;
    width: 84%;
    height: 84%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .visual-orbit {
    animation: none;
  }
}
