.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: 0;
  top: 0;
}
.hero-brand-name,
.logo {
  text-transform: uppercase;
}
.extra-name,
.extra-price,
.logo,
.nav-clock {
  white-space: nowrap;
}
.btn-retour,
.extra-item--cta,
.footer-link,
.hero-cta,
.nav-link,
.prestation-popup-cta,
.services-v2-link {
  text-decoration: none;
}
.realisation-gallery,
.services-v2-gallery {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
:root {
  --noir: #111111;
  --terracotta: #c46a2b;
  --beige: #e6d2b5;
  --or: #c9a15b;
  --blanc-casse: #f7f4ef;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, sans-serif;
  background-color: var(--blanc-casse);
  color: var(--noir);
  line-height: 1.6;
  font-size: 0.95rem;
  cursor: none;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--or);
  border-radius: 50%;
  z-index: 9999;
  transition:
    transform 0.1s,
    background 0.2s;
  box-shadow:
    0 0 15px var(--or),
    0 0 30px rgba(201, 161, 91, 0.5);
}
.header,
.navbar {
  background-color: var(--blanc-casse);
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 161, 91, 0.5);
  border-radius: 50%;
  z-index: 9998;
  transition:
    transform 0.15s,
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
.cursor-dot.is-hovering {
  transform: translate(-50%, -50%) scale(2);
  background: var(--terracotta);
}
.cursor-ring.is-hovering {
  width: 60px;
  height: 60px;
  border-color: var(--terracotta);
}
body.popup-open {
  cursor: auto !important;
}
body.popup-open .cursor-dot,
body.popup-open .cursor-ring {
  display: none !important;
}
body.popup-open .client-card,
body.popup-open .nav-link,
body.popup-open .service-card,
body.popup-open a,
body.popup-open button,
body.popup-open input,
body.popup-open select,
body.popup-open textarea {
  cursor: pointer !important;
}
.client-card,
.nav-link,
.service-card,
a,
button,
input,
select,
textarea {
  cursor: none;
}
.btn-hero-street,
.filter-btn,
.hero-card,
.menu-toggle,
.service-v2-badge--fullscreen {
  cursor: pointer;
}
.formations-title,
.hero-title,
.logo,
.prestation-popup-title,
.serum-image-title,
.services-v2-title,
.tarifs-title,
h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.apropos-text h3,
.formation-card p,
.formation-name,
.formations-desc,
.hero-subtitle,
h2,
h3,
h4 {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-brand-name,
.hero-monogram,
.hero-tagline,
.logo {
  font-family: "Cormorant Garamond", serif;
}
h2,
h3 {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
h2.is-visible,
h3.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px;
  transition: padding 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header.is-scrolled,
.navbar {
  padding: 0;
}
.navbar {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-radius 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header.is-scrolled .navbar {
  border-radius: 0;
  border-color: transparent transparent rgba(17, 17, 17, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
}
.nav-groupe {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-groupe--gauche {
  justify-self: start;
  justify-content: flex-start;
}
.nav-groupe--droite {
  justify-self: end;
  justify-content: flex-end;
}
.menu-toggle {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: 0 0;
  border: none;
  padding: 4px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--noir);
  border-radius: 1px;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color 0.3s;
}
.nav-line-left,
.nav-line-right,
.nav-text {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menu-toggle:hover .hamburger-line {
  background-color: var(--terracotta);
}
.menu-toggle.is-open .hamburger-line:first-child {
  transform: translateY(3.25px) rotate(45deg);
  background-color: var(--terracotta);
}
.menu-toggle.is-open .hamburger-line:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
  background-color: var(--terracotta);
}
.nav-clock {
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.logo,
.nav-link,
.nav-text {
  color: var(--noir);
}
.logo {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: clamp(1px, 2vw, 2px);
  justify-self: center;
  text-align: left;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.menu-toggle,
.nav-mobile {
  display: none;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(1.4em + 3px);
  position: relative;
}
.nav-text {
  display: block;
  line-height: 1.4em;
  text-shadow: 0 1.4em 0 var(--terracotta);
}
.nav-link:hover .nav-text {
  transform: translateY(-1.4em);
}
.nav-line-wrap {
  display: flex;
  width: 100%;
  height: 1px;
  margin-top: 2px;
  flex-shrink: 0;
}
.nav-line-left,
.nav-line-right {
  display: block;
  height: 1px;
  background-color: var(--terracotta);
  width: 50%;
}
.nav-line-left {
  transform: translateX(-100%);
}
.nav-line-right {
  transform: translateX(100%);
}
.nav-link:hover .nav-line-left,
.nav-link:hover .nav-line-right {
  transform: translateX(0);
}
.hero-split {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #000;
  overflow: hidden;
}
#heroCanvas,
.hero-film-grain,
.hero-flash,
.hero-light-sweep,
.hero-vignette {
  position: absolute;
  pointer-events: none;
}
#heroCanvas {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-flash {
  inset: 0;
  background: #fff;
  z-index: 20;
  opacity: 0;
  animation: 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards heroFlash;
}
@keyframes heroFlash {
  0%,
  100% {
    opacity: 0;
  }
  10% {
    opacity: 0.35;
  }
}
.hero-light-sweep {
  inset: 0;
  z-index: 12;
  background: linear-gradient(
    105deg,
    transparent 0,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-150%);
  animation: 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s forwards lightSweep;
}
.hero-light-sweep--2 {
  background: linear-gradient(
    95deg,
    transparent 0,
    transparent 42%,
    rgba(220, 200, 160, 0.04) 46%,
    rgba(220, 200, 160, 0.08) 50%,
    rgba(220, 200, 160, 0.04) 54%,
    transparent 58%,
    transparent 100%
  );
  animation-delay: 2.8s;
  animation-duration: 1.8s;
}
@keyframes lightSweep {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(150%);
  }
}
.hero-vignette {
  inset: 0;
  z-index: 15;
  background: radial-gradient(
    ellipse at center,
    transparent 35%,
    rgba(0, 0, 0, 0.75) 100%
  );
}
.hero-film-grain {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 14;
  opacity: 0.04;
  animation: 0.4s steps(6) infinite heroGrain;
}
@keyframes heroGrain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2%, -3%);
  }
  30% {
    transform: translate(3%, 1%);
  }
  50% {
    transform: translate(-3%, 3%);
  }
  70% {
    transform: translate(1%, -1%);
  }
  90% {
    transform: translate(-1%, 2%);
  }
}
.hero-left {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-horizontal-line,
.hero-radial-burst {
  position: absolute;
  left: 50%;
  z-index: -1;
  pointer-events: none;
  top: 50%;
}
.hero-left-content {
  text-align: center;
  opacity: 0;
  transform: scale(0.85);
  animation: 2.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards heroLogoReveal;
}
@keyframes heroLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(12px) brightness(3);
  }
  30% {
    opacity: 1;
    filter: blur(4px) brightness(2.5);
  }
  60% {
    filter: blur(1px) brightness(1.5);
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px) brightness(1);
  }
}
.hero-radial-burst {
  width: 200vmax;
  height: 200vmax;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0,
    transparent 60%
  );
  animation: 2s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards radialBurst;
}
@keyframes radialBurst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.hero-horizontal-line {
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: translateX(-50%);
  animation:
    0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards heroLineExpand,
    1.5s ease-out 2s forwards heroLineFade;
}
@keyframes heroLineExpand {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}
@keyframes heroLineFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.hero-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 4s ease-in-out 4s infinite alternate heroLogoGlow;
}
@keyframes heroLogoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.08));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.18));
  }
}
.hero-monogram {
  font-weight: 600;
  font-size: clamp(140px, 25vw, 280px);
  line-height: 0.85;
  color: #fff;
  letter-spacing: -18px;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
}
.hero-b,
.hero-n {
  display: inline-block;
}
.hero-b {
  font-size: 0.88em;
  margin-left: -0.15em;
}
.hero-brand-name {
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 22px);
  letter-spacing: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  opacity: 0;
  animation: 1.5s 3.2s forwards heroTextFadeIn;
}
.hero-tagline {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  opacity: 0;
  animation: 1.5s 3.6s forwards heroTextFadeIn;
}
.btn-street-text,
.hero-floating-badge span:last-child {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", serif;
}
@keyframes heroTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-hero-street {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  padding: 14px 32px;
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  animation: 1s 4s forwards heroTextFadeIn;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-street-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--or), var(--terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-street:hover .btn-street-bg,
.formation-card:hover::before {
  transform: scaleX(1);
}
.btn-hero-street:hover {
  border-color: var(--or);
}
.btn-street-text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  transition: color 0.3s;
}
.btn-hero-street:hover .btn-street-text {
  color: #000;
}
.btn-street-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  color: rgba(255, 255, 255, 0.4);
  transition:
    color 0.3s,
    transform 0.3s;
}
.hero-scroll-hint,
.scroll-line::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.btn-hero-street:hover .btn-street-arrow {
  color: #000;
  transform: translateX(4px);
}
.service-v2-card:hover .service-v2-name,
.services-v2-link:hover {
  color: var(--terracotta);
}
.hero-scroll-hint {
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: 1s 5s forwards heroTextFadeIn;
}
.hero-card,
.hero-right,
.scroll-line {
  position: relative;
}
.scroll-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}
.scroll-line::after {
  content: "";
  top: 0;
  width: 4px;
  height: 4px;
  background: var(--or);
  border-radius: 50%;
  animation: 2s ease-in-out infinite scrollDotMove;
  box-shadow: 0 0 8px var(--or);
}
@keyframes scrollDotMove {
  0%,
  100% {
    top: 0;
    opacity: 1;
  }
  50% {
    top: calc(100% - 4px);
    opacity: 0.3;
  }
}
.hero-right {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  opacity: 0;
  animation: 1.5s cubic-bezier(0.16, 1, 0.3, 1) 2.5s forwards heroGridReveal;
}
@keyframes heroGridReveal {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-grid {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hero-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 200px;
  flex-shrink: 0;
}
.hero-col--offset {
  margin-top: 50px;
}
.hero-col--offset-sm {
  margin-top: 30px;
}
.hero-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.6);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-card:hover img {
  transform: scale(1.12);
}
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 65%
  );
  transform: translateX(-160%);
  z-index: 2;
  pointer-events: none;
}
.hero-card:hover::before {
  transform: translateX(160%);
  transition: transform 0.85s;
}
.hero-floating-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: 1s 4.5s forwards heroTextFadeIn;
}
.badge-dot,
.hero-location-dot {
  width: 8px;
  height: 8px;
  background: var(--or);
  border-radius: 50%;
  animation: 2s ease-in-out infinite badgePulse;
  box-shadow: 0 0 10px var(--or);
}
@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}
.hero-floating-badge span:last-child {
  font-size: 12px;
  letter-spacing: 2px;
}
@media (max-width: 1100px) {
  .hero-col {
    width: 160px;
  }
  .hero-monogram {
    font-size: clamp(120px, 20vw, 200px);
    letter-spacing: -14px;
  }
}
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-left {
    padding: 120px 20px 60px;
    min-height: 70vh;
  }
  .hero-right {
    padding: 40px 20px 80px;
  }
  .hero-grid {
    gap: 12px;
    justify-content: center;
  }
  .hero-col {
    width: 140px;
  }
  .hero-col--offset {
    margin-top: 30px;
  }
  .hero-col--offset-sm {
    margin-top: 20px;
  }
  .hero-card {
    border-radius: 16px;
  }
  .hero-floating-badge {
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
  }
  .hero-floating-badge span:last-child {
    font-size: 10px;
  }
  .hero-scroll-hint {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero-left {
    padding: 100px 15px 40px;
    min-height: 55vh;
  }
  .hero-right {
    padding: 20px 10px 60px;
  }
  .hero-grid {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-col {
    width: calc(50% - 8px);
    max-width: 160px;
    gap: 8px;
  }
  .hero-col:nth-child(3),
  .hero-col:nth-child(4) {
    display: none;
  }
  .hero-col--offset,
  .hero-col--offset-sm {
    margin-top: 20px;
  }
  .hero-card {
    border-radius: 12px;
    height: auto !important;
    aspect-ratio: 3/4;
  }
  .hero-monogram {
    font-size: clamp(80px, 25vw, 140px);
    letter-spacing: -8px;
  }
  .hero-brand-name {
    letter-spacing: 6px;
    font-size: 16px;
  }
  .hero-tagline {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .hero-floating-badge {
    bottom: 15px;
    right: 15px;
    left: 15px;
    justify-content: center;
    padding: 10px 16px;
  }
  .hero-floating-badge span:last-child {
    font-size: 9px;
  }
}
.hero-centered {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0a0a0a 0, #111 50%, #0d0d0d 100%);
  overflow: hidden;
}
.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 0,
      rgba(201, 161, 91, 0.08) 0,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 50% 100%,
      rgba(196, 106, 43, 0.06) 0,
      transparent 50%
    );
  z-index: 1;
}
.hero-centered-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}
.hero-deco-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--or), transparent);
  opacity: 0;
  animation: 1.5s 0.5s forwards heroDecoLineReveal;
}
.hero-deco-line--top,
.serum-info-header {
  margin-bottom: 30px;
}
.hero-deco-line--bottom {
  margin-top: 30px;
  height: 80px;
}
@keyframes heroDecoLineReveal {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 0.6;
    transform: scaleY(1);
  }
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 40px;
  opacity: 0;
  animation: 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards heroTitleReveal;
}
.hero-title-line {
  display: block;
  color: #fff;
}
.hero-title-line--accent {
  color: var(--or);
  font-style: italic;
  font-weight: 400;
}
@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-portrait-wrapper {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  animation: 2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards heroPortraitReveal;
}
@keyframes heroPortraitReveal {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.hero-portrait-frame {
  position: relative;
  width: 300px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
.hero-portrait-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 161, 91, 0.3) 0,
    transparent 70%
  );
  z-index: -1;
  filter: blur(30px);
  animation: 4s ease-in-out infinite heroGlowPulse;
}
@keyframes heroGlowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
.hero-portrait-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  background: linear-gradient(
      180deg,
      var(--or) 0,
      transparent 50%,
      var(--terracotta) 100%
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
}
.hero-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition:
    filter 0.5s,
    transform 0.5s;
}
.hero-portrait-frame:hover .hero-portrait-img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.02);
}
.hero-portrait-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0,
    transparent 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-portrait-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-portrait-deco--left {
  left: -40px;
}
.hero-portrait-deco--right {
  right: -40px;
}
.hero-portrait-deco span {
  width: 20px;
  height: 2px;
  background: var(--or);
  opacity: 0;
  animation: 0.5s forwards heroDecoSpanReveal;
}
.hero-portrait-deco--left span {
  transform-origin: right;
}
.hero-portrait-deco--right span {
  transform-origin: left;
}
.hero-portrait-deco span:first-child {
  animation-delay: 2s;
  width: 25px;
}
.hero-portrait-deco span:nth-child(2) {
  animation-delay: 2.1s;
  width: 35px;
}
.hero-portrait-deco span:nth-child(3) {
  animation-delay: 2.2s;
  width: 20px;
}
@keyframes heroDecoSpanReveal {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
}
.hero-subtitle {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 30px;
  opacity: 0;
  animation: 1.5s 1.8s forwards heroSubtitleReveal;
}
.hero-cta,
.hero-location-badge span:last-child {
  font-family: Inter, sans-serif;
  text-transform: uppercase;
}
@keyframes heroSubtitleReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-location-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 12px 24px;
  margin-bottom: 30px;
  opacity: 0;
  animation: 1s 2.2s forwards heroSubtitleReveal;
}
.hero-location-badge span:last-child {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--or) 0, var(--terracotta) 100%);
  color: #111;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 100px;
  opacity: 0;
  animation: 1s 2.5s forwards heroSubtitleReveal;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(201, 161, 91, 0.3);
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(201, 161, 91, 0.4);
}
.hero-cta svg {
  animation: 2s ease-in-out infinite heroCtaArrow;
}
@keyframes heroCtaArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.hero-trio-slideshow {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 650px;
  margin: 0 auto 40px;
  z-index: 5;
  animation: 2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards heroPortraitReveal;
  opacity: 0;
  perspective: 1000px;
}
.hero-trio-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 161, 91, 0.1);
  border: 1.5px solid rgba(201, 161, 91, 0.3);
  transition: 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
}
.hero-trio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  transition: transform 3s;
}
.hero-trio-card.pos-center {
  opacity: 1;
  z-index: 3;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.tarif-card.hide,
.tarifs-bg {
  pointer-events: none;
}
.hero-trio-card.pos-center img,
.service-v2-card--dezoom:hover .service-v2-image img {
  transform: scale(1);
}
.hero-trio-card.pos-left {
  opacity: 0;
  z-index: 1;
  transform: translateX(-40px) scale(0.95);
}
.hero-trio-card.pos-right {
  opacity: 0;
  z-index: 1;
  transform: translateX(40px) scale(0.95);
}
@media (max-width: 900px) {
  .hero-trio-slideshow {
    max-width: 420px;
    height: 550px;
  }
}
@media (max-width: 600px) {
  .hero-centered {
    min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(2.8rem, 15vw, 4rem);
    margin-bottom: 30px;
  }
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  .hero-location-badge {
    padding: 10px 18px;
  }
  .hero-trio-slideshow {
    width: 90%;
    max-width: 350px;
    height: 500px;
    margin-bottom: 30px;
  }
  .hero-trio-card {
    border-radius: 20px;
  }
  .hero-deco-line {
    height: 40px;
  }
}
@media (max-width: 400px) {
  .hero-monogram {
    font-size: 70px;
    letter-spacing: -6px;
  }
  .hero-brand-name {
    letter-spacing: 4px;
    font-size: 14px;
  }
  .hero-col {
    width: calc(50% - 6px);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-trio-slideshow {
    height: 450px;
  }
}
.services-v2 {
  background-color: var(--blanc-casse);
  padding: 100px 40px;
}
.avis-inner,
.services-v2-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.services-v2-left {
  flex: 1;
  min-width: 280px;
}
.services-v2-label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.services-v2-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--noir);
  margin: 0;
}
.services-v2-right {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 20px;
}
.services-v2-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.services-v2-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.services-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--noir);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    color 0.3s,
    gap 0.3s;
}
.prestation-popup-cta svg,
.service-v2-badge,
.services-v2-link .link-arrow {
  transition: transform 0.3s;
}
.services-v2-link:hover {
  gap: 12px;
}
.services-v2-link:hover .link-arrow {
  transform: translateX(4px);
}
.services-v2-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.services-v2-gallery::-webkit-scrollbar {
  display: none;
}
.service-v2-card {
  flex: 0 0 auto;
  width: calc((100% - 80px) / 6);
  min-width: 160px;
  scroll-snap-align: start;
}
.service-v2-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
}
.service-v2-card--first .service-v2-image {
  border-radius: 60px 12px 12px 60px;
}
.service-v2-card--last .service-v2-image {
  border-radius: 12px 60px 60px 12px;
}
.service-v2-image img,
.service-v2-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-v2-card--bw .service-v2-image img {
  filter: grayscale(100%);
}
.service-v2-card:hover .service-v2-image img,
.service-v2-card:hover .service-v2-image video {
  transform: scale(1.05);
}
.service-v2-card--dezoom .service-v2-image img {
  object-position: top center;
}
.service-v2-badge--fullscreen:hover {
  transform: scale(1.25);
}
.service-v2-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.service-v2-badge svg {
  width: 14px;
  height: 14px;
}
.service-v2-card:hover .service-v2-badge {
  transform: scale(1.15);
}
.service-v2-badge--gold {
  background: var(--or);
}
.service-v2-badge--terracotta {
  background: var(--terracotta);
}
.service-v2-name {
  display: block;
  margin-top: 14px;
  font-family: Montserrat, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--noir);
  text-align: left;
  line-height: 1.3;
  transition: color 0.3s;
}
.tarifs {
  position: relative;
  background: var(--noir);
  padding: 100px 20px 120px;
  overflow: hidden;
}
.tarifs-bg,
.tarifs-gradient,
.tarifs-pattern {
  position: absolute;
  inset: 0;
}
.tarifs-gradient {
  background:
    radial-gradient(
      ellipse 60% 40% at 20% 20%,
      rgba(201, 161, 91, 0.08) 0,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 80%,
      rgba(196, 106, 43, 0.06) 0,
      transparent 50%
    ),
    linear-gradient(180deg, #0a0a0a 0, #111 50%, #0d0d0d 100%);
}
.tarifs-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23C9A15B' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.tarifs-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.avis-header,
.tarifs-header {
  text-align: center;
  margin-bottom: 60px;
}
.tarifs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 161, 91, 0.1);
  border: 1px solid rgba(201, 161, 91, 0.25);
  border-radius: 100px;
  padding: 10px 24px;
  margin-bottom: 25px;
  animation: 3s ease-in-out infinite badgeGlow;
}
@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(201, 161, 91, 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(201, 161, 91, 0.15);
  }
}
.tarifs-badge-icon {
  color: var(--or);
  font-size: 0.7rem;
  animation: 4s linear infinite iconRotate;
}
@keyframes iconRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tarifs-badge span:last-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--or);
  font-weight: 500;
}
.tarifs-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 8vw, 4rem);
  font-weight: 400;
  color: var(--blanc-casse);
  margin-bottom: 15px;
}
.filter-btn,
.loader-text {
  font-family: Inter, sans-serif;
}
.tarifs-title strong {
  color: var(--or);
  font-weight: 400;
}
.tarifs-desc {
  color: rgba(247, 244, 239, 0.5);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}
