:root {
  --ink: #332c2b;
  --muted: #776c68;
  --ivory: #f8f2ee;
  --paper: #FFFAF7;
  --clay: #8d5556;
  --rose: #d18d89;
  --blush: #ead9d6;
  --sand: #d6c29f;
  --stone: #a99c94;
  --blue: #d18d89;
  --lavender: #c7bce8;
  --sage: #748172;
  --line: rgba(51, 44, 43, 0.16);
  --shadow: 0 24px 70px rgba(63, 38, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.js body {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js body.is-page-ready {
  opacity: 1;
  transform: translateY(0);
}

.js body.is-page-leaving {
  opacity: 0.72;
  transform: translateY(-6px);
}

::selection {
  color: var(--paper);
  background: var(--clay);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: rgba(141, 85, 86, 0.96);
  box-shadow: 0 10px 30px rgba(51, 44, 43, 0.12);
  backdrop-filter: blur(12px);
  transition: padding 220ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--paper);
  background: rgba(141, 85, 86, 0.96);
  box-shadow: 0 10px 30px rgba(51, 44, 43, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition: width 220ms ease, height 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .brand-mark {
  width: 36px;
  height: 36px;
  transform: rotate(-6deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a:focus-visible,
.button:focus-visible,
.footer-social:focus-visible,
.service-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.95fr) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 56px);
  align-items: center;
  justify-items: center;
  padding: 110px clamp(20px, 7vw, 96px) 56px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--clay), #332c2b);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero::before,
.hero::after,
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.34;
}

.hero::before,
.page-hero::before {
  width: clamp(240px, 24vw, 390px);
  aspect-ratio: 524 / 716;
  right: clamp(-86px, -4vw, -28px);
  top: clamp(210px, 25vw, 360px);
  background-image: url("assets/tentacle-soft-coral-crop.png");
  opacity: 0.5;
  animation: floatTentacle 12s ease-in-out infinite;
}

.hero::after,
.page-hero::after {
  width: clamp(340px, 36vw, 580px);
  aspect-ratio: 1024 / 1536;
  left: clamp(-220px, -12vw, -96px);
  top: clamp(120px, 14vw, 220px);
  background-image: url("assets/tentacle-soft-clay.png");
  opacity: 0.22;
  animation: floatTentacleReverse 15s ease-in-out infinite;
}

.hero-side {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
  justify-items: center;
}

.hero-photo {
  width: clamp(300px, 24vw, 360px);
  aspect-ratio: 1;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: transform 500ms ease, filter 500ms ease;
}

.hero-photo:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.035);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blush);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero p {
  max-width: 620px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -80%;
  width: 70%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 460ms ease;
}

.button:hover::after {
  left: 120%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(51, 44, 43, 0.16);
}

.button-primary {
  color: var(--paper);
  background: var(--blue);
}

.button-secondary {
  color: inherit;
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.outline-blue {
  min-width: 220px;
  color: var(--clay);
  background: transparent;
  border: 2px solid var(--clay);
  border-radius: 0;
}

.outline-blue:hover {
  color: var(--paper);
  background: var(--clay);
  border-color: var(--clay);
}

.home-hero {
  position: relative;
  min-height: clamp(360px, 54vw, 680px);
  display: grid;
  place-items: center;
  padding: 130px clamp(20px, 7vw, 96px) 80px;
  color: var(--paper);
  background:
    linear-gradient(rgba(51, 44, 43, 0.34), rgba(51, 44, 43, 0.34)),
    url("assets/home-hero-brow.png") center 47% / cover no-repeat;
  text-align: center;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(255, 250, 247, 0), rgba(255, 250, 247, 0.85), rgba(255, 250, 247, 0));
  animation: scrollCue 1.8s ease-in-out infinite;
}

.home-hero-overlay {
  max-width: 840px;
  margin-inline: auto;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 10px;
  color: rgba(255, 250, 247, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 900;
  line-height: 1.45;
  text-transform: none;
}

.home-hero .eyebrow {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.home-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 250, 247, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.home-intro {
  padding-bottom: clamp(34px, 6vw, 72px);
  background: var(--ivory);
}

.home-intro .section-heading {
  max-width: 900px;
  margin-bottom: 0;
}

.home-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.home-prestations {
  padding-top: clamp(28px, 4vw, 62px);
  background: var(--ivory);
}

.service-bubbles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 64px);
  max-width: 1240px;
  margin-inline: auto;
  text-align: center;
}

.service-bubbles article {
  min-width: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
  align-content: start;
  transition: transform 220ms ease;
}

.service-bubbles article > h3,
.service-link h3 {
  margin: 0;
  color: var(--clay);
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-link {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: inherit;
  text-decoration: none;
}

.service-link:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 8px;
}

.service-bubbles ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--clay);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.service-bubbles li::before {
  content: "- ";
  color: var(--clay);
}

.service-arch {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 0.68;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-arch::after {
  content: "";
  position: absolute;
  inset: 8% -30%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 250, 247, 0.32), transparent 66%);
  opacity: 0;
  transform: translateX(-60%) skewX(-14deg);
  transition: opacity 260ms ease, transform 720ms ease;
}

.service-arch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 520ms ease;
}

.service-bubbles article:hover .service-arch {
  filter: drop-shadow(0 22px 34px rgba(51, 44, 43, 0.12));
  transform: translateY(-8px);
}

.service-bubbles article:hover .service-arch img {
  transform: scale(1.025);
}

.service-bubbles article:hover .service-arch::after {
  opacity: 1;
  transform: translateX(60%) skewX(-14deg);
}

