:root {
  /* Base palette */
  --bg: #eef0f1;              /* Excellent gris clair aéré */
  --card: #ffffff;            /* Pure clean */
  --text: #0f1112;            /* Presque noir warm */
  --muted: #7a8085;           /* Gris doux */
  --accent: #d8d8d8;          /* Gris clair velvet (remplace #cfcfcf) */

  /* CTA premium */
  --cta: #0a0a0a;             /* Noir profond satiné */
  --cta-hover: #000000;
  --cta-glow: rgba(0,0,0,0.14);

  /* Radius global */
  --radius: 14px;

  /* Ombres premium */
  --shadow-soft: 0 6px 22px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 14px 40px rgba(0, 0, 0, 0.12);
  --shadow-glass: 0 30px 60px rgba(0,0,0,0.06);

  /* Navbar */
  --nav-height: 76px;

  /* Micro-interactions */
  --hover-ink: rgba(0, 0, 0, 0.08);
  --hover-lift: translateY(-2px);

  /* Special luxury addition */
  --glass: rgba(255,255,255,0.55);
  --glass-strong: rgba(255,255,255,0.72);

  /* rituels */

  --ritual-accent: rgb(97, 53, 139); /* doré chaud — change si tu veux */
  --ritual-media-bg: rgba(248,245,242,0.8);
  --ritual-gap: 22px;
}


* {
    margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 120px auto 40px;
  padding: 40px 20px;
}

/* NAV */



/* ------------------------------
   NAVBAR (desktop)
--------------------------------*/
.navbar {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);

  transition:
    padding 0.32s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.navbar.shrink {
  padding: 12px 30px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-strong);
}

.navbar.hidden {
  transform: translateY(-130%);
  transition: transform 0.35s ease;
}

/* ------------------------------
   LOGO
--------------------------------*/
.nav-logo img {
  width: 105px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
  transition: transform 0.25s ease;
}

.navbar.shrink .nav-logo img {
  transform: scale(0.92);
}

/* ------------------------------
   LINKS
--------------------------------*/
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  letter-spacing: 0.35px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* ink spread */
.nav-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hover-ink);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  opacity: 1;
  transform: scale(1);
}

/* ------------------------------
   CTA BUTTON
--------------------------------*/
.nav-cta button {
  padding: 12px 22px;
  border-radius: 40px;
  border: 0;
  background: linear-gradient(135deg,#101010,#080808);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;

  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    letter-spacing 0.25s ease;
}

.nav-cta button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.18);
  letter-spacing: 0.8px;
}

/* ------------------------------
   HAMBURGER
--------------------------------*/
.hamburger {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------
   MOBILE OVERLAY
--------------------------------*/
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 9, 0.45);
  backdrop-filter: blur(3px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ------------------------------
   MOBILE MENU
--------------------------------*/
.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 86%;
  max-width: 420px;
  background: linear-gradient(180deg, var(--card), #f2f2f2);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.22);
  z-index: 1600;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;

  transition: right 0.36s cubic-bezier(0.24, 0.9, 0.32, 1);
}


.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header img {
  width: 86px;
}

.close-mobile {
  background: none;
  border: 0;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.mobile-links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-links a {
  display: block;
  padding: 16px 10px;
  font-size: 18px;
  border-radius: 10px;
  color: var(--text);
  transition: background 0.25s ease;
}

.mobile-links a:hover {
  background: var(--accent);
}

.mobile-links .btn {
  width: 100%;
  padding: 14px 16px;
  background: var(--cta);
  color: #fff;
  border-radius: 40px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}



/* ------------------------------
    HERO — VERSION STABLE
------------------------------ */

.hero {
  width: 100%;
  margin: 40px 0 20px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  background: linear-gradient(180deg, #ffffff, #f8f8f9);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-left {
  flex: 1;
}

.salon-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}



@media (max-width: 760px) {
  .br-mobile {
    display: inline;
  }
}

.lead {
  color: var(--muted);
  font-size: clamp(15px, 3vw, 18px);
  margin-bottom: 20px;
  max-width: 55ch;
}

.cta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text);
}
.btn.ghost:hover {
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
}