.tarifs-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.filter-btn {
  position: relative;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(247, 244, 239, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--or), var(--terracotta));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  border-radius: 50px;
}
.filter-btn:hover {
  border-color: rgba(201, 161, 91, 0.4);
  color: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 91, 0.15);
}
.filter-btn--all.active,
.filter-btn.active {
  background: linear-gradient(135deg, var(--or), var(--terracotta));
  color: var(--noir);
  border-color: transparent;
}
.filter-btn.active {
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(201, 161, 91, 0.3);
}
.filter-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 161, 91, 0.4);
}
.filter-btn--all {
  font-weight: 700;
  padding: 14px 34px;
  font-size: 0.95rem;
  border: 1px solid var(--or);
  background: rgba(201, 161, 91, 0.1);
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 15px rgba(201, 161, 91, 0.2);
  animation: 2s cubic-bezier(0.4, 0, 0.2, 1) infinite pulseAllBtn;
}
.filter-btn--all.active {
  box-shadow: 0 10px 30px rgba(201, 161, 91, 0.4);
  animation: 2s cubic-bezier(0.4, 0, 0.2, 1) infinite pulseAllBtnActive;
}
@keyframes pulseAllBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 161, 91, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(201, 161, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 161, 91, 0);
  }
}
@keyframes pulseAllBtnActive {
  0% {
    box-shadow:
      0 8px 25px rgba(201, 161, 91, 0.5),
      0 0 0 0 rgba(201, 161, 91, 0.4);
  }
  70% {
    box-shadow:
      0 8px 25px rgba(201, 161, 91, 0.5),
      0 0 0 15px rgba(201, 161, 91, 0);
  }
  100% {
    box-shadow:
      0 8px 25px rgba(201, 161, 91, 0.5),
      0 0 0 0 rgba(201, 161, 91, 0);
  }
}
.tarif-card.hide {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  position: absolute;
  visibility: hidden;
}
.tarifs-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 10;
}
.prestation-popup-overlay.active,
.serum-image-overlay.active,
.tarifs-loader.active,
.video-fullscreen-overlay.active {
  opacity: 1;
  visibility: visible;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  position: relative;
}
.loader-spinner::after,
.loader-spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.loader-spinner::before {
  border-top-color: var(--or);
  border-right-color: var(--or);
  animation: 0.8s linear infinite spinnerRotate;
}
.loader-spinner::after {
  inset: 6px;
  border-bottom-color: var(--terracotta);
  border-left-color: var(--terracotta);
  animation: 0.6s linear infinite reverse spinnerRotate;
}
@keyframes spinnerRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--or);
  animation: 1s ease-in-out infinite loaderPulse;
}
@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.tarifs-grid.is-loading {
  min-height: 300px;
  position: relative;
}
.tarifs-grid.is-loading .tarif-card {
  opacity: 0.15 !important;
  transform: scale(0.95) !important;
  pointer-events: none;
  filter: blur(2px);
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 80px;
}
.tarif-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.tarif-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(201, 161, 91, 0.2),
    transparent,
    rgba(196, 106, 43, 0.1)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.avis-card:first-child .avis-card-inner::after,
