:root{

  /* BASE */
  --black:#16181D;
  --white:#FFFFFF;

  /* GRIS */
  --gray-900:#16181D;
  --gray-700:#23252B;
  --gray-500:#666973;
  --gray-200:#E6E6E9;
  --gray-100:#F5F5F7;
  --gray-50:#FAFAFB;

  /* BACKGROUNDS */
  --bg:#FFFFFF;
  --bg-soft:#F7F4F6;
  --bg-alt:#FFFFFF;
  --bg-2:#FFFFFF;

  /* TEXT */
  --text:#23252B;
  --text-soft:#666973;

/* =========================
   ROSE SYSTEM (PLUS RICHE)
========================= */

--pink:#C792A0; /* base (boutons, accents principaux) */

--pink-50:#FAF2F5;  /* ultra clair (background très soft) */
--pink-100:#F6E3EA; /* fond hero clair */
--pink-200:#EBC8D3; /* hover soft / cards */
--pink-300:#D9A6B6; /* accents secondaires */
--pink-400:#C792A0; /* base */
--pink-500:#A86E7E; /* hover / profondeur */
--pink-600:#8E5A6A; /* bandes foncées / contrastes */
--pink-700:#6F4553; /* très foncé (hero dark zone) */

--pink-soft:var(--pink-200);
--pink-dark:var(--pink-600);
--pink-light:var(--pink-100);

/* alias */
--accent:var(--pink);
--accent-hover:var(--pink-500);
--accent-soft:var(--pink-200);
--accent-bg:var(--pink-50);

--rose-dark:var(--pink-600);

  /* RADII */
  --radius:32px;

  /* SHADOWS */
  --shadow:0 8px 25px rgba(0,0,0,.04);
  --shadow-hover:0 20px 50px rgba(0,0,0,.08);
}

* {
  box-sizing: border-box;
}

:root {
  --container: 1200px;
  --gutter: 24px;
}

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.7;
}



/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(13,13,16,.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(232,204,212,0.10);
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: nowrap;
}

.logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
}

.logotext {
  display: block;
  height: 1rem;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  margin-left: 10px;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
  min-width: 0;
  flex-shrink: 0;
  gap: 1.5rem;
}

.nav .btn {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .95rem;
}

.nav a:hover {
  color: var(--pink-light);
}


.btn{

  display:inline-block;

  background:var(--pink);

  color:white !important;

  text-decoration:none;

  padding:.7rem 1.5rem;

  border-radius:999px;

  font-weight:600;

  box-shadow:0 10px 30px rgba(217,143,164,.25);

  transition:
      transform .3s ease,
      box-shadow .3s ease,
      background .3s ease;
}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(217,143,164,.35);

    background:var(--pink-500);

}

/* =========================
   BURGER
========================= */

.burger {
  display: none;

  background: none;

  border: none;

  color: white;

  font-size: 2.2rem;

  width: 48px;
  height: 48px;

  line-height: 1;

  cursor: pointer;

  z-index: 1001;
}

/* =========================
   HERO STANDARD
   (TOUTES LES PAGES)
========================= */

.hero{
  min-height:70vh;
  display:flex;
  align-items:center;

  background:
    radial-gradient(circle at top center,
      #f8dfe6 0%,
      #fdf2f5 35%,
      #ffffff 72%,
      #f3d6de 125%
    );
    
  padding:140px 0;
  position: relative;
  overflow: hidden;
}


.hero::before{
  content:"";
  position:absolute;
  inset:-200px;
  background: radial-gradient(circle,
    rgba(199,146,160,0.25),
    transparent 60%
  );
  filter: blur(60px);
  z-index:0;
}