.service-bubbles article:hover h3 {
  color: #754849;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 44px);
}

.home-expertise {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ivory);
  text-align: center;
}

.section.home-expertise {
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.expertise-statement {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 72vw, 980px);
  display: grid;
  place-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 120px);
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 54% 42%, rgba(255, 250, 247, 0.2), transparent 32%),
    linear-gradient(135deg, #875153, #684142 58%, #3d3332);
}

.expertise-statement::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: clamp(26px, 5vw, 86px);
  border: clamp(2px, 0.25vw, 4px) solid rgba(255, 250, 247, 0.9);
  pointer-events: none;
}

.expertise-statement::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: clamp(-180px, -8vw, -70px);
  bottom: clamp(-300px, -16vw, -170px);
  width: clamp(300px, 29vw, 500px);
  aspect-ratio: 1024 / 1536;
  pointer-events: none;
  background: url("assets/tentacle-soft-clay.png") center / contain no-repeat;
  opacity: 0.28;
  transform: rotate(-8deg);
  animation: floatTentacleReverse 14s ease-in-out infinite;
}

.expertise-statement-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.expertise-statement .statement-title {
  margin: 0 0 10px;
  color: rgba(255, 250, 247, 0.88);
  font-size: clamp(2.2rem, 5.7vw, 6.1rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.expertise-statement h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.8rem, 8.4vw, 9.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.expertise-statement span {
  display: block;
  width: min(520px, 62vw);
  height: 2px;
  margin: clamp(30px, 4vw, 52px) auto clamp(28px, 4vw, 48px);
  background: rgba(255, 250, 247, 0.72);
}

.expertise-statement p:last-child {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255, 250, 247, 0.88);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.55;
}

.expertise-icons-band {
  width: 100%;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 7vw, 96px);
  background: var(--ivory);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 78px);
  row-gap: clamp(34px, 5vw, 62px);
  align-items: start;
  justify-items: center;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.expertise-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  max-width: 230px;
  color: var(--clay);
}

.expertise-item:nth-child(1) {
  grid-column: 1 / span 2;
}

.expertise-item:nth-child(2) {
  grid-column: 3 / span 2;
}

.expertise-item:nth-child(3) {
  grid-column: 5 / span 2;
}