.avis-card:hover .avis-card-inner::after,
.serum-v2-benefit:hover .benefit-icon-glow,
.serum-video-container:hover .serum-play-indicator,
.tarif-card:hover::before {
  opacity: 1;
}
.tarif-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 161, 91, 0.2);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 161, 91, 0.1);
}
.tarif-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.7s;
}
.serum-promo-btn:hover .serum-promo-btn-shine,
.tarif-card:hover .tarif-card-shine {
  left: 100%;
}
.tarif-card[data-popular="true"] {
  border-color: rgba(201, 161, 91, 0.3);
  background: linear-gradient(
    145deg,
    rgba(201, 161, 91, 0.08) 0,
    rgba(255, 255, 255, 0.02) 100%
  );
}
.tarif-card[data-premium="true"] {
  border-color: rgba(196, 106, 43, 0.3);
  background: linear-gradient(
    145deg,
    rgba(196, 106, 43, 0.08) 0,
    rgba(255, 255, 255, 0.02) 100%
  );
}
.tarif-card--homme {
  border-color: rgba(201, 161, 91, 0.2);
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.8) 0,
    rgba(255, 255, 255, 0.02) 100%
  );
}
.tarif-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tarif-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.6);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
}
.tarif-duration svg {
  opacity: 0.7;
}
.tarif-badge-homme,
.tarif-badge-popular,
.tarif-badge-premium {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.tarif-badge-popular {
  background: linear-gradient(135deg, var(--or), #d4af37);
  color: var(--noir);
}
.tarif-badge-premium {
  background: linear-gradient(135deg, var(--terracotta), #d4673b);
  color: var(--blanc-casse);
}
.extra-price,
.prestation-popup-close:hover svg,
.tarif-card:hover .tarif-amount,
.tarif-card:hover .tarif-name {
  color: var(--or);
}
.tarif-badge-homme {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: var(--or);
  border: 1px solid var(--or);
}
.tarif-name {
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blanc-casse);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.extra-item--cta .extra-name,
.serum-badge-text {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tarif-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 5px;
}
.tarif-amount {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(247, 244, 239, 0.7);
  line-height: 1;
  transition: color 0.3s;
}
.tarif-currency {
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.5);
}
.tarif-img-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  border: 2px solid rgba(201, 161, 91, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.tarif-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.9) brightness(0.9);
}
img[alt="Boho Braids"].tarif-img {
  object-position: center 0%;
}
img[alt="Vanilles"].tarif-img {
  object-position: center 20%;
}
img[alt="Knotless Braids"].tarif-img {
  object-position: 20% 25%;
}
.tarif-card:hover .tarif-img,
.tarif-card:hover img[alt="Knotless Braids"].tarif-img {
  transform: scale(1.1);
  filter: saturate(1.1) brightness(1.05);
}
.tarifs-extras {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px 40px;
  margin-bottom: 40px;
}
.extras-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.extras-title span:nth-child(2) {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--blanc-casse);
  white-space: nowrap;
}
.extras-line {
  flex: 1;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 161, 91, 0.3),
    transparent
  );
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.extra-icon,
.extra-item {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .services-v2 {
    padding: 80px 24px;
  }
  .services-v2-header {
    flex-direction: column;
    gap: 30px;
  }
  .services-v2-right {
    max-width: 100%;
  }
  .service-v2-card {
    min-width: 160px;
  }
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.extra-item {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: 0.3s;
}
.extra-item:hover {
  background: rgba(201, 161, 91, 0.08);
  transform: translateX(5px);
}
.extra-name {
  color: rgba(247, 244, 239, 0.8);
  font-size: 0.9rem;
}
.extra-dots {
  flex: 1;
  height: 1px;
  margin: 0 15px;
  background: repeating-linear-gradient(
    90deg,
    rgba(201, 161, 91, 0.2) 0,
    rgba(201, 161, 91, 0.2) 4px,
    transparent 4px,
    transparent 8px
  );
}
.extra-price {
  font-weight: 600;
  font-size: 1rem;
}
.serum-badge-text,
.serum-label {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--or);
}
.extra-item--cta {
  background: #2d1b18;
  border: 1px solid #c46a2b;
  position: relative;
  overflow: hidden;
  animation: 3s ease-in-out infinite extraCtaPulse;
}
.extra-item--cta .extra-name {
  color: var(--or);
  font-weight: 700;
  font-size: 0.8rem;
}
.extra-item--cta .extra-dots {
  background: repeating-linear-gradient(
    90deg,
    #c46a2b 0,
    #c46a2b 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.4;
}
.extra-icon {
  margin-left: 12px;
  animation: 2.5s ease-in-out infinite iconEngagement;
}
.extra-icon svg {
  stroke: var(--or);
  transition: 0.4s;
}
.extra-item--cta:hover {
  background: var(--or);
  border-color: var(--or);
  transform: translateY(-3px) scale(1.02);
}
.extra-item--cta:hover .extra-icon svg,
.extra-item--cta:hover .extra-name {
  color: var(--noir);
  stroke: var(--noir);
}
@keyframes iconEngagement {
  0%,
  100% {
    transform: scale(1) rotate(0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2) rotate(8deg);
    opacity: 1;
  }
}
@keyframes extraCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(45, 27, 24, 0.6);
  }
  50% {
    box-shadow: 0 0 25px 5px rgba(196, 106, 43, 0.3);
  }
}
.serum-showcase-v2 {
  position: relative;
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  overflow: visible;
}
.serum-ambient-glow,
.serum-particles {
  position: absolute;
  pointer-events: none;
}
.serum-particles {
  top: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  z-index: 1;
}
.serum-ambient-glow {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 161, 91, 0.15) 0,
    transparent 70%
  );
  filter: blur(60px);
  z-index: 0;
  animation: 8s ease-in-out infinite ambientFloat;
}
.serum-ambient-glow:first-of-type {
  top: -150px;
  right: -100px;
}
.serum-ambient-glow--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(
    circle,
    rgba(196, 106, 43, 0.12) 0,
    transparent 70%
  );
  animation-delay: -4s;
  animation-duration: 10s;
}
@keyframes ambientFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -20px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, 30px) scale(0.95);
    opacity: 0.5;
  }
  75% {
    transform: translate(-30px, -10px) scale(1.05);
    opacity: 0.7;
  }
}
.serum-v2-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.serum-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  perspective: 1000px;
}
.serum-holo-frame {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 5;
}
.serum-holo-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--or), var(--terracotta)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  animation: 3s ease-in-out infinite cornerPulse;
}
.serum-holo-corner--tl {
  top: 0;
  left: 0;
  border-radius: 12px 0 0;
  border-right: none;
  border-bottom: none;
}
.serum-holo-corner--tr {
  top: 0;
  right: 0;
  border-radius: 0 12px 0 0;
  border-left: none;
  border-bottom: none;
  animation-delay: 0.5s;
}
.serum-holo-corner--bl {
  bottom: 0;
  left: 0;
  border-radius: 0 0 0 12px;
  border-right: none;
  border-top: none;
  animation-delay: 1s;
}
.serum-holo-corner--br {
  bottom: 0;
  right: 0;
  border-radius: 0 0 12px;
  border-left: none;
  border-top: none;
  animation-delay: 1.5s;
}
@keyframes cornerPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.serum-liquid-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(201, 161, 91, 0.08) 0,
    transparent 100%
  );
  border-radius: 24px 24px 0 0;
  pointer-events: none;
  z-index: 3;
  animation: 4s ease-in-out infinite liquidShimmer;
}
@keyframes liquidShimmer {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-5px);
  }
}
.serum-border-glow {
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  background: conic-gradient(
    from 0deg,
    var(--or),
    var(--terracotta),
    gold,
    var(--or),
    var(--terracotta),
    gold,
    var(--or)
  );
  background-size: 100% 100%;
  z-index: 1;
  animation: 6s linear infinite borderRotate;
  filter: blur(2px);
  opacity: 0.7;
}
.serum-border-glow::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #0a0a0a;
  border-radius: 24px;
}
@keyframes borderRotate {
  0% {
    filter: blur(2px) hue-rotate(0deg);
  }
  100% {
    filter: blur(2px) hue-rotate(360deg);
  }
}
.serum-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  background: #0a0a0a;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(201, 161, 91, 0.1),
    inset 0 0 60px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.serum-glass-overlay,