.hero::before{
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow{

    from{
        transform:scale(1);
        opacity:.45;
    }

    to{
        transform:scale(1.15);
        opacity:.75;
    }

}

/* TEXTE HERO - COMMUN À TOUTES LES PAGES */
.hero-english {
  color: rgba(28,28,34,0.65);
}

.hero-french {
    color:#2a2226;
}

.hero-description {
  color: rgba(28,28,34,0.75);
}
/* =========================
   HERO ACCUEIL UNIQUEMENT
========================= */

/* CONTENU */

.home-page .hero-inner {
  position: relative;
  z-index: 3;
}

.home-page .hero-content {
  max-width: 900px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* TEXTE HERO */

.home-page .hero-english,
.home-page .hero-french {
  margin: 0;

  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;

  font-size:clamp(3.5rem,7vw,6rem);

  font-weight:700;

  line-height:1.05;

  letter-spacing:-0.03em;

  max-width:900px;
}

.home-page .hero-english {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;

  letter-spacing: 0.18em;

  opacity: 0.75;

  margin-bottom: 28px;
}

.home-page .hero-french {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 28px;
}

.home-page .hero-description {
  max-width: 650px;

  margin: 0 0 32px;

  font-size: 1rem;
  line-height: 1.7;

  opacity: 0.9;
}




/* =========================
   TYPO
========================= */


h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.lead {
  max-width: 700px;
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: .95;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  opacity: .8;
}

p {
  color: var(--text-soft);
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 80px 0;
   background: transparent;
}


.section h2 {
  position: relative;

  display: block;
  width: 100%;

  text-align: center;

  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;

  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.2;

  letter-spacing: 0.12em;

  color: var(--text);
  margin: 0 0 24px;
}

.section h2::after{
    content:"";
    display:block;
    width:70px;
    height:2px;
    margin:14px auto 0;
    background:var(--pink);

    transform:scaleX(0);
    transform-origin:center;

    transition:transform .7s ease;
}

.section .eyebrow{
    display:block;
    width:100%;
    text-align:center;
    margin-bottom:12px;
}

.reveal.visible h2::after{
    transform:scaleX(1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}



.card{
  background: linear-gradient(
    145deg,
    #FFFFFF 0%,
    #FFF3F7 100%
  );

  border: 1px solid rgba(199,146,160,0.18);

  border-radius: 28px;

  padding: 40px;

  box-shadow:
    0 10px 30px rgba(199,146,160,0.08),
    0 2px 10px rgba(0,0,0,0.03);

  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              border-color .45s ease;

  position: relative;
  overflow: hidden;
}



.card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  margin-bottom: 16px;
  transition: transform .4s ease, filter .4s ease;
}


.card:hover img{
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.1);
}

.card:hover{
  transform: translateY(-10px);

  border-color: rgba(199,146,160,0.45);

  box-shadow:
    0 25px 60px rgba(199,146,160,0.18);
}

/* glow interne doux */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top left,
    rgba(199,146,160,0.15),
    transparent 60%
  );
  opacity:0;
  transition: opacity .35s ease;
}

.card:hover::before{
  opacity:1;
}



.card h2,
.card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
    color: rgba(28,28,34,.7);
}

.site-footer {
    background:
      var(--pink-100);
  color: rgba(28,28,34,.6);
  border-top: 1px solid rgba(0,0,0,.05);
  padding: 40px 0;
  text-align: center;
}

@media (max-width: 600px) {

   .card h3 {
   font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.04em;

    /* important */
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

   .card img {
    height: 260px;
    object-position: center;
  }
  .about-page .card img {
    height: auto !important;
    object-fit: contain !important;
  }
}


/* =========================
   PAGE ACCUEIL
========================= */

.narrow {
  max-width: 850px;
  margin: 0 auto;
}

/* =========================
   DEFINITION
========================= */

.definition {
 background:var(--bg);
}

.definition h2 {
  margin-bottom: 30px;
}

.definition-text {
  font-size: 1.1rem;
  line-height: 1.9;
   color: var(--text);
  margin-bottom: 24px;
}

.definition-intro {
  font-size: 1.15rem;
  line-height: 1.8;
   color: var(--text);
  margin-bottom: 40px;
  text-align: center;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.definition-block {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,204,212,0.12);
  border-radius: var(--radius);
}

.definition-block h3 {
  color: var(--rose-dark);
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.3;

  margin: 0 0 10px;
  padding-block: 0.35em;
}

.definition-block p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.definition,
.before-after {
  text-align: center;
}

@media (max-width: 900px) {
  .definition-grid {
    grid-template-columns: 1fr;
  }
}

.definition-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */
.definition-item {
  background: #FFFFFF;
  border:1px solid rgba(0,0,0,.06);

  border-radius:24px;

  background:white;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}

.definition-item:hover {
  border-color: rgba(217,143,164,.35);
  transform: translateY(-2px);
}

/* SUMMARY */
.definition-item summary {
  cursor: pointer;
  list-style: none;

  padding: 20px 24px;

  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);

  display: flex;
  justify-content: space-between;
  align-items: center;

  text-align: left;
}

/* enlever triangle natif */
.definition-item summary::-webkit-details-marker {
  display: none;
}

/* + / - */
.definition-item summary::after {
  content: "+";
  color: var(--pink);
  font-size: 1.2rem;
  transition: transform .3s ease;
}

.definition-item[open] summary::after {
  content: "–";
}