.expertise-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.expertise-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.expertise-item img {
  width: clamp(82px, 7vw, 108px);
  height: clamp(82px, 7vw, 108px);
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.expertise-item p {
  margin: 0;
  color: var(--clay);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  font-weight: 800;
  line-height: 1.18;
}

.expertise-icons-band .expertise-mobile {
  display: none;
}

.methode-expertise-band {
  padding-top: clamp(38px, 5vw, 72px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 96px);
}

.section-compact {
  padding-block: clamp(56px, 7vw, 96px);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(112px, 12vw, 132px) clamp(20px, 7vw, 96px) clamp(46px, 6vw, 72px);
  color: var(--paper);
  background: linear-gradient(135deg, var(--clay), #332c2b);
  text-align: center;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .section-kicker {
  color: var(--paper);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: 0.18em;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.section-kicker) {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 250, 247, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.page-hero-light {
  color: var(--ink);
  background: linear-gradient(180deg, var(--ivory), #ffffff);
}

.page-hero-light::before,
.page-hero-light::after {
  opacity: 0;
}

.page-hero-light .section-kicker {
  color: var(--blue);
}

.page-hero-light p:not(.section-kicker) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.intro {
  background: var(--ivory);
}

.intro-grid,
.confidence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: clamp(30px, 5vw, 58px);
  text-align: center;
}

.services {
  padding-inline: clamp(16px, 3vw, 48px);
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 16px;
  max-width: 1500px;
  margin-inline: auto;
  overflow-x: auto;
  padding-bottom: 10px;
}

.home-services {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  overflow: visible;
}

.service-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(51, 44, 43, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  border-color: rgba(141, 85, 86, 0.24);
  box-shadow: 0 22px 56px rgba(51, 44, 43, 0.12);
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--blush);
  transition: transform 520ms ease;
}

.service-card:hover img {
  transform: scale(1.025);
}

.service-card div {
  padding: 22px;
  text-align: center;
}

.service-card span,
.steps span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card p,
.steps p,
.content-grid p,
.faq p {
  color: var(--muted);
}

.method {
  background: var(--clay);
  color: var(--paper);
}

.method .section-kicker,
.method .steps span {
  color: var(--blush);
}

.method-panel {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: rgba(255, 250, 247, 0.24);
}

.steps div {
  min-height: 250px;
  display: grid;
  grid-template-rows: 24px minmax(34px, auto) 1fr;
  align-content: start;
  justify-items: center;
  padding: 28px;
  background: var(--clay);
  transition: background 220ms ease, transform 220ms ease;
}

.steps h3 {
  align-self: start;
  margin: 0;
}

.steps div:hover {
  background: #7d4b4c;
  transform: translateY(-4px);
}

.steps p {
  color: rgba(255, 250, 247, 0.78);
}

.steps strong {
  color: var(--paper);
  font-weight: 900;
}

.home-method {
  padding-block: clamp(86px, 10vw, 150px);
}

.home-method .section-heading {
  max-width: 980px;
}

.home-method .steps {
  gap: 0;
  background: transparent;
}

.home-method .steps div {
  min-height: 230px;
  display: grid;
  grid-template-rows: 24px 34px 1fr;
  align-content: start;
  padding-top: clamp(34px, 4vw, 58px);
  background: transparent;
  border-left: 1px solid rgba(255, 250, 247, 0.22);
}

.home-method .steps div:first-child {
  border-left: 0;
}

.prestations-hero {
  min-height: clamp(390px, 34vw, 500px);
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, var(--clay), #3b3030);
}

.prestations-hero h1 {
  max-width: none;
  font-size: clamp(2.8rem, 5.9vw, 5.8rem);
  line-height: 0.95;
  white-space: nowrap;
}

.prestations-hero::before {
  right: clamp(-72px, -3vw, -22px);
  bottom: clamp(-120px, -8vw, -58px);
  top: auto;
  opacity: 0.48;
}

.prestations-hero::after {
  left: clamp(-170px, -9vw, -76px);
  top: clamp(74px, 8vw, 140px);
  opacity: 0.24;
}

.prestations-subtitle {
  max-width: 1120px;
  margin: 12px auto 20px;
  color: var(--paper);
  font-size: clamp(1.75rem, 3.6vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.prestations-page {
  background: var(--paper);
}

.prestations-grid {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  max-width: 1180px;
  margin-inline: auto;
}

.prestation-feature {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: clamp(16px, 2.8vw, 28px);
  align-items: center;
  padding: clamp(22px, 4vw, 44px);
  background: #FFFAF7;
  border: 1px solid rgba(141, 85, 86, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(51, 44, 43, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.prestation-feature:hover {
  border-color: rgba(141, 85, 86, 0.3);
  box-shadow: 0 24px 64px rgba(51, 44, 43, 0.12);
  transform: translateY(-6px);
}

.prestation-feature:nth-child(even) {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
}

.prestation-feature:nth-child(even) > img:not(.prestation-detail-image) {
  order: 0;
}

.prestation-feature:nth-child(even) .prestation-detail-image {
  order: 3;
}

#yeux {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
}

#yeux > img:not(.prestation-detail-image) {
  order: 0;
}

#yeux > div:not(.detail-techniques) {
  order: 0;
}

.prestation-feature > div {
  text-align: center;
}

.prestation-intro {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
}

.prestation-feature img {
  width: min(330px, 100%);
  margin-inline: auto;
  transition: transform 420ms ease;
}

.prestation-feature > img:not(.prestation-detail-image) {
  grid-column: 1;
  grid-row: 1 / span 2;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.prestation-feature:hover img {
  transform: scale(1.025);
}

.prestation-feature .prestation-detail-image {
  grid-column: 1 / -1;
  width: 100%;
  max-height: 620px;
  margin-top: clamp(8px, 2vw, 22px);
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: multiply;
  box-shadow: none;
}

.prestation-feature:hover .prestation-detail-image {
  transform: none;
}

.mobile-techniques {
  display: none;
}

.mobile-techniques img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.prestation-feature span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prestation-feature h2 {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
  align-self: end;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.prestation-feature p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.prestation-feature .prestation-summary {
  max-width: 720px;
  color: var(--blue);
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  font-weight: 750;
  line-height: 1.65;
  text-align: center;
}

.prestation-note {
  max-width: 620px;
  margin: clamp(22px, 3vw, 34px) auto 0;
  padding-top: clamp(18px, 2.6vw, 28px);
  border-top: 1px solid rgba(141, 85, 86, 0.16);
  text-align: center;
}

.prestation-note h3 {
  margin-bottom: 18px;
  color: #5c3435;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.prestation-note p {
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}

.prestation-note p + p {
  margin-top: 18px;
}

.prestation-note strong {
  color: var(--clay);
}

.detail-techniques {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  margin-top: clamp(12px, 3vw, 28px);
}

.detail-techniques article {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.detail-techniques article > p:not(.technique-duration),
.lip-techniques article > p:not(.technique-duration) {
  flex: 0 0 auto;
}

.detail-techniques img {
  width: 100%;
  max-width: 340px;
  height: clamp(92px, 9vw, 140px);
  display: block;
  margin-inline: auto;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: brightness(1.04) saturate(1.03);
  mix-blend-mode: multiply;
}

.prestation-feature:hover .detail-techniques img {
  transform: none;
}

.detail-techniques h3 {
  margin: 0 0 clamp(14px, 2vw, 20px);
  color: #5c3435;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.detail-techniques p {
  max-width: 360px;
  margin-top: clamp(14px, 2vw, 18px);
  color: var(--ink);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.detail-techniques p + p {
  margin-top: 18px;
}

.detail-techniques .technique-duration,
.lip-techniques .technique-duration {
  position: relative;
  margin-top: auto;
  padding-top: clamp(34px, 3.6vw, 46px);
}

.detail-techniques .technique-duration::before,
.lip-techniques .technique-duration::before {
  content: "";
  position: absolute;
  top: clamp(16px, 1.8vw, 22px);
  left: 50%;
  width: min(150px, 68%);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(141, 85, 86, 0.78), transparent);
  border-radius: 999px;
  transform: translateX(-50%);
}

.detail-techniques .technique-subtitle {
  margin-top: -6px;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.4;
}

.detail-techniques strong {
  color: var(--clay);
  font-weight: 850;
}

.brow-techniques {
  gap: clamp(28px, 4.5vw, 58px);
  margin-top: clamp(18px, 3.5vw, 38px);
}

.brow-techniques article {
  min-height: clamp(610px, 50vw, 720px);
}

.brow-techniques img {
  max-width: 430px;
  height: clamp(126px, 12vw, 190px);
}

.brow-techniques h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
}

.brow-techniques p {
  max-width: 430px;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.eye-techniques {
  gap: clamp(26px, 4vw, 52px);
  margin-top: clamp(18px, 3.5vw, 36px);
}

.eye-techniques article {
  min-height: auto;
}

.eye-techniques img {
  max-width: 420px;
  height: clamp(150px, 14vw, 220px);
  object-position: center center;
}

.eye-techniques h3 {
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
}

.eye-techniques p {
  max-width: 430px;
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.72;
}

.eye-shared-duration {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: clamp(10px, 1.6vw, 18px) auto 0;
  padding-top: clamp(30px, 2.6vw, 38px);
  text-align: center;
}

.eye-shared-duration::before {
  width: min(700px, 86%);
}

.lip-techniques {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  margin-top: clamp(14px, 3vw, 30px);
}

.lip-techniques article {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  text-align: center;
  min-height: clamp(510px, 42vw, 610px);
}

.lip-techniques img {
  width: 100%;
  max-width: 460px;
  height: clamp(210px, 18vw, 280px);
  display: block;
  margin-inline: auto;
  object-fit: cover;
  object-position: center;
  align-self: end;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: brightness(1.04) saturate(1.03);
  mix-blend-mode: multiply;
}

.prestation-feature:hover .lip-techniques img {
  transform: none;
}

.lip-techniques h3 {
  align-self: start;
  margin: 0 0 clamp(14px, 2vw, 22px);
  color: #5c3435;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.lip-techniques p {
  max-width: 520px;
  margin-top: clamp(14px, 2vw, 18px);
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}

.lip-techniques p + p {
  margin-top: 16px;
}

.prestation-cta {
  background: var(--paper);
}

.prestation-cta .section-heading {
  margin-bottom: 0;
}

.prestation-cta p:not(.section-kicker) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
}

.prestation-cta .button {
  margin-top: 18px;
}

.confidence {
  background: var(--ivory);
}

.confidence-image img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.confidence-copy {
  display: grid;
  justify-items: center;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portfolio {
  background: #ffffff;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-button.is-active {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin-inline: auto;
}

.portfolio-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  border-radius: 8px;
}

.portfolio-grid figure.is-hidden {
  display: none;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--ivory);
}

.portfolio-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-plan {
  background: linear-gradient(135deg, #ead9d6, var(--ivory) 58%, #ffffff);
}

.why-gallery-section {
  background: linear-gradient(180deg, var(--ivory), #ffffff);
}

.why-gallery-section .section-heading p:not(.section-kicker) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
}

.why-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 34px);
  max-width: 1220px;
  margin-inline: auto;
}

.why-gallery article {
  grid-column: span 2;
  display: grid;
  min-height: clamp(420px, 48vw, 600px);
  place-items: center;
}

.why-gallery article:nth-child(4) {
  grid-column: 2 / span 2;
}

.why-gallery article:nth-child(5) {
  grid-column: 4 / span 2;
}

.why-gallery img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(51, 44, 43, 0.12);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.why-gallery article:hover img {
  box-shadow: 0 26px 70px rgba(51, 44, 43, 0.16);
  transform: translateY(-6px);
}

.home-info {
  background: var(--ivory);
}

.home-info .section-heading p:not(.section-kicker) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 42px);
  max-width: 1180px;
  margin-inline: auto;
}

.home-info-grid article {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 58vw, 760px);
}

.home-info-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-info-grid article:first-child img {
  transform: scale(1.07);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.content-grid article {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 250, 247, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.content-grid article:hover {
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(51, 44, 43, 0.08);
  transform: translateY(-5px);
}

.prices {
  background: var(--paper);
}

.price-list {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  background: rgba(255, 250, 247, 0.92);
  border: 1px solid rgba(141, 85, 86, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(51, 44, 43, 0.1);
}

.price-list::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: clamp(14px, 2.2vw, 28px);
  width: 6px;
  background: var(--clay);
  border-radius: 999px;
  opacity: 0.88;
}

.price-group {
  position: relative;
  padding-left: clamp(18px, 3vw, 36px);
}

.price-group + .price-group {
  margin-top: clamp(22px, 3vw, 34px);
}

.price-group h2 {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: clamp(1.45rem, 3.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.price-group div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-inline 180ms ease, background 180ms ease;
}

.price-group div:hover {
  padding-inline: 14px;
  background: rgba(141, 85, 86, 0.05);
}

.price-group span {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 850;
  text-transform: uppercase;
}

.price-group strong {
  color: var(--clay);
  white-space: nowrap;
}

.appointment-card {
  max-width: 980px;
  margin-top: 42px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 38px);
  color: var(--paper);
  background: var(--clay);
  border-radius: 8px;
  text-align: center;
}

.appointment-card h2 {
  margin-bottom: 24px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
}

.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.appointment-actions .button {
  max-width: min(100%, 340px);
  gap: 10px;
  padding-inline: 18px;
  font-size: clamp(0.66rem, 1.4vw, 0.78rem);
  letter-spacing: 0.07em;
  overflow-wrap: anywhere;
  text-transform: none;
}

.button-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.92rem;
  line-height: 1;
}

.faq {
  background: var(--ivory);
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 850;
  text-transform: uppercase;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "+";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--paper);
  background: var(--clay);
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

details[open] summary::before,
details.is-open summary::before {
  transform: rotate(45deg);
  background: var(--ink);
}

details p {
  margin: 18px 0 0;
}

.faq-answer {
  overflow: hidden;
  transition: height 280ms ease;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 7vw, 96px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(141, 85, 86, 0.96), rgba(51, 44, 43, 0.98)),
    var(--clay);
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact::before {
  width: clamp(260px, 28vw, 430px);
  aspect-ratio: 524 / 716;
  right: clamp(-110px, -5vw, -40px);
  bottom: clamp(-130px, -8vw, -70px);
  background-image: url("assets/tentacle-soft-coral-crop.png");
  opacity: 0.36;
}

.contact::after {
  width: clamp(320px, 34vw, 560px);
  aspect-ratio: 1024 / 1536;
  left: clamp(-210px, -11vw, -90px);
  top: clamp(90px, 10vw, 160px);
  background-image: url("assets/tentacle-soft-clay.png");
  opacity: 0.2;
}

.contact-page {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
}

.page-hero.tarifs-hero {
  min-height: clamp(360px, 34vw, 460px);
  display: grid;
  align-items: center;
  padding: clamp(140px, 15vw, 170px) clamp(20px, 7vw, 96px) clamp(70px, 8vw, 100px);
}

.page-hero.tarifs-hero::before {
  right: clamp(-70px, -3vw, -22px);
  bottom: clamp(-110px, -7vw, -52px);
  opacity: 0.44;
}

.page-hero.tarifs-hero::after {
  left: clamp(-160px, -8vw, -70px);
  top: clamp(70px, 8vw, 130px);
  opacity: 0.24;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.contact .section-kicker {
  color: var(--rose);
}

.contact p {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 250, 247, 0.78);
}

.contact-direct {
  background: var(--ivory);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 1080px;
  margin-inline: auto;
}

.contact-card {
  display: grid;
  min-height: 230px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 30px 22px;
  background: #ffffff;
  border: 1px solid rgba(141, 85, 86, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(51, 44, 43, 0.08);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-card:hover {
  border-color: rgba(141, 85, 86, 0.28);
  box-shadow: 0 24px 62px rgba(51, 44, 43, 0.12);
  transform: translateY(-6px);
}

.contact-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.contact-card span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 24px;
  padding: 26px clamp(20px, 7vw, 96px);
  color: var(--clay);
  background: var(--ivory);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(141, 85, 86, 0.14);
}

.site-footer.reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.site-footer > span:first-child {
  justify-self: start;
}

.site-footer > span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-admin {
  color: rgba(141, 85, 86, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-admin:hover,
.footer-admin:focus-visible {
  color: var(--clay);
  transform: translateY(-1px);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.footer-social:hover img {
  transform: translateY(-2px) scale(1.08);
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(36px) scale(0.985);
  transition:
    opacity 820ms ease,
    filter 820ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.service-bubbles article.reveal,
.expertise-item.reveal,
.contact-card.reveal,
.content-grid article.reveal {
  transform: translateY(34px) scale(0.96);
}

.service-bubbles article.reveal.is-visible,
.expertise-item.reveal.is-visible,
.contact-card.reveal.is-visible,
.content-grid article.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.prestation-feature.reveal,
.price-group.reveal {
  transform: translateY(42px);
}

.prestation-feature.reveal.is-visible,
.price-group.reveal.is-visible {
  transform: translateY(0);
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -8px);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
}

@keyframes floatTentacle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-8px, 12px, 0) rotate(2deg);
  }
}

@keyframes floatTentacleReverse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(10px, -10px, 0) rotate(-5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

    .intro-grid,
    .confidence,
    .steps,
    .why-gallery,
    .contact-card-grid,
    .content-grid,
    .home-services {
      grid-template-columns: 1fr 1fr;
    }

  .why-gallery article,
  .why-gallery article:nth-child(4),
  .why-gallery article:nth-child(5) {
    grid-column: auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-info-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .service-bubbles {
    max-width: 680px;
    gap: 28px;
  }

  .hero-content {
    order: 1;
  }

  .hero-side {
    grid-template-columns: 1fr 1fr;
    order: 2;
    max-width: 720px;
  }

  .hero-photo {
    width: 240px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 92vh;
    padding: 128px 20px 42px;
  }

  .home-hero {
    min-height: 520px;
    padding: 120px 20px 64px;
  }

  .expertise-statement {
    min-height: auto;
    padding: 92px 34px 72px;
  }

  .expertise-statement::before {
    inset: 26px;
  }

  .expertise-statement::after {
    left: -135px;
    bottom: -230px;
    width: 300px;
    opacity: 0.2;
  }

  .expertise-statement .statement-title {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.12;
  }

  .expertise-statement h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 13vw, 3.35rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .expertise-statement span {
    width: min(250px, 76vw);
    margin-block: 24px;
  }

  .expertise-statement p:last-child {
    max-width: 100%;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    line-height: 1.55;
  }

  .service-bubbles {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 34px;
  }

  .service-bubbles article {
    grid-template-columns: minmax(132px, 44%) minmax(128px, 1fr);
    column-gap: 12px;
    row-gap: 10px;
    align-items: center;
  }

  .service-bubbles article > h3,
  .service-link h3 {
    grid-column: 1 / -1;
    justify-self: center;
    font-size: clamp(2.1rem, 9.2vw, 2.75rem);
  }

  .service-link {
    display: contents;
  }

  .service-arch {
    width: 100%;
    max-width: 178px;
    padding: 0;
    justify-self: end;
  }

  .service-bubbles ul {
    justify-self: start;
    align-self: center;
    width: min(100%, 172px);
    padding: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    text-align: center;
  }

  .outline-blue {
    width: auto;
    min-width: 190px;
  }

  .page-hero {
    padding: 104px 20px 42px;
  }

  .hero-photo {
    width: 100%;
  }

  .button,
  .contact-actions .button,
  .appointment-actions .button {
    width: 100%;
  }

    .intro-grid,
    .confidence,
    .why-gallery,
    .contact-card-grid,
    .content-grid,
    .portfolio-grid,
    .home-services {
    grid-template-columns: 1fr;
  }

  .steps,
  .home-method .steps {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    gap: 0;
    overflow: hidden;
  }

  .steps div,
  .home-method .steps div {
    min-height: 260px;
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 247, 0.22);
  }

  .steps div:first-child,
  .home-method .steps div:first-child {
    border-top: 0;
  }

  .expertise-icons-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    padding-block: 34px;
  }

  .expertise-item {
    grid-column: auto !important;
    max-width: 280px;
    gap: 10px;
  }

  .expertise-item img {
    width: 112px;
    height: 112px;
  }

  .expertise-item p {
    font-size: 1rem;
    line-height: 1.25;
  }

  .why-gallery article {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .prestation-feature,
  .prestation-feature:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .prestation-feature:nth-child(even) img {
    order: 0;
  }

  .prestation-feature:nth-child(even) .prestation-detail-image {
    order: 3;
  }

  .prestation-feature img {
    width: min(280px, 100%);
  }

  .prestation-feature > img:not(.prestation-detail-image) {
    width: min(300px, 100%);
  }

  .detail-techniques {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-techniques article {
    min-height: 0;
  }

  .detail-techniques img {
    width: min(340px, 100%);
    height: auto;
  }

  .brow-techniques {
    gap: 36px;
  }

  .brow-techniques article {
    min-height: 0;
  }

  .brow-techniques img {
    width: min(360px, 100%);
  }

  .brow-techniques p {
    max-width: 360px;
    font-size: 1rem;
  }

  .eye-techniques {
    gap: 36px;
  }

  .eye-techniques article {
    min-height: 0;
  }

  .eye-techniques img {
    width: min(360px, 100%);
  }

  .eye-techniques p {
    max-width: 360px;
    font-size: 1rem;
  }

  .lip-techniques {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lip-techniques article {
    min-height: 0;
  }

  .lip-techniques img {
    width: min(320px, 100%);
    height: auto;
  }

  .detail-techniques .technique-duration,
  .lip-techniques .technique-duration {
    margin-top: 22px;
    padding-top: 30px;
  }

  .eye-techniques .eye-shared-duration {
    order: 10;
    width: 100%;
    max-width: 360px;
    margin-top: 4px;
  }

  .detail-techniques .technique-duration::before,
  .lip-techniques .technique-duration::before {
    top: 10px;
    width: min(96px, 46%);
    height: 1px;
  }

  .eye-techniques .eye-shared-duration::before {
    width: min(128px, 54%);
  }

  .lip-techniques h3 {
    margin-top: 0;
  }

  .service-card {
    min-height: auto;
  }

  .price-list {
    padding: 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .price-list::before {
    display: none;
  }

  .price-group {
    padding: 0;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(141, 85, 86, 0.18);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(51, 44, 43, 0.08);
  }

  .price-group + .price-group {
    margin-top: 18px;
  }

  .price-group h2 {
    margin: 0;
    padding: 14px 18px;
    color: var(--paper);
    background: var(--clay);
    font-size: 1.22rem;
    text-align: center;
  }

  .price-group div {
    min-height: auto;
    align-items: center;
    flex-direction: row;
    padding: 14px 16px;
    gap: 12px;
    background: rgba(255, 250, 247, 0.74);
  }

  .price-group div:hover {
    padding-inline: 16px;
  }

  .price-group span {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .price-group strong {
    font-size: 0.94rem;
    text-align: right;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer > span:first-child,
  .site-footer > span:nth-child(2),
  .footer-actions {
    justify-self: center;
  }

  .footer-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Premium polish pass - scoped overrides, no structural rewrite. */
:root {
  --premium-shadow: 0 26px 80px rgba(63, 38, 38, 0.13);
  --premium-shadow-soft: 0 16px 48px rgba(63, 38, 38, 0.09);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  border-bottom: 1px solid rgba(255, 250, 247, 0.12);
}

.site-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  opacity: 0.82;
}

.home-hero {
  min-height: clamp(520px, 68vw, 780px);
  padding-top: clamp(144px, 13vw, 190px);
  padding-bottom: clamp(90px, 10vw, 140px);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 250, 247, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(51, 44, 43, 0.28), rgba(51, 44, 43, 0.56)),
    url("assets/home-hero-brow.png") center 47% / cover no-repeat;
}

.home-hero-overlay {
  max-width: 980px;
  text-shadow: 0 2px 28px rgba(51, 44, 43, 0.32);
}

.home-hero .eyebrow {
  max-width: 1040px;
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 6.2vw, 6.15rem);
  line-height: 0.9;
}

.home-hero h1 {
  margin-bottom: 12px;
  color: rgba(255, 250, 247, 0.96);
  font-size: clamp(1.04rem, 1.7vw, 1.34rem);
}

.home-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 250, 247, 0.92);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.home-hero .hero-actions {
  margin-top: clamp(24px, 3vw, 36px);
}

.section {
  padding-top: clamp(78px, 9vw, 138px);
  padding-bottom: clamp(78px, 9vw, 138px);
}

.home-intro {
  padding-top: clamp(74px, 8vw, 118px);
}

.section-heading {
  margin-bottom: clamp(34px, 5.4vw, 68px);
}

.section-heading p {
  text-wrap: pretty;
}

h1,
h2,
.home-hero .eyebrow,
.service-link h3 {
  text-wrap: balance;
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(51, 44, 43, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, #9b6061, var(--clay));
  border-color: rgba(255, 250, 247, 0.16);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--clay), #754849);
}

.button-secondary {
  border-color: rgba(255, 250, 247, 0.72);
}

.outline-blue {
  color: var(--clay);
  border-color: var(--clay);
  border-radius: 999px;
}

.service-bubbles {
  gap: clamp(34px, 5vw, 78px);
}

.service-bubbles article {
  padding: clamp(10px, 1.5vw, 18px);
  border-radius: 18px;
  grid-template-rows: auto auto;
}

.service-link {
  gap: 12px;
  grid-template-rows: minmax(2.1em, auto) auto;
  align-items: start;
}

.service-link h3 {
  font-size: clamp(2.15rem, 3.8vw, 3.5rem);
  min-height: 2.1em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.service-arch {
  width: min(360px, 100%);
  filter: drop-shadow(0 18px 28px rgba(51, 44, 43, 0.08));
}

.service-bubbles ul {
  margin-top: 2px;
  color: #7d4b4c;
}

.expertise-statement {
  min-height: clamp(640px, 70vw, 940px);
}

.expertise-statement-inner {
  max-width: 900px;
}

.expertise-statement p:last-child {
  text-wrap: pretty;
}

.expertise-icons-band {
  padding-top: clamp(46px, 5vw, 70px);
  padding-bottom: clamp(52px, 6vw, 84px);
}

.expertise-item {
  transition: transform 220ms ease;
}

.expertise-item:hover {
  transform: translateY(-4px);
}

.home-method .steps div,
.steps div {
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home-method .steps div:hover,
.steps div:hover {
  box-shadow: inset 0 1px 0 rgba(255, 250, 247, 0.12);
}

.prestation-feature,
.service-card,
.price-list,
.contact-card,
.content-grid article {
  box-shadow: var(--premium-shadow-soft);
}

.prestation-feature {
  border-color: rgba(141, 85, 86, 0.14);
}

.prestation-feature:hover,
.contact-card:hover,
.service-card:hover {
  box-shadow: var(--premium-shadow);
}

.prestation-feature > img:not(.prestation-detail-image) {
  border-radius: 10px;
}

.page-hero {
  min-height: clamp(300px, 28vw, 430px);
  display: grid;
  place-items: center;
  padding-top: clamp(118px, 12vw, 152px);
  padding-bottom: clamp(56px, 7vw, 86px);
}

.page-hero h1 {
  margin-bottom: 0;
}

.price-list {
  border-color: rgba(141, 85, 86, 0.14);
}

.price-group div {
  border-radius: 6px;
}

.faq-list details {
  transition: background 180ms ease, padding-inline 180ms ease;
}

.faq-list details:hover {
  background: rgba(141, 85, 86, 0.04);
}

.home-hero-overlay {
  animation: heroLift 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-nav.is-open a {
  animation: navItemIn 320ms ease both;
}

.site-nav.is-open a:nth-child(1) { animation-delay: 40ms; }
.site-nav.is-open a:nth-child(2) { animation-delay: 80ms; }
.site-nav.is-open a:nth-child(3) { animation-delay: 120ms; }
.site-nav.is-open a:nth-child(4) { animation-delay: 160ms; }
.site-nav.is-open a:nth-child(5) { animation-delay: 200ms; }

.service-link h3,
.prestation-feature h2,
.section-heading h2 {
  transition: color 220ms ease, letter-spacing 220ms ease, transform 220ms ease;
}

.service-bubbles article:hover h3,
.prestation-feature:hover h2 {
  color: #754849;
}

.prestation-feature > img:not(.prestation-detail-image),
.contact-card img,
.service-card img,
.hero-photo img,
.detail-techniques img,
.lip-techniques img {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease, box-shadow 320ms ease;
}

.prestation-feature:hover > img:not(.prestation-detail-image),
.service-card:hover img,
.hero-photo:hover img {
  filter: brightness(1.04) saturate(1.03);
}

.detail-techniques article:hover img,
.lip-techniques article:hover img {
  filter: brightness(1.04) saturate(1.03);
}

.floating-contact {
  position: fixed;
  z-index: 25;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  color: var(--paper);
  background: rgba(141, 85, 86, 0.96);
  border: 1px solid rgba(255, 250, 247, 0.25);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(51, 44, 43, 0.22);
  backdrop-filter: blur(14px);
}

.floating-contact span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-contact a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-contact a:hover,
.floating-contact a:focus-visible {
  background: rgba(255, 250, 247, 0.18);
  transform: translateY(-2px);
}

.floating-contact img {
  width: 27px;
  height: 27px;
}

@keyframes heroLift {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 981px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .home-prestations {
    padding-bottom: clamp(84px, 9vw, 140px);
  }
}

@media (max-width: 980px) {
  .section {
    padding-inline: clamp(18px, 5vw, 42px);
  }

  .site-nav {
    border-radius: 14px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .home-hero {
    min-height: 610px;
    padding: 128px 20px 76px;
    background-position: center 48%;
  }

  .home-hero .eyebrow {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.94;
  }

  .home-hero h1 {
    font-size: 1rem;
  }

  .home-hero p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .home-hero .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
  }

  .home-intro .section-heading {
    text-align: center;
  }

  .service-bubbles {
    gap: 40px;
  }

  .service-bubbles article {
    padding: 0;
  }

  .service-link h3 {
    margin-bottom: 4px;
    font-size: clamp(2.25rem, 10vw, 3rem);
    min-height: auto;
  }

  .service-arch {
    max-width: 190px;
  }

  .service-bubbles ul {
    font-size: 1.02rem;
    font-weight: 800;
  }

  .page-hero {
    min-height: 300px;
    padding-top: 108px;
    padding-bottom: 46px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .page-hero-light {
    padding-inline: 18px;
    overflow: hidden;
  }

  .page-hero-light .section-kicker {
    max-width: 100%;
    margin-inline: auto;
    font-size: 0.78rem;
    line-height: 1.55;
    letter-spacing: 0.14em;
    overflow-wrap: anywhere;
  }

  .page-hero-light h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .page-hero-light p:not(.section-kicker) {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .prestations-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  .prestations-subtitle {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .prestation-feature {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .prestations-grid {
    gap: 72px;
  }

  .prestation-feature,
  .prestation-feature:nth-child(even),
  #yeux {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 30px;
  }

  .prestation-feature > .prestation-intro {
    display: contents;
  }

  .prestation-feature h2 {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    margin: 0 auto 2px;
    text-align: center;
  }

  .prestation-feature > img:not(.prestation-detail-image),
  .prestation-feature:nth-child(even) > img:not(.prestation-detail-image),
  #yeux > img:not(.prestation-detail-image) {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    margin-inline: auto;
  }

  .prestation-feature .prestation-summary {
    grid-column: 1;
    grid-row: auto;
    order: 3;
    max-width: 32ch;
    margin: 2px auto 0;
    text-align: center;
  }

  .prestation-note {
    order: 4;
  }

  .detail-techniques,
  .lip-techniques {
    order: 5;
  }

  .prestation-feature .prestation-detail-image,
  .prestation-feature:nth-child(even) .prestation-detail-image {
    order: 6;
  }

  .mobile-techniques {
    order: 7;
  }

  .prestation-feature p {
    font-size: 1rem;
  }

  .expertise-icons-band {
    padding-inline: 24px;
  }

  .price-group h2 {
    letter-spacing: 0.1em;
  }

  .floating-contact {
    display: inline-flex;
  }
}

/* Polish premium Octoderm - scoped refinements */
.prestations-page {
  padding-top: clamp(72px, 8vw, 126px);
  padding-bottom: clamp(88px, 9vw, 148px);
}

.prestations-grid {
  gap: clamp(82px, 8vw, 136px);
}

.prestation-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.8vw, 66px);
  border-color: rgba(141, 85, 86, 0.16);
  box-shadow: 0 24px 78px rgba(51, 44, 43, 0.08);
}

.prestation-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(141, 85, 86, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 42%);
  opacity: 0.78;
}

.prestation-feature > * {
  position: relative;
  z-index: 1;
}

.prestation-feature h2 {
  color: #5c3435;
  line-height: 0.96;
}

.prestation-feature .prestation-summary {
  max-width: 62ch;
  margin-inline: auto;
}

.prestation-feature > img:not(.prestation-detail-image) {
  box-shadow: 0 18px 40px rgba(51, 44, 43, 0.11);
}

.detail-techniques,
.lip-techniques {
  padding-top: clamp(10px, 2vw, 22px);
}

.detail-techniques article,
.lip-techniques article {
  padding-inline: clamp(4px, 1vw, 14px);
}

.detail-techniques h3,
.lip-techniques h3 {
  color: #603839;
}

.detail-techniques p,
.lip-techniques p {
  text-wrap: pretty;
}

.lip-techniques p,
.lip-techniques strong {
  color: var(--ink);
}

.lip-techniques .technique-duration strong {
  color: var(--clay);
}

.lip-techniques h3 {
  width: 100%;
  text-align: center;
  margin-inline: auto;
}

.prestations-page .prestation-detail-image,
.prestations-page .detail-techniques img,
.prestations-page .lip-techniques img,
.prestations-page .mobile-techniques img {
  background-color: transparent;
  mix-blend-mode: multiply;
  filter: brightness(1.035) saturate(1.02);
}

.prestations-page .prestation-feature:hover .prestation-detail-image,
.prestations-page .prestation-feature:hover .detail-techniques img,
.prestations-page .prestation-feature:hover .lip-techniques img,
.prestations-page .prestation-feature:hover .mobile-techniques img {
  filter: brightness(1.035) saturate(1.02);
}

.button,
.outline-blue {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.button:hover,
.outline-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(51, 44, 43, 0.13);
}

.button:focus-visible,
.outline-blue:focus-visible {
  outline: 3px solid rgba(141, 85, 86, 0.32);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .outline-blue,
  .prestation-feature,
  .prestation-feature img {
    transition: none;
  }
}

@media (min-width: 681px) {
  .prestation-feature {
    min-height: 520px;
  }

  .prestation-feature h2 {
    align-self: end;
  }

  .prestation-feature .prestation-summary {
    align-self: start;
  }
}

@media (max-width: 680px) {
  .prestations-page {
    padding-top: 58px;
    padding-bottom: 86px;
  }

  .prestations-grid {
    gap: 82px;
  }

  .prestation-feature {
    padding: 30px 18px 40px;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(51, 44, 43, 0.09);
  }

  .prestation-feature::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 74px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(141, 85, 86, 0.58), transparent);
    transform: translateX(-50%);
  }

  .prestation-feature h2 {
    margin-bottom: 6px;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .prestation-feature .prestation-summary {
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .prestation-feature > img:not(.prestation-detail-image) {
    width: min(320px, 100%);
  }

  .detail-techniques,
  .lip-techniques {
    gap: 42px;
    padding-top: 18px;
  }

  .detail-techniques article,
  .lip-techniques article {
    padding-bottom: 8px;
  }

  .button,
  .outline-blue {
    min-height: 52px;
  }
}