.serum-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.serum-video-container:hover {
  transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}
.apropos-image,
.formations-image,
.serum-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.serum-glass-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0,
    transparent 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 4;
}
.serum-scanlines {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  z-index: 5;
  opacity: 0.5;
}
.serum-floating-badge,
.serum-play-indicator {
  display: flex;
  align-items: center;
  z-index: 10;
  position: absolute;
}
.serum-floating-badge {
  top: 20px;
  left: -15px;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 161, 91, 0.4);
  border-radius: 30px;
  animation: 4s ease-in-out infinite badgeFloat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}
.serum-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--or);
  border-radius: 50%;
  animation: 2s ease-in-out infinite pulseDot;
  box-shadow: 0 0 10px var(--or);
}
@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
.avis-pill span:last-child,
.serum-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.serum-play-indicator {
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-icon,
.serum-cta-wrap,
.serum-v2-price {
  z-index: 1;
  position: relative;
}
.serum-play-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201, 161, 91, 0.5);
  border-radius: 50%;
  animation: 2s ease-out infinite playRingPulse;
}
.serum-showcase-v2.is-visible .serum-title-line,
.serum-title-line {
  animation: 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards titleReveal;
}
@keyframes playRingPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.serum-play-icon {
  width: 24px;
  height: 24px;
  color: var(--or);
  filter: drop-shadow(0 0 10px rgba(201, 161, 91, 0.5));
}
.serum-v2-info {
  position: relative;
}
.serum-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201, 161, 91, 0.1);
  border: 1px solid rgba(201, 161, 91, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
}
.serum-v2-title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.serum-title-line {
  display: inline-block;
  margin-right: 15px;
  color: var(--blanc-casse);
  opacity: 0;
  transform: translateY(30px);
}
.serum-title-line--accent {
  color: var(--or);
  font-style: italic;
  animation-delay: 0.15s;
  text-shadow: 0 0 40px rgba(201, 161, 91, 0.4);
}
@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.serum-v2-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: rgba(247, 244, 239, 0.6);
  font-style: italic;
}
.serum-v2-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.tagline-icon {
  color: var(--or);
  animation: 8s linear infinite iconSpin;
}
@keyframes iconSpin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.serum-v2-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.serum-v2-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(201, 161, 91, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.serum-showcase-v2.is-visible .serum-v2-benefit {
  opacity: 1;
  transform: translateX(0);
}
.serum-showcase-v2.is-visible .serum-v2-benefit[data-delay="0"] {
  transition-delay: 0.2s;
}
.serum-showcase-v2.is-visible .serum-v2-benefit[data-delay="1"] {
  transition-delay: 0.35s;
}
.serum-showcase-v2.is-visible .serum-v2-benefit[data-delay="2"] {
  transition-delay: 0.5s;
}
.serum-v2-benefit:hover {
  background: rgba(201, 161, 91, 0.08);
  border-color: rgba(201, 161, 91, 0.25);
  transform: translateX(10px);
}
.benefit-icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(201, 161, 91, 0.3) 0,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-icon {
  font-size: 1.8rem;
}
.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit-content strong {
  color: var(--or);
  font-size: 1rem;
  font-weight: 600;
}
.benefit-content span {
  color: rgba(247, 244, 239, 0.55);
  font-size: 0.85rem;
}
.serum-v2-price-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 45px;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 91, 0.12) 0,
    rgba(196, 106, 43, 0.08) 100%
  );
  border: 1px solid rgba(201, 161, 91, 0.25);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.serum-v2-price-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201, 161, 91, 0.1) 60deg,
    transparent 120deg
  );
  animation: 8s linear infinite priceShine;
  pointer-events: none;
}
@keyframes priceShine {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.serum-v2-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.price-currency {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--or);
  opacity: 0.7;
  margin-top: 8px;
}
.price-amount {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--or);
  line-height: 1;
  text-shadow: 0 0 40px rgba(201, 161, 91, 0.5);
  animation: 3s ease-in-out infinite priceGlow;
}
@keyframes priceGlow {
  0%,
  100% {
    text-shadow: 0 0 40px rgba(201, 161, 91, 0.5);
  }
  50% {
    text-shadow:
      0 0 60px rgba(201, 161, 91, 0.8),
      0 0 80px rgba(201, 161, 91, 0.3);
  }
}
.serum-cta-wrap {
  flex: 1;
}
.serum-availability {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.avis-card-quote,
.valeur-card h4 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}
.availability-dot {
  width: 15px;
  height: 15px;
  background: #4caf50;
  border-radius: 50%;
  animation: 2s ease-in-out infinite availablePulse;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}