/* RIGHT SIDE */
.hero-right {
  width: 420px;
  flex-shrink: 0;
}

.hero-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.hero-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.frame-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  pointer-events: none;
}

/* MOBILE */
@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    padding: 26px 20px;
    gap: 28px;
  }

  .hero-right {
    width: 100%;
  }

  .hero-frame img {
    height: 260px;
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 46px);
      line-height: 1.2;
  color: var(--text); /* UNE SEULE COULEUR */
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Ligne "marque", plus discrète mais même couleur */
.hero-brand {
  display: block;
  font-size: 0.8em;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 2000;
margin-bottom: 10px;

}

/* Ligne forte */
.hero-main {
    font-size: 0.6em;
  display: block;
  
}

/* Ligne élégante */
.hero-sub {
    font-size: 0.6em;
  display: block;
  
}

/* MOBILE (tout tient sur une vue et reste clean) */
@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(28px, 6vw, 36px);
    line-height: 1.2;
    gap: 0;
    margin-bottom: 14px;
  }

  .hero-brand {
        margin-bottom: 10px;

    font-weight: 900;
    font-size: 0.8em;
    
  }

  .hero-main {    font-weight: 800;

    font-size: 0.65em;
  
}

/* Ligne élégante */
.hero-sub {
        font-weight: 800;

    font-size: 0.65em;
  
}
}





/* Sections */
section {
  margin: 10px 0;
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin: 0 0 18px;
}



.rituels-section { margin: 56px 0; padding: 12px 20px; }
.rituels-head { max-width:1200px; margin:0 auto 12px; padding: 4px 6px; }
.section-sub { color:var(--muted); margin-top:8px; font-size:14px; max-width:70ch; }

/* grid responsive */
.rituels-grid{
  max-width:1200px;
  margin: 12px auto 0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ritual-gap);
  align-items:stretch;
  padding: 8px;
}
@media (max-width:1100px){ .rituels-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width:640px){ .rituels-grid{ grid-template-columns: 1fr; gap:14px; } }

/* card */
.rituel{
  list-style:none;
  display:flex;
  gap:16px;
  align-items:flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), var(--card));
  border-radius: var(--radius);
  padding:18px;
  border:1px solid rgba(15,17,18,0.04);
  box-shadow: var(--shadow-soft);
  transition: transform 320ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms, border-color 240ms;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  min-height:110px;
  outline: none;
}

/* small kicker */
.kicker{ display:inline-block; font-size:12px; letter-spacing:1.6px; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }

/* icon block */
.rituel-media{
  flex:0 0 64px;
  height:64px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: var(--ritual-media-bg);
  box-shadow: inset 0 -6px 18px rgba(0,0,0,0.03);
}
.rituel-icon{ width:34px; height:34px; color:var(--ritual-accent); stroke:currentColor; fill:none; }

/* body text */
.rituel-body{ flex:1; min-width:0; }
.rituel h3{ margin:0 0 6px; font-size:18px; color:var(--text); line-height:1.12; }
.rituel p{ margin:0; color:var(--muted); font-size:14px; max-width:70ch; }

/* selected / hover states */
.rituel:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); border-color: rgba(184,134,74,0.15); }
.rituel[aria-pressed="true"],
.rituel.selected {
  border: 1px solid rgba(184,134,74,0.22);
  box-shadow: 0 28px 70px rgba(12,18,20,0.08);
  transform: translateY(-10px) scale(1.01);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,250,245,1));
}

/* focus visible */
.rituel:focus{ box-shadow: 0 0 0 4px rgba(184,134,74,0.08), var(--shadow-strong); }