/* CONTENT */
.definition-item p {
  padding: 0 24px 24px;
  margin: 0;
  line-height: 1.7;

  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   IMMERSION - FOND ROSE PÂLE
========================= */

.immersion {
  background: white; 
}

/* =========================
   AVANT / APRÈS (SPLIT IMAGE UNIQUE)
========================= */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ITEM */
.ba-item {
  display: flex;
  flex-direction: column;
}

/* CONTAINER IMAGE */
.ba-reveal {
  position: relative;
  height: 280px;

  border-radius: var(--radius);
  overflow: hidden;

  border: 1px solid rgba(232,204,212,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  background: var(--pink-100);
  cursor: pointer;
}

.ba-horizontal {
  aspect-ratio: 1 / 1;
  height: auto;
}

/* IMAGE UNIQUE (split inside image) */
.ba-image {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  /* état par défaut = on montre AFTER (droite) */
  clip-path: inset(0 0 0 50%);

  transition: clip-path .7s cubic-bezier(.2,.8,.2,1);
}

/* =========================
   HOVER DESKTOP
========================= */

.ba-reveal:hover .ba-image {
  clip-path: inset(0 0 0 0);
}

/* =========================
   TAP MOBILE / TABLETTE
   (toggle classe JS inline)
========================= */

.ba-reveal.is-revealed .ba-image {
  clip-path: inset(0 0 0 0);
}

/* =========================
   LABELS OVERLAY AVANT / APRÈS (ROSE)
========================= */

.ba-reveal {
  position: relative;
}

/* BASE STYLE */
.ba-reveal::before,
.ba-reveal::after {
  position: absolute;

  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;

  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(199,146,160,0.18); /* rose soft */
  border: 1px solid rgba(199,146,160,0.35);
  backdrop-filter: blur(6px);

  color: var(--pink);

  z-index: 5;
}

/* =========================
   VERTICAL (GAUCHE / DROITE)
========================= */

.ba-vertical::before {
  content: "AVANT";
  left: 12px;
  bottom: 12px;
}

.ba-vertical::after {
  content: "APRÈS";
  right: 12px;
  bottom: 12px;
}

/* =========================
   HORIZONTAL (HAUT / BAS)
========================= */

.ba-horizontal::before {
  content: "AVANT";
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
}

.ba-horizontal::after {
  content: "APRÈS";
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
}
/* =========================
   TABLETTE
========================= */

@media (max-width: 900px) {

  .ba-grid {
    grid-template-columns: 1fr;
  }

  .ba-reveal {
    height: 240px;
  }

  /* désactive hover glitch sur mobile */
  .ba-reveal:hover .ba-image {
    clip-path: inset(0 0 0 50%);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .ba-reveal {
    height: 200px;
  }
}

/* =========================
   VARIANTES AVANT / APRÈS
========================= */

/* PAR DÉFAUT = vertical (déjà ton système actuel) */
.ba-vertical .ba-image {
  clip-path: inset(0 0 0 50%);
}

/* reveal vertical */
.ba-vertical.is-revealed .ba-image {
  clip-path: inset(0 0 0 0);
}


/* =========================
   MODE HORIZONTAL (NOUVEAU)
   masque le HAUT
========================= */

/* état caché = moitié basse visible */
.ba-horizontal .ba-image {
  clip-path: inset(50% 0 0 0);
}

/* reveal = image complète */
.ba-horizontal.is-revealed .ba-image {
  clip-path: inset(0 0 0 0);
}


/* =========================
   OPTION: images carrées
========================= */

.ba-horizontal {
  aspect-ratio: 1 / 1;
}

.ba-horizontal .ba-image {
  background-size: cover;
  background-position: center;
}



/* =========================
   BENEFITS (CLEAN VERSION)
========================= */

.benefits {
  background: #FFFFFF;
}

.benefits .eyebrow {
  text-align: center;
  display: block;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* TEXT GLOBAL */
.benefits p {
  color: var(--text-soft);
}

/* TITRES */
.benefits h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16181D;
}

/* =========================
   GRID GLOBAL
========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* =========================
   CARD PRINCIPALE
========================= */

.benefit-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  background: white;
  border: 1px solid rgba(0,0,0,.06);
}

/* IMAGE */
.benefit-main-image {
  position: relative;
  min-height: 420px;
}

.benefit-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FONDU BLANC GAUCHE */
.benefit-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.75) 30%,
    rgba(255,255,255,0) 70%
  );
}

/* CONTENU */
.benefit-main-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITRE MAIN */
.benefit-main-content h3 {
  font-size: 1.8rem;
  margin: 0;
}

/* BARRE ROSE (UNIFIÉE) */
.bar {
  width: 60px;
  height: 2px;
  background: var(--pink);
  margin: 14px 0 18px;
}