@keyframes availablePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
  }
}
.serum-deco-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0.4;
  animation: 4s ease-in-out infinite decoLineWidth;
}
@keyframes decoLineWidth {
  0%,
  100% {
    width: 100px;
    opacity: 0.3;
  }
  50% {
    width: 300px;
    opacity: 0.6;
  }
}
@media (max-width: 1024px) {
  .serum-v2-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .serum-video-wrapper {
    max-width: 280px;
  }
  .serum-v2-info {
    max-width: 500px;
    margin: 0 auto;
  }
  .serum-v2-benefit {
    text-align: left;
  }
  .serum-floating-badge {
    left: 50%;
    transform: translateX(-50%);
  }
  @keyframes badgeFloat {
    0%,
    100% {
      transform: translateX(-50%) translateY(0) rotate(-2deg);
    }
    50% {
      transform: translateX(-50%) translateY(-8px) rotate(2deg);
    }
  }
}
.contact h2,
.footer,
.mention-header h1,
.tarifs-note {
  text-align: center;
}
.tarifs-note p {
  color: rgba(247, 244, 239, 0.35);
  font-size: 0.8rem;
  line-height: 1.8;
}
.apropos {
  background: linear-gradient(135deg, var(--beige) 0, var(--blanc-casse) 100%);
  padding: 80px 20px;
}
.apropos h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--noir);
}
.apropos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.apropos-text h3 {
  color: var(--terracotta);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.apropos-text p {
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.8;
}
.lista-apropos {
  list-style: none;
  padding-left: 0;
}
.lista-apropos li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
}
.lista-apropos li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}
.apropos-image-inner {
  aspect-ratio: 4/5;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/5;
}
.apropos-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.15);
  animation: 20s cubic-bezier(0.4, 0, 0.2, 1) infinite kenBurnsSlideshow;
}
.apropos-slideshow .slide:first-child {
  animation-delay: 0s;
  transform-origin: center center;
}
.apropos-slideshow .slide:nth-child(2) {
  animation-delay: 5s;
  transform-origin: top left;
}
.apropos-slideshow .slide:nth-child(3) {
  animation-delay: 10s;
  transform-origin: bottom right;
}
.apropos-slideshow .slide:nth-child(4) {
  animation-delay: 15s;
  transform-origin: top right;
}
@keyframes kenBurnsSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.2);
    filter: brightness(0.5);
  }
  3% {
    opacity: 1;
    filter: brightness(1);
  }
  18% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  20% {
    opacity: 0;
    transform: scale(0.98);
    filter: brightness(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
.apropos-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  animation: 4s ease-in-out infinite wrapperGlow;
}
@keyframes wrapperGlow {
  0%,
  100% {
    filter: drop-shadow(0 20px 40px rgba(201, 161, 91, 0.15));
  }
  50% {
    filter: drop-shadow(0 25px 50px rgba(201, 161, 91, 0.25));
  }
}
.apropos-image-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 91, 0.05) 0,
    transparent 50%,
    rgba(196, 106, 43, 0.03) 100%
  );
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
}
.apropos-image-decor,
.formations-image-decor {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 2px solid var(--or);
  border-radius: 20px;
  z-index: 1;
}
.apropos-valeurs-marquee {
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}
.apropos-valeurs-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: 25s linear infinite scrollMarquee;
}
.valeur-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 12px;
  border-left: 4px solid var(--or);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 320px;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.valeur-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(201, 161, 91, 0.15);
}
.valeur-card h4 {
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.valeur-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}
.avis-clients {
  background-color: var(--noir);
  padding: 80px 20px 120px;
  overflow: hidden;
  perspective: 1200px;
}
.avis-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.avis-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--or);
  animation: 2s ease-in-out infinite avis-pulse;
  flex-shrink: 0;
}
.avis-pill span:last-child {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
}
.avis-title {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--blanc-casse);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.avis-title strong {
  font-weight: 700;
  color: var(--or);
}
.avis-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 300;
}
@keyframes avis-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}
.avis-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.avis-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  margin: 0 auto;
  perspective: 1200px;
}
.avis-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: grab;
}
.avis-card:active {
  cursor: grabbing;
}
.avis-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a1a1a 0, #0f0f0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 161, 91, 0.1) inset;
}
.avis-card-inner::after,
.avis-card-inner::before,
.avis-card-quote {
  position: absolute;
  pointer-events: none;
}
.avis-card-inner::before {
  content: "";
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: left 0.8s;
  z-index: 1;
}
.avis-card:hover .avis-card-inner::before {
  left: 150%;
}
.avis-card-inner::after {
  content: "";
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 91, 0.4) 0,
    transparent 30%,
    transparent 70%,
    rgba(196, 106, 43, 0.3) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.avis-card-quote {
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: var(--or);
  opacity: 0.15;
  line-height: 1;
}
.avis-card-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.avis-card-stars .star {
  color: var(--or);
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(201, 161, 91, 0.5);
}
.avis-card-stars .star.half {
  background: linear-gradient(
    90deg,
    var(--or) 50%,
    rgba(255, 255, 255, 0.2) 50%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.avis-card-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--blanc-casse);
  margin-bottom: 25px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}