/* sticky action bar */
.rituel-action{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: min(960px, calc(100% - 32px));
  background: linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96));
  border-radius: 12px;
  box-shadow: var(--shadow-glass);
  padding: 12px 16px;
  border:1px solid rgba(15,17,18,0.04);
  display:none;
  z-index:1200;
  align-items:center;
}
.rituel-action[aria-hidden="false"]{ display:flex; }
.action-inner{ width:100%; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.action-label{ color:var(--muted); font-size:14px; }
.action-label strong{ color:var(--text); margin-left:6px; font-weight:700; }

/* CTAs in action bar */
.action-ctas{ display:flex; gap:10px; align-items:center; }
.btn.small{ padding:8px 12px; font-size:14px; border-radius:10px; }
.btn.primary{ background:var(--cta); color:#fff; box-shadow: var(--shadow-soft); }
.btn.ghost{ background: transparent; border:1px solid rgba(15,17,18,0.06); color:var(--text); }

/* small screens tweak */
@media (max-width:640px){
  .rituel{ padding:14px; gap:12px; min-height:96px; }
  .rituel-media{ flex:0 0 56px; height:56px; border-radius:10px; }
  .rituel-action{ bottom:12px; padding:10px; width:calc(100% - 24px); border-radius:10px; }
  .action-inner{ flex-direction:column; gap:8px; align-items:center; }
  .action-ctas{ width:100%; justify-content:center; }
}




/* Wrapper */
.ba-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* Card : meilleure taille desktop */
.ba-card {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 4 / 5; /* <<< SUPER propre, plus d’image coupée */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
    position: relative;

}

/* Images */
.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay côté "avant" */
.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;            /* <<< démarre à 0 */
  height: 100%;
  overflow: hidden;
}

/* Handle */
.ba-handle {
  position: absolute;
  left: 0;              /* <<< suit overlay */
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #fff;
  opacity: .8;
  z-index: 10;
}

/* Slider */
.ba-range {
  width: 100%;
  max-width: 700px;
}


/* Indice sous le curseur */
.ba-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 20px;
  color: #fff;
  pointer-events: none;
  opacity: 0.9;
  animation: hintPulse 1.6s ease-in-out infinite;
 z-index: 9999;
}

/* animation douce */
@keyframes hintPulse {
  0%   { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%  { opacity: .9; transform: translateX(-50%) translateY(-2px); }
  100% { opacity: .4; transform: translateX(-50%) translateY(0); }
}

.ba-hint.hidden {
  opacity: 0;
  transition: opacity .3s;
}





/* INSTAGRAM  */
#instagram {
  text-align: center;
  padding: 20px 20px;
  position: relative;
}

#instagram .section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 800;
}

/* INSTAGRAM ICON */
#instagram .insta-icon {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transform: translateY(2px);
}

/* 30K BADGE */
.followers-badge {
  background: var(--cta);
  color: #fff;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-soft);
  margin-left: 6px;
}

/* GRID DESKTOP */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.ig-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.ig-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}

/* MOBILE SCROLL */
.ig-scroll {
  display: none;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-top: 30px;
  scroll-snap-type: x mandatory;
}

.ig-scroll img {
  width: 240px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  flex: 0 0 auto;
  scroll-snap-align: center;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.ig-scroll img:active {
  transform: scale(0.97);
}

/* MOBILE / RESPONSIVE RULES */
@media (max-width: 768px) {
  .ig-grid { display: none; }
  .ig-scroll { display: flex; }
  #instagram .section-title { font-size: 26px; }
}

@media (min-width: 769px) {
  .ig-scroll { display: none; }
}






/* TESTIMONIALS CAROUSEL */

#testimonials { border-radius: 10px;
    background: white;
  text-align: center;
  color: var(--text);
}

#testimonials .section-title {
    padding-top: 15px;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  color: var(--text);
}


/* WRAPPER */
.testi-wrapper {
  overflow: hidden;
  max-width: 780px;
  margin: auto;
  position: relative;
}

.testi-track {
  display: flex;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}