/* TEXTE */
.benefit-main-content p {
  line-height: 1.8;
  margin: 0 0 24px;
}

/* ICONE SIGNATURE */
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.1rem;
}

/* =========================
   FIX ICON IMG (SIDE CARDS)
========================= */

.icon-img img {
  width: 100%;
  height: 100% !important; /* override .card img */
  object-fit: cover;
  object-position: center;
  display: block;

  /* important : neutralise les effets card */
  border-radius: 50%;
}


/* =========================
   SIDE CARDS
========================= */

.benefit-side {
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start; 
  padding: 24px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,.06);
}

/* =========================
   ICON IMAGE ROUND
========================= */

.icon-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;

  flex-shrink: 0;
  margin-top: 2px;

  border: 1px solid rgba(199,146,160,.35);
  background: #fff;
  align-self: flex-start;
}

.icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENU SIDE */
.benefit-item .content h3 {
  margin: 0;
  font-size: 1rem;
}

/* BARRE SMALL */
.benefit-item .bar {
  width: 40px;
  height: 2px;
  background: var(--pink);
  margin: 10px 0 12px;
}

/* TEXTE SIDE */
.benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   HOVER (OPTIONNEL CLEAN)
========================= */

.benefit-item:hover {
  border-color: rgba(217,143,164,.35);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-main {
    grid-template-columns: 1fr;
  }

  .benefit-main-image {
    min-height: 260px;
  }

  .benefit-main-content {
    padding: 28px;
  }
}

  .icon-round{
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .icon-round img{
    width: 48px;
    height: 48px;
    object-fit: contain;
  }


/* =========================
   VALUES
========================= */

.values {
 background:var(--bg-soft);
}
.values .eyebrow {
  display: block;
  text-align: center;
  width: 100%;
}

.values h2 {
  position: relative;
}

.values h2::after {
  background: var(--pink);
  box-shadow: 0 0 20px rgba(217,143,164,0.35);
}

.values .value-main{

  background:white;

  border:1px solid rgba(0,0,0,.06);

  border-radius:32px;
}

.values .card {
  border: 1px solid rgba(217,143,164,0.12);
  transition: all .25s ease;
}

.values .card:hover {
  border-color: rgba(217,143,164,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(217,143,164,0.10);
}

.values h3 {
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



/* =========================
   CTA
========================= */

.cta-section {
  position: relative;
  overflow: hidden;

 background:var(--bg);
}

.cta-section h2 {
  margin-bottom: 20px;
  color: var(--rose-dark);
}

.cta-section .lead {
  color: var(--text-soft);
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  margin-top: 10px;
}

.cta-section .narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 350px;
  }

  .definition-text {
    font-size: 1rem;
  }

}

@media (max-width: 600px) {

  .gallery-item img {
    height: 280px;
  }

  .definition h2,
  .before-after h2,
  .benefits h2,
  .cta-section h2 {
    text-align: center;
  }

  .cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* =========================
   MEDIA QUERIES
========================= */

@media (max-width: 1024px) {

  .header-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .logos {
    justify-content: center;
    width: 100%;
  }

  .nav {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
}


@media (max-width: 1200px) {

  .logotext {
    height: 0.6rem;
  }

  .nav a {
    font-size: 0.7rem;
  }
}

/* =========================
   TABLETTE
========================= */

@media (max-width: 900px) {

   .header-inner {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }

  .logo {
    height: 40px;
    justify-content: center;
  }

  .logotext {
    height: 1rem;
  }

  .nav a {
    font-size: 0.95rem;
  }

.home-page .hero {
  padding: 100px 0 80px;
}

.home-page .hero-content {
  margin: 0 auto;

  align-items: center;
  text-align: center;
}

.home-page .hero-english,
.home-page .hero-french {
  white-space: normal;
}

  .home-page .hero-inner {
    text-align: center;
  }

  .home-page .hero-video-bg video {

    width: 100%;
    height: 100%;

    right: 0;

    opacity: 0.28;

    object-position: center;

    transform: scale(1.08);
  }

  .home-page .hero::after {

    background:
      linear-gradient(
        180deg,
        rgba(13,13,16,0.82) 0%,
        rgba(13,13,16,0.55) 35%,
        rgba(13,13,16,0.20) 60%,
        rgba(13,13,16,0) 100%
      );
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .logo {
    height: 35px;
  }

  .header-inner {
    position: relative;
    flex-direction: column;
    align-items: center;
    min-height: 60px;
  }

  .burger {
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: black;

    flex-direction: column;

    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .links {
    flex-direction: column;
  }


  .home-page .hero-video-bg video {

    opacity: 0.22;

    transform: scale(1.05);
  }
}



/* =========================
   SERVICES PAGE
========================= */

.services-gallery{
  text-align:center;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  margin-top:40px;
}

/* =========================
   CARD
========================= */

.service-card{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* IMAGE WRAPPER */

.service-image{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(232,204,212,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

/* IMAGE */

.service-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

/* HOVER OVERLAY */

.service-hover{
  position:absolute;
  inset:0;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:24px;
  text-align:center;

  background: rgba(255,255,255,0.85);
  color: var(--text);
  backdrop-filter:blur(6px);

  opacity:0;
  transform:scale(1.02);
  transition:opacity .35s ease, transform .35s ease;
}

/* LIST INSIDE OVERLAY */

.service-hover ul{
  list-style:none;
  padding:0;
  margin:0;

  color: var(--text);
  font-size:.9rem;
  line-height:1.8;
}

.service-hover li{
  margin:6px 0;
  opacity:.9;
}

.service-hover li::before{
  content:"✦";
  color:var(--pink);
  margin-right:8px;
}

/* SHOW ON HOVER */

.service-image:hover img{
  transform:scale(1.08);
  filter:brightness(.75);
}

.service-image:hover .service-hover{
  opacity:1;
  transform:scale(1);
}

/* =========================
   TEXT BELOW IMAGE
========================= */

.service-card h2{
  margin-top:20px;
  margin-bottom:10px;

  font-size:1.2rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  text-align:center;
}

.service-card h2::after{
  display:none;
}

.service-card p{
  font-size:.95rem;
  line-height:1.7;
  text-align:center;
  max-width:320px;
}

/* =========================
   HOVER CARD GLOW (LUXE EFFECT)
========================= */

.service-card:hover .service-image{
  border-color:rgba(217,143,164,.35);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card p{
    max-width:100%;
  }
}

@media (max-width: 400px) {

  .container {
    width: calc(100% - 32px);
  }

  .benefits .grid,
  .grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
}
  


/* =========================
   VIDEO
========================= */

.presentation-video{
  background: var(--bg);
   padding-bottom: 50px;
}

.presentation-video .lead{
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.video-wrapper{

  position: relative;

  margin-top: 40px;

  overflow: hidden;

  border-radius: 32px;

  border: 1px solid rgba(199,146,160,.15);

  background: #000;

  box-shadow:
    0 20px 60px rgba(0,0,0,.08),
    0 8px 25px rgba(199,146,160,.08);
    
    
}

.video-wrapper video{
  display: block;
  width: 100%;
  height: auto;
}

.immersion {
  padding-bottom: 50px;
}

.before-after {
  padding-top: 50px;
}

.services-gallery {
  padding-top: 0;
}

.ba-disclaimer {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-soft);
  opacity: 0.85;
  text-align: center;
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   ABOUT
========================= */

.about-page .about-title{
  color: var(--pink);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* =========================
   FAQ MOBILE
========================= */

@media (max-width: 600px){

  .definition-item summary{
    padding: 18px 18px;
    gap: 16px;          /* espace entre le texte et le + */
    align-items: center;
  }

  .definition-item summary::after{
    flex-shrink: 0;     /* le + ne se colle pas au texte */
    margin-left: 12px;
  }

}

/* =========================
   CONTACT FORM
========================= */

.definition-item{
    padding:22px 24px;
}

.definition-item summary{
    margin-bottom:14px;
    cursor:default;
}

.definition-item input,
.definition-item textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid rgba(199,146,160,.18);

    border-radius:16px;

    background:#fff;

    color:var(--text);

    font-family:inherit;
    font-size:1rem;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.definition-item textarea{
    resize:vertical;
    min-height:160px;
}

.definition-item input:focus,
.definition-item textarea:focus{

    outline:none;

    border-color:var(--pink);

    box-shadow:0 0 0 4px rgba(199,146,160,.15);

}

.definition-item input::placeholder,
.definition-item textarea::placeholder{
    color:rgba(0,0,0,.4);
}

/* fichier */

.definition-item input[type=file]{

    border:2px dashed rgba(199,146,160,.25);

    background:var(--pink-50);

    padding:18px;

    cursor:pointer;
}

.definition-item input[type=file]:hover{
    border-color:var(--pink);
}

/* bouton */

.definition-accordion .btn{

    margin-top:16px;

    width:100%;

    font-size:1rem;

    padding:16px;

}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you{
  min-height:70vh;
  display:flex;
  align-items:center;
  text-align:center;
}

.thank-you .container{
  width:100%;
}