.avis-card-name,
.avis-counter {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}
.avis-card-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.avis-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--or);
  box-shadow: 0 0 20px rgba(201, 161, 91, 0.3);
  flex-shrink: 0;
}
.avis-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avis-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.avis-card-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blanc-casse);
}
.avis-card-service {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--or);
  opacity: 0.8;
}
.avis-card[data-position="0"] {
  transform: translateZ(0) translateY(0) rotateX(0) scale(1);
  z-index: 5;
  opacity: 1;
}
.avis-card[data-position="1"] {
  transform: translateZ(-30px) translateY(15px) rotateX(2deg) scale(0.96);
  z-index: 4;
  opacity: 0.85;
}
.avis-card[data-position="2"] {
  transform: translateZ(-60px) translateY(30px) rotateX(4deg) scale(0.92);
  z-index: 3;
  opacity: 0.6;
}
.avis-card[data-position="3"] {
  transform: translateZ(-90px) translateY(45px) rotateX(6deg) scale(0.88);
  z-index: 2;
  opacity: 0.35;
}
.avis-card[data-position="4"],
.avis-card[data-position="hidden"] {
  transform: translateZ(-120px) translateY(60px) rotateX(8deg) scale(0.84);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.avis-card.swipe-left {
  animation: 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards swipeLeft;
}
@keyframes swipeLeft {
  0% {
    transform: translateZ(0) translateX(0) translateY(0) rotateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateZ(50px) translateX(-120%) translateY(-30px)
      rotateY(-25deg) scale(0.9);
    opacity: 0;
  }
}
.avis-card.swipe-right {
  animation: 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards swipeRight;
}
@keyframes swipeRight {
  0% {
    transform: translateZ(0) translateX(0) translateY(0) rotateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateZ(50px) translateX(120%) translateY(-30px)
      rotateY(25deg) scale(0.9);
    opacity: 0;
  }
}
.avis-stack-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.avis-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 91, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: var(--or);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.avis-nav-btn:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--noir);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(201, 161, 91, 0.3);
}
.avis-nav-btn:active {
  transform: scale(0.95);
}
.avis-nav-btn svg {
  stroke: currentColor;
}
.avis-stack-dots {
  display: flex;
  gap: 10px;
}
.avis-dot,
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
}
.avis-dot:hover {
  background: rgba(201, 161, 91, 0.5);
  transform: scale(1.2);
}
.avis-dot.active {
  background: var(--or);
  box-shadow: 0 0 15px rgba(201, 161, 91, 0.6);
  transform: scale(1.3);
}
.avis-counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.avis-current {
  font-size: 2rem;
  font-weight: 600;
  color: var(--or);
}
.avis-separator {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
}
.avis-total {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 600px) {
  .tarifs-filters {
    gap: 8px;
  }
  .filter-btn {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
  .extras-grid {
    grid-template-columns: 1fr;
  }
  .serum-showcase-v2 {
    padding: 40px 20px;
    margin: 60px 0;
  }
  .serum-video-wrapper {
    max-width: 240px;
  }
  .serum-v2-title {
    font-size: 2.5rem;
  }
  .serum-v2-benefit {
    padding: 16px 18px;
    gap: 14px;
  }
  .benefit-icon-wrap {
    width: 40px;
    height: 40px;
  }
  .benefit-icon {
    font-size: 1.5rem;
  }
  .serum-v2-price-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px;
  }
  .serum-availability {
    justify-content: center;
  }
  .price-amount {
    font-size: 3rem;
  }
  .serum-holo-frame {
    inset: -10px;
  }
  .serum-holo-corner {
    width: 25px;
    height: 25px;
  }
  .avis-clients {
    padding: 60px 15px 80px;
  }
  .avis-title {
    font-size: 1.9rem;
  }
  .avis-stack {
    max-width: 100%;
    height: 400px;
  }
  .avis-card-inner {
    padding: 25px;
  }
  .avis-card-quote {
    font-size: 4rem;
    top: 15px;
    right: 20px;
  }
  .avis-card-text {
    font-size: 1rem;
  }
  .avis-nav-btn {
    width: 44px;
    height: 44px;
  }
  .avis-stack-nav {
    gap: 20px;
  }
}
.contact {
  background: linear-gradient(
    135deg,
    var(--noir) 0,
    rgba(17, 17, 17, 0.95) 100%
  );
  color: var(--blanc-casse);
  padding: 80px 20px;
}
.contact-btn,
.contact-btn--mail,
.contact-btn--phone,
.instagram-btn {
  background: rgba(255, 255, 255, 0.03);
}
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--or);
}
.contact-info h3,
.info-item {
  margin-bottom: 2rem;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3 {
  color: var(--terracotta);
  font-size: 1.3rem;
}
.info-item strong {
  color: var(--or);
  display: block;
  margin-bottom: 0.5rem;
}
.info-item p {
  color: var(--beige);
  line-height: 1.6;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 15px;
}
.contact-btn,
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(201, 161, 91, 0.3);
  color: var(--blanc-casse) !important;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
}
.contact-btn svg,
.instagram-icon {
  stroke: var(--or);
  width: 18px;
  height: 18px;
  transition: 0.4s;
}
.contact-btn:hover,
.instagram-btn:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--noir) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 161, 91, 0.15);
}
.contact-btn:hover svg,
.instagram-btn:hover .instagram-icon {
  stroke: var(--noir);
}
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(201, 161, 91, 0.2);
}
.contact-map iframe {
  display: block;
}
.footer {
  background-color: var(--noir);
  color: var(--beige);
  padding: 2rem;
  border-top: 3px solid var(--terracotta);
}
.footer p {
  margin: 0.5rem 0;
}
.footer p:first-child {
  font-weight: 600;
  color: var(--or);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  animation: 0.6s ease-in-out fadeIn;
}
.video-fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.video-fullscreen-container {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  aspect-ratio: 9/16;
}
.video-fullscreen-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: #000;
}
.video-fullscreen-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    transform 0.3s,
    background 0.3s;
}
.video-fullscreen-close:hover {
  transform: scale(1.1);
  background: var(--or);
}
.mentions-legales {
  background-color: var(--blanc-casse);
  padding: 60px 20px;
  min-height: calc(100vh - 200px);
}
.mention-header {
  position: relative;
  margin-bottom: 3rem;
}
.btn-retour {
  display: inline-block;
  background-color: var(--terracotta);
  color: var(--blanc-casse);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 1.5rem;
}
.btn-retour:hover {
  background-color: var(--or);
  transform: translateX(-5px);
}
.mention-header h1 {
  font-size: 2.5rem;
  color: var(--noir);
  margin-bottom: 0;
  margin-top: 1rem;
}
.mentions-legales h1 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--noir);
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.mentions-content {
  max-width: 900px;
  margin: 0 auto;
}
.mention-block {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--terracotta);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.mention-block h2 {
  color: var(--noir);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--or);
}
.mention-block p {
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.mention-block p:last-child {
  margin-bottom: 0;
}
.mentions-liste {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.mentions-liste li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: #333;
}
.mentions-liste li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.mention-block a:hover {
  color: var(--or);
  text-decoration: underline;
}
.mention-block em {
  color: #666;
  font-style: italic;
}
.footer-link {
  color: var(--beige);
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--terracotta);
  text-decoration: underline;
}
.formations {
  padding: 100px 0;
  background-color: var(--blanc-casse);
}
.formations-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.formations-image-wrapper {
  flex: 0 0 40%;
  position: relative;
  max-width: 450px;
}
.formations-image-inner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/5;
}
.formations-content {
  flex: 1;
}
.formations-header {
  text-align: left;
  margin-bottom: 40px;
}
.formations-label {
  display: block;
  font-family: Inter, sans-serif;
  color: var(--terracotta);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.formations-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.formations-title strong {
  font-style: italic;
  color: var(--or);
}
.formations-desc {
  color: #666;
  line-height: 1.6;
}
.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.formation-card {
  background: #fff;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.formation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.formation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.formation-card--full {
  grid-column: 1/-1;
}
.formation-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--noir);
}
.formation-detail {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}
.formation-price {
  font-family: Inter, sans-serif;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 1rem;
}
.formations-cta {
  text-align: left;
}
.formations-cta p {
  margin-bottom: 20px;
  font-style: italic;
}
@media (max-width: 1024px) {
  .formations-container {
    flex-direction: column;
    gap: 40px;
  }
  .formations-image-wrapper {
    flex: 1;
    width: 100%;
    max-width: 400px;
  }
  .formations-cta,
  .formations-header {
    text-align: center;
  }
}
.btn-primary-nilo:hover {
  background: var(--or);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .cursor-dot,
  .cursor-ring,
  .nav-clock,
  .nav-groupe .nav-menu {
    display: none;
  }
  body {
    cursor: auto;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-mobile {
    display: none;
    position: absolute;
    top: calc(10px + 64px);
    left: 10px;
    right: 10px;
    background-color: var(--blanc-casse);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    z-index: 100;
  }
  .nav-mobile.active {
    display: block;
  }
  .header.is-scrolled .nav-mobile {
    top: 64px;
    left: 0;
    right: 0;
    border-radius: 0;
    border-left-color: transparent;
    border-right-color: transparent;
  }
  .nav-mobile-liste {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-mobile-liste li {
    display: block;
    width: 100%;
  }
  .nav-link--mobile {
    display: block;
    padding: 0.9rem 24px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    color: var(--noir);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    height: auto;
    overflow: visible;
  }
  .nav-mobile-liste li:last-child .nav-link--mobile {
    border-bottom: none;
  }
  .services-v2 {
    padding: 60px 16px;
  }
  .services-v2-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .services-v2-links,
  .tarifs-grid {
    gap: 20px;
  }
  .service-v2-card {
    min-width: 140px;
  }
  .services-v2-gallery {
    gap: 12px;
  }
  .contact-content,
  .extras-grid,
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  .tarifs {
    padding: 70px 15px 80px;
  }
  .tarif-card {
    padding: 24px;
  }
  .tarifs-extras {
    padding: 35px 25px;
  }
  .extras-title span:nth-child(2) {
    font-size: 1.2rem;
  }
  .extras-line {
    max-width: 60px;
  }
  .apropos-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .video-fullscreen-container {
    width: 95%;
    max-width: none;
  }
  .video-fullscreen-close {
    top: -45px;
    right: 5px;
  }
  .mentions-legales {
    padding: 40px 15px;
  }
  .mention-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .btn-retour {
    margin-bottom: 1rem;
  }
  .btn-retour:hover {
    transform: translateX(-3px);
  }
  .mention-header h1,
  .mentions-legales h1 {
    font-size: 2rem;
    text-align: left;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .mention-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
  }
  .mention-block h2 {
    font-size: 1.3rem;
  }
  .formations-title {
    font-size: 2.5rem;
  }
}
.prestation-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.prestation-popup {
  background: linear-gradient(145deg, #1a1a1a 0, #0d0d0d 100%);
  border: 1px solid rgba(201, 161, 91, 0.3);
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  padding: 0;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(201, 161, 91, 0.1);
  overflow: hidden;
}
.prestation-popup-overlay.active .prestation-popup,
.serum-image-overlay.active .serum-image-container {
  transform: scale(1) translateY(0);
}
.prestation-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--or), var(--terracotta), var(--or));
}
.prestation-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: 0.3s;
  z-index: 99;
  pointer-events: auto !important;
}
.bonus-badges,
.bonus-header {
  z-index: 1;
  position: relative;
}
.prestation-popup-close svg {
  color: #fff;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.prestation-popup-close:hover {
  background: rgba(201, 161, 91, 0.2);
}
.prestation-popup-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.prestation-popup-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}
.colors-header span,
.prestation-popup-label {
  font-size: 0.85rem;
  font-family: Inter, sans-serif;
  text-transform: uppercase;
}
.prestation-popup-content {
  padding: 25px 30px;
}
.prestation-popup-colors-section,
.prestation-popup-row {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.prestation-popup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.colors-header,
.prestation-popup-label {
  align-items: center;
  gap: 10px;
  display: flex;
}
.prestation-popup-row:last-child {
  border-bottom: none;
}
.prestation-popup-label {
  color: #888;
  letter-spacing: 1px;
}
.colors-header svg:not(.colors-chevron),
.prestation-popup-label svg {
  color: var(--or);
  opacity: 0.7;
}
.prestation-popup-value {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}
.prestation-popup-price {
  color: var(--or);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 0 0 15px rgba(201, 161, 91, 0.3);
  letter-spacing: 0.5px;
}
.prestation-popup-row:has(#popupPrix) {
  background: rgba(201, 161, 91, 0.05);
  margin: 10px -30px;
  padding: 15px 30px;
  border-top: 1px solid rgba(201, 161, 91, 0.1);
  border-bottom: 1px solid rgba(201, 161, 91, 0.1);
}
.bonus-details,
.colors-details {
  width: 100%;
}
.bonus-summary,
.colors-summary {
  list-style: none;
  cursor: pointer;
  outline: 0;
}
.colors-summary::-webkit-details-marker {
  display: none;
}
.colors-header {
  justify-content: space-between;
}
.colors-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.colors-chevron {
  color: var(--or);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}
.bonus-details[open] .bonus-chevron,
.colors-details[open] .colors-chevron {
  transform: rotate(180deg);
}
.colors-header span {
  color: #888;
  letter-spacing: 1px;
}
.colors-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  animation: 0.3s ease-out slideDownColors;
}
@keyframes slideDownColors {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.colors-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.colors-group-label {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}
.bonus-header span,
.color-name {
  font-size: 0.75rem;
  font-family: Inter, sans-serif;
}
.colors-group-label:first-child {
  margin-top: 0;
}
.colors-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bonus-header,
.color-swatch {
  align-items: center;
  display: flex;
}
.color-swatch {
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: 0.3s;
}
.color-swatch:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.bonus-badge:hover,
.serum-promo-btn:hover {
  transform: translateY(-2px);
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.color-name {
  color: #ccc;
}
.color-dot--1b {
  background: #1a1a1a;
}
.color-dot--4 {
  background: #3d2314;
}
.color-dot--27 {
  background: #d4a574;
}
.color-dot--30 {
  background: #8b4513;
}
.color-dot--33 {
  background: #4a1c2a;
}
.color-dot--350 {
  background: #8b0000;
}
.color-dot--39 {
  background: #722f37;
}
.color-dot--bg {
  background: #5c1a1a;
}
.color-dot--mix {
  background: linear-gradient(135deg, #3d2314 50%, #d4a574 50%);
}
.color-dot--613 {
  background: wheat;
}
.colors-na {
  color: #666;
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-style: italic;
}
.prestation-popup-bonus {
  margin: 0 30px;
  padding: 15px 20px;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 91, 0.1) 0,
    rgba(183, 101, 77, 0.1) 100%
  );
  border: 1px solid rgba(201, 161, 91, 0.2);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.prestation-popup-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 161, 91, 0.1),
    transparent
  );
  animation: 3s ease-in-out infinite bonusShine;
}
@keyframes bonusShine {
  0% {
    left: -100%;
  }
  100%,
  50% {
    left: 100%;
  }
}
.bonus-summary::-webkit-details-marker {
  display: none;
}
.bonus-header {
  justify-content: space-between;
  gap: 8px;
}
.bonus-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bonus-header svg:not(.bonus-chevron) {
  color: var(--or);
  animation: 2s ease-in-out infinite starPulse;
}
.bonus-chevron {
  color: var(--or);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.bonus-header span {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--or);
  font-weight: 600;
}
.bonus-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
  animation: 0.3s ease-out slideDownBonus;
}
@keyframes slideDownBonus {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bonus-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 25px;
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  transition: 0.3s;
  cursor: default;
}
.prestation-popup-cta,
.serum-image-badge {
  font-weight: 600;
  text-transform: uppercase;
}
.bonus-badge--netflix {
  background: linear-gradient(135deg, #e50914 0, #b81d24 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}
.bonus-badge--netflix:hover {
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}
.bonus-badge--snack {
  background: linear-gradient(135deg, var(--or) 0, #d4a84b 100%);
  color: var(--noir);
  box-shadow: 0 4px 15px rgba(201, 161, 91, 0.3);
}
.bonus-badge--snack:hover {
  box-shadow: 0 6px 20px rgba(201, 161, 91, 0.4);
}
.bonus-badge--gift {
  background: linear-gradient(135deg, #10b981 0, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.bonus-badge--gift:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.bonus-badge svg {
  flex-shrink: 0;
}
.prestation-popup-footer {
  padding: 20px 30px 30px;
  text-align: center;
}
.prestation-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--or) 0, var(--terracotta) 100%);
  color: var(--noir);
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: 0.3s;
}
.prestation-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 91, 0.3);
}
.prestation-popup-cta:hover svg {
  transform: translate(3px, -3px);
}
.serum-promo-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 15px 30px;
  padding: 16px 20px;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 91, 0.15) 0,
    rgba(201, 161, 91, 0.05) 100%
  );
  border: 1px solid rgba(201, 161, 91, 0.4);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
}
.serum-promo-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(201, 161, 91, 0.25) 0,
    rgba(201, 161, 91, 0.1) 100%
  );
  border-color: var(--or);
  box-shadow: 0 8px 25px rgba(201, 161, 91, 0.2);
}
.serum-promo-btn-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.serum-promo-btn-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--or) 0, #d4a574 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 161, 91, 0.3);
}
.serum-promo-btn-icon svg {
  color: #111;
  fill: #111;
}
.serum-promo-btn-text {
  flex: 1;
  text-align: left;
}
.serum-promo-btn-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--or);
  margin-bottom: 4px;
}
.serum-promo-btn-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #fff;
}
.serum-promo-btn-arrow {
  flex-shrink: 0;
  color: var(--or);
  opacity: 0.7;
  transition: 0.3s;
}
.serum-promo-btn:hover .serum-promo-btn-arrow {
  opacity: 1;
  transform: translateX(4px);
}
.serum-promo-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}
.serum-image-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.serum-image-container {
  position: relative;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.serum-image-close {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10002;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.serum-image-close svg {
  color: #fff;
  width: 30px;
  height: 30px;
}
.serum-image-close:hover {
  background: var(--or);
  border-color: #fff;
  transform: rotate(90deg) scale(1.1);
}
.serum-image-header {
  text-align: center;
  margin-bottom: 20px;
}
.serum-image-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--or) 0, #d4a574 100%);
  color: #111;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.serum-image-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 4px;
}
.serum-image-subtitle,
.serum-image-tagline {
  font-family: Inter, sans-serif;
  text-transform: uppercase;
}
.serum-image-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
}
.realisation-gallery-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.realisation-gallery {
  width: 100%;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.realisation-gallery::-webkit-scrollbar {
  display: none;
}
.gallery-image {
  flex: 0 0 100%;
  width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 16px;
  scroll-snap-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 161, 91, 0.3);
}
.realisation-gallery-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 5px;
}
.gallery-dot.active {
  background: var(--or);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(201, 161, 91, 0.5);
}
.serum-image-tagline {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--or);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.serum-image-tagline::after,
.serum-image-tagline::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or));
}
.serum-image-tagline::after {
  background: linear-gradient(90deg, var(--or), transparent);
}
@media (max-width: 480px) {
  .prestation-popup-row:has(#popupPrix) {
    margin: 10px -20px;
    padding: 15px 20px;
    align-items: center;
    flex-direction: row;
  }
  .prestation-popup {
    width: 95%;
    max-width: none;
    margin: 10px;
  }
  .prestation-popup-header {
    padding: 25px 20px 15px;
  }
  .prestation-popup-title {
    font-size: 1.5rem;
  }
  .prestation-popup-content {
    padding: 20px;
  }
  .prestation-popup-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
  }
  .prestation-popup-footer {
    padding: 15px 20px 25px;
  }
  .prestation-popup-cta {
    width: 100%;
    justify-content: center;
  }
  .prestation-popup-bonus {
    margin: 0 20px;
    padding: 15px;
  }
  .bonus-badges {
    justify-content: center;
  }
  .bonus-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .serum-promo-btn {
    width: calc(100% - 40px);
    margin: 15px 20px;
    padding: 14px 16px;
  }
  .serum-promo-btn-icon {
    width: 40px;
    height: 40px;
  }
  .serum-promo-btn-title {
    font-size: 1rem;
  }
  .serum-image-container {
    width: 95%;
  }
  .serum-image-close {
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
  }
  .serum-image-title {
    font-size: 1.6rem;
  }
  .serum-image-full {
    max-height: 45vh;
  }
}