/* EACH SLIDE */
.testi {
  min-width: 100%;
  padding: 25px;
  box-sizing: border-box;
}

.testi-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.45);
  text-align: left;
  transition: 0.3s ease;
}

.testi-card:hover {
  box-shadow: var(--shadow-strong);
  transform: var(--hover-lift);
}


/* HEADER */
.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  font-weight: 700;
  font-size: 19px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.testi-name {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 3px;
}

.testi-stars {
  font-size: 17px;
  color: #f5c518;
}


/* TEXT */
.testi-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}


/* DOTS */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.testi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: 0.25s;
  opacity: 0.6;
}

.testi-dot:hover {
  opacity: 1;
  transform: scale(1.15);
}

.testi-dot.active {
  background: var(--cta);
  opacity: 1;
}


/* GOOGLE BUTTON */
.google-btn {
      margin-bottom: 20px;
  margin-top: 35px;
  display: inline-block;
  padding: 14px 30px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.google-btn:hover {
  background: var(--cta-hover);
  transform: var(--hover-lift);
  box-shadow: var(--shadow-strong);
}


/* RESPONSIVE */
@media(max-width: 600px) {
  #testimonials .section-title {
    font-size: 28px;
  }

  .testi-card {
    padding: 22px;
  }

  .testi-text {
    font-size: 15px;
  }
}







/* Video */
/* EXPERIENCE SECTION */
#experience {
    border-radius: 14px;
  padding: 30px 20px;
  background: white
}

.experience-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

/* TEXTE */
.experience-text {
  max-width: 520px;
}

.experience-text .section-title {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.experience-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

/* VIDEO CARD */
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #000;
}

/* Format vertical maîtrisé */
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* TABLETTE */
@media (max-width: 1024px) {
  .experience-inner {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }

  .experience-text .section-title {
    font-size: 32px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .experience-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .experience-text {
    margin: auto;
  }

  .experience-text .section-title {
    font-size: 28px;
  }

  .video-card {
    max-width: 320px;
    margin: 30px auto 0;
  }
}


/* Atelier */

/* ATELIER */
#atelier {
  padding: 30px 20px;
}

#atelier .section-title {
  margin-bottom: 30px;
}

/* LAYOUT ASYMÉTRIQUE */
.atelier-layout {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: flex-start;
}

/* TEXTE */
.atelier-text {
  max-width: 560px;
}

.atelier-intro {
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* FONDATEUR MIS EN AVANT */
.atelier-founder {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.atelier-founder img {
  width: 96px; /* PLUS GRAND */
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.founder-name {
  font-weight: 700;
  font-size: 17px;
}

.founder-role {
  font-size: 14px;
}

/* VISUEL SECONDAIRE */
.atelier-visual {
  position: relative;
  max-width: 300px;
}

/* IMAGE */
.atelier-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* CTA MIS EN AVANT */
.atelier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  padding: 14px 0;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.atelier-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

/* CTA SOBRE */
.atelier-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* TABLETTE */
@media (max-width: 900px) {
  .atelier-layout {
    grid-template-columns: 1fr;
  }

  .atelier-visual {
    max-width: 260px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .atelier-layout {
    text-align: center;
  }

  .atelier-founder {
    justify-content: center;
  }

  .atelier-visual {
    margin: 24px auto 0;
  }
}




/* Promise */

#promesse {
  padding: 40px 20px;
  background: white;
  border-radius: 10px;
}

.promise {
  max-width: 820px;
  margin: auto;
  padding: 48px 42px;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

/* texture ultra subtile (signature premium) */
.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255,255,255,0.04) 50%,
      rgba(255,255,255,0.04) 75%,
      transparent 75%,
      transparent
    );
  background-size: 32px 32px;
  opacity: .15;
  pointer-events: none;
}

.promise-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 14px;
}

.promise h3 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0 0 14px;
  font-weight: 700;
}

.promise p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 56ch;
  margin: auto;
  opacity: .88;
}


/* ------------------------------
   DIAGNOSTIC RECOMMENDATIONS
--------------------------------*/

reco-body {
    margin:0;
    padding:28px;
    background:linear-gradient(180deg,var(--bg),#fff);
    color:#111;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    min-height:100vh;
  }

  /* Container */
  .diagnostic-wrap{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    gap:22px;
    grid-template-columns:1fr 420px;
    align-items:start;
  }

  /* Header */
  .section-head-reco{
    grid-column:1 / -1;
    display:flex;
    gap:18px;
    align-items:center;
  }
  .section-head-reco h2{margin:0;font-size:20px}
  .section-head-reco p{margin:0;color:var(--muted);font-size:14px}

  /* Left panel (questions) */
  .panel-reco{
    background:var(--card);
    border-radius:14px;
    padding:18px;
    box-shadow:var(--shadow);
  }
  .steps-reco{
    display:grid;
    gap:14px;
  }
  .step-reco {
    display:flex;
    gap:12px;
    align-items:flex-start;
    flex-direction:column;
  }
  .step .label{
    font-weight:700;
    font-size:14px;
  }

  .row-reco{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }

  .pill-reco{
    padding:10px 14px;
    border-radius:999px;
    background:#fff;
    border:1px solid #e8e8ea;
    cursor:pointer;
    user-select:none;
    transition:all .18s ease;
    font-weight:600;
    font-size:14px;
    min-width:110px;
    text-align:center;
  }
/* Pills – état normal */
.pill-reco {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8e8ea;
  cursor: pointer;
  user-select: none;
  transition: all .18s ease;
  font-weight: 600;
  font-size: 14px;
  min-width: 110px;
  text-align: center;
  color: #111;
}

/* Hover */
.pill-reco:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* Focus clavier */
.pill-reco:focus {
  outline: 3px solid var(accent);
}

.pill-reco.active {
  background: #7a8085;
  ;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(10,107,90,0.14);
}


  /* Actions */
  .actions{
    display:flex;
    gap:10px;
    margin-top:8px;
    align-items:center;
  }
  
  .btn-reco{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:12px;
    border:1px solid rgba(87, 87, 87, 0.12);
    cursor:pointer;
    background:white;
    color:#000000;
    font-weight:700;
    box-shadow:0 8px 20px rgba(10,107,90,0.09);
    transition:transform .12s ease;
  }
  .btn-reco:active{transform:translateY(1px)}
  .btn-reco.ghost{
    background:transparent;
    color:var(black );
    border:1px solid rgba(87, 87, 87, 0.12);
    font-weight:600;
  }
  .btn-reco.small{padding:8px 12px;font-size:13px;border-radius:10px;}

  /* Right panel (result) */
  .result-card{
    background:linear-gradient(180deg,var(--card),#fbfbfc);
    border-radius:14px;
    padding:18px;
    box-shadow:var(--shadow);
    position:relative;
    min-height:220px;
    display:flex;
    flex-direction:column;
    gap:12px;
    overflow:hidden;
  }

  .loader{
    display:flex;
    gap:12px;
    align-items:center;
  }
  .loader .spinner{
    width:36px;height:36px;border-radius:50%;
    border:4px solid rgba(0,0,0,0.06);
    border-top-color:var(--accent);
    animation:spin 1s linear infinite;
    flex:0 0 36px;
  }
  @keyframes spin{to{transform:rotate(360deg)}}

  .progress {
    height:8px;
    background:#eee;
    border-radius:999px;
    width:100%;
    overflow:hidden;
  }
  .progress > i{
    display:block;
    height:100%;
    width:0%;
    background:linear-gradient(90deg,var(--accent), #0a8d71);
    transition:width .12s linear;
  }

  .badge-reco{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(10,107,90,0.08);
    color:var(--accent);
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
  }
  .title-reco{margin:0;font-size:18px}
  .subtitle-reco{margin:0;color:var(--muted);font-size:14px}

  .includes-reco{margin:0;padding-left:16px}
  .includes-reco li{margin-bottom:8px;color:#222;font-weight:600}

  .meta-reco{font-size:13px;color:var(--muted);margin-top:auto;display:flex;gap:8px;align-items:center;justify-content:space-between}

  /* Animation states */
  .result-card.hidden{opacity:0;transform:translateY(10px);pointer-events:none}
  .result-card.visible{opacity:1;transform:translateY(0);transition:all .45s cubic-bezier(.2,.9,.2,1)}

  /* small screen */
  @media (max-width:980px){
    .diagnostic-wrap{grid-template-columns:1fr; padding:0 8px}
    .result-card{order:3}
  }

  /* ensure result fits viewport */
  .result-card .body{
    max-height:56vh;
    overflow:auto;
    padding-right:6px;
  }

  /* subtle microcopy */
  .muted-reco{color:var(--muted);font-size:13px}
  .tiny{font-size:12px;color:#8a8d90}




.diagnostic-wrap {
    margin-top: 40px;
  --accent: #7a8085;        /* couleur principale (vert premium) */
  --accent-600: #4c4e51;    /* variante plus foncée */
  --muted: #6b7280;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --bg: #ffffff;
}







/* Footer */
.footer-souf {
  overflow-x: hidden;
  --accent-1: var(--ritual-accent, #61458b);        /* principal (hérité si défini) */
  --accent-2: color-mix(in srgb, var(--accent-1) 65%, black 35%);
  --bg: #060607;              /* fond très sombre */
  --surface: #0b0b0c;         /* surface cartes */
  --muted: #b8b9bb;
  --text: #f5f5f6;
  padding: 36px 18px 22px;
  background: linear-gradient(180deg, var(--bg), #050505);
  color: var(--text);
  clear: both;
  z-index: 1;
  position: relative;
}

/* container */
.footer-inner {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* BRAND row (top) */
.footer-brand {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
}
.brand-title { font-weight:800; font-size:18px; color:var(--text); }
.brand-sub { color:var(--muted); font-size:14px; margin-top:6px; }

/* brand actions */
.brand-actions { display:flex; gap:16px; align-items:center; }
.btn-book{
  background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* ===== SOCIAL HIGHLIGHT ===== */
.footer-social-highlight {
  margin-top: 8px;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.social-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.social-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* buttons container */
.social-buttons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* base button */
.social-btn {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* icon */
.social-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Instagram style */
.social-btn.instagram {
  background: linear-gradient(
    135deg,
    #405DE6,
    #5851DB,
    #833AB4,
    #C13584,
    #E1306C,
    #FD1D1D
  );
}

/* TikTok style */
.social-btn.tiktok {
  background: linear-gradient(
    135deg,
    #000000,
    #111111
  );
  position: relative;
}

.social-btn.tiktok::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    120deg,
    rgba(37,244,238,0.15),
    rgba(254,44,85,0.15)
  );
  pointer-events: none;
}

/* hover interaction */
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.75);
}

/* mobile */
@media (max-width: 640px) {
  .social-buttons {
    flex-direction: column;
  }
}



/* LOCATIONS area: full width cards below brand */
.footer-locations{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* each location card */
.loc-card{
 overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  border-radius: 12px;
  padding: 18px;
  border:1px solid rgba(255,255,255,0.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height: 220px;
}

/* visual accent line on left for strong separation */
.loc-card::before{
  content:"";
  display:block;
  position:absolute;
  left:-9999px; /* nicety for positioning fallback */
}

/* separate accents: Genève / Annemasse */
.loc-geneve { position:relative; }
.loc-geneve .loc-head { display:flex; align-items:center; gap:10px; }
.loc-geneve h3{ margin:0; color:var(--text); font-size:16px; font-weight:800; }
.loc-geneve::after{
  content:"";
  position:absolute;
  left:0; top:8px; bottom:8px;
  width:4px;
  border-top-left-radius:12px;
  border-bottom-left-radius:12px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-1) 70%, black 30%), var(--accent-1));
}

/* Annemasse brand different tint so they don't "confond" */
.loc-annemasse { position:relative; }
.loc-annemasse h3{ margin:0; color:var(--text); font-size:16px; font-weight:800; }
.loc-annemasse::after{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:6px;
  border-top-left-radius:12px;
  border-bottom-left-radius:12px;
  background: linear-gradient(180deg,
 color-mix(in srgb, var(--accent-1) 70%, black 30%), var(--accent-1));
};


/* addresses and tel */
.loc-address{ color:var(--muted); font-size:14px; line-height:1.45; margin:0; }
.loc-tel a{ color:var(--text); font-weight:700; text-decoration:none; display:inline-block; margin-top:6px; }
.loc-tel a:hover{ text-decoration:underline; }

/* hours */
.loc-hours{ margin-top:6px; display:flex; flex-direction:column; gap:6px; max-height:240px; overflow:auto; padding-right:6px; }
.hours-line{ display:flex; justify-content:space-between; color:var(--muted); font-size:14px; }

/* bottom note */
.footer-note{ text-align:center; color:var(--muted); font-size:13px; margin-top:18px; }

/* ===== Responsive rules ===== */
@media (max-width: 980px) {
  .footer-inner { padding: 20px; }
  .footer-locations { grid-template-columns: 1fr; }
  .brand-actions{ flex-direction:column; gap:10px; align-items:flex-start; }
}

@media (min-width: 1200px) {
  .footer-inner { grid-template-columns: 1fr; } /* brand row + full width locations */
  .footer-brand { padding: 22px 24px; }
  .footer-locations { grid-template-columns: 1fr 1fr; }
}

/* Prevent overlap with previous section: extra safe spacing if previous has negative margins */
#footer-souf { margin-top: 10px; }






/* Floating booking button (mobile) */
.fab-book {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 1400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border: 0;
  cursor: pointer;
}

@media (min-width: 900px) {
  .fab-book {
    display: none;
  }
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .container {
    margin-top: 90px;
    padding: 20px;
  }

  .hero {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
  }

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

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .ba-card {
    height: 240px;
  }

  .ig-grid {
    display: none;
  }

  .ig-scroll {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Small helpers */
.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}



/* ===============================
   MODAL — VERSION PREMIUM V2
================================ */

.modal {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(20,20,22,0.75),
    rgba(5,6,8,0.92)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: linear-gradient(
    180deg,
    #0f1113,
    #0a0b0d
  );
  color: #ffffff;
  width: 92%;
  max-width: 860px;
  border-radius: 18px;
  padding: 26px;
  position: relative;

  box-shadow:
    0 40px 90px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  display: flex;
  flex-direction: column;
  gap: 20px;

  transform: translateY(14px) scale(.97);
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
}

.modal.open .modal-card {
  transform: translateY(0) scale(1);
}

/* Close */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: .8;
}
.modal-close:hover { opacity: 1 }

/* Header */
.modal-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
}
.modal-header .muted {
  margin-top: 4px;
  font-size: 14px;
  color: #a2a6ab;
}

/* Grid salons */
.salon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Card salon */
.salon {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.salon:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 10px 30px rgba(0,0,0,0.4);
}

.salon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.salon h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.address {
  font-size: 13px;
  font-weight: 600;
  color: #e6e6e6;
}

.salon .muted {
  font-size: 13px;
  color: #a0a4a8;
  margin-top: 2px;
}

/* Bouton */
.salon .btn {
  margin-top: 10px;
  background: #ffffff;
  color: #000;
  font-weight: 900;
  border-radius: 12px;
  padding: 11px 16px;
  border: none;
  cursor: pointer;
  transition: transform .12s ease;
}
.salon .btn:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 820px) {
  .salon-grid {
    grid-template-columns: 1fr;
  }
}
