/* =========================================================
   vitæLIK — site vitrine
   Thème : verre ambré · typographie éditoriale · noir cassé + crème
   ========================================================= */

:root {
  /* Palette VitæLIK — d'après la carte de soins
     70% lin/sable · 20% vert · 10% rose + miel */

  /* Encre — vert profond (texte principal sur fonds clairs) */
  --ink:       #2f6b4f;
  --ink-70:    rgba(69, 103, 83, 0.74);
  --ink-40:    rgba(82, 122, 99, 0.46);
  --ink-15:    rgba(70, 106, 86, 0.16);

  /* Beiges / sable — lin naturel & sable doux */
  --cream:     #f5f0e6;
  --cream-2:   #efe7d8;
  --cream-3:   #e8ddcc;
  --sand:      #e8ddcc;

  /* Vert VitæLIK — accent principal (clair) & base des sections sombres */
  --green:        #2f6b4f;
  --green-rich:   #3a8062;
  --green-deep:   #244d39;
  --green-darker: #1b3b2c;

  /* Sauge — botanique / décoratif */
  --sage:      #7fa87a;
  --sage-pale: #a8c4a2;

  /* Rose VitæLIK — mots importants, appels visuels, détails féminins */
  --rose:      #eb7ea6;
  --rose-deep: #b14d70;

  /* Parme — encarts & fonds secondaires */
  --parme:     #b8a4c9;

  /* Brun — séparateurs, détails naturels secondaires */
  --brown:     #8a6a4a;

  /* --- Miel doré (touches lumineuses, badges, accent sur fonds sombres) ---
     Alias sur les anciens noms --amber* pour compatibilité du CSS existant */
  --amber:        #e8c56a;
  --amber-rich:   #d9b45a;
  --amber-pale:   #f0d68f;
  --amber-deep:   #b58a2f;
  --amber-border: rgba(232, 197, 106, .30);
  --amber-glass:  rgba(232, 197, 106, .08);

  /* Base des sections sombres = vert (alias --taupe*) */
  --taupe:        #599177;
  --taupe-2:      #5a977a;
  --taupe-3:      #61a789;

  /* Dégradé commun des fonds verts — haut plus soutenu, bas vert clair pâle */
  --g-top:        #55926f;
  --g-bot:        #a6caa0;

  /* Mousse décorative = sauge (alias --moss*) */
  --moss:         #7fa87a;
  --moss-pale:    #a8c4a2;

  --bg: var(--cream);
  --muted: rgba(37, 58, 46, .55);

  --serif:      'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --serif-soft: 'Cormorant Garamond', Georgia, serif;
  --sans:       'Mulish', system-ui, -apple-system, sans-serif;

  --container: 1220px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--amber-pale); color: var(--ink); }

/* ---------- Fond crème chaud ---------- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(1100px 700px at 85% 5%, rgba(232, 197, 106, .14) 0%, transparent 60%),
    radial-gradient(900px 600px at 5% 95%, rgba(127, 168, 122, .08) 0%, transparent 55%),
    linear-gradient(180deg, #f5f0e6 0%, #e8ddcc 100%);
  z-index: -3;
}

/* Texture grain SVG */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.30  0 0 0 0 0.15  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Pollen flottant (canvas) ---------- */
.pollen-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: .85;
}
@media (prefers-reduced-motion: reduce) { .pollen-canvas { display: none; } }

/* Feuilles de fond animées */
.leaves-bg {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.leaves-bg .leaf {
  position: absolute;
  fill: none;
  stroke: var(--moss);
  stroke-width: .8;
  opacity: .14;
}
.leaf path { stroke-linecap: round; }
.leaf-1 { width: 320px; height: 320px; top: 8%; left: -80px; transform: rotate(-25deg); animation: drift 22s ease-in-out infinite; }
.leaf-2 { width: 260px; height: 260px; top: 55%; right: -60px; transform: rotate(35deg); animation: drift 28s ease-in-out infinite reverse; }
.leaf-3 { width: 200px; height: 200px; bottom: 5%; left: 30%; transform: rotate(15deg); animation: drift 26s ease-in-out infinite 4s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)); }
  50% { transform: translate(20px, -30px) rotate(calc(var(--r, 0deg) + 8deg)); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 48px;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .3s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(31, 59, 44, .88);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid rgba(232, 197, 106, .22);
  padding: 3px 48px;
}
.brand-logo {
  height: 80px; width: auto;
  transition: height .3s var(--ease);
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.25));
}
.site-header.scrolled .brand-logo { height: 56px; }

/* On hero (dark bg) logo always white; on scroll header too */
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, .75);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--amber-rich);
  transition: right .35s var(--ease);
}
@media (hover: hover) {
  .site-nav a:hover { color: var(--cream); }
  .site-nav a:hover::after { right: 0; }
}

.nav-cta {
  border: 1px solid var(--amber-border) !important;
  color: var(--amber-pale) !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  transition: all .3s var(--ease) !important;
  background: rgba(232, 197, 106, .08) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--ink) !important;
  border-color: var(--amber) !important;
}

.nav-burger { display: none; }

/* ---------- Sections ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.section { padding: 120px 0; position: relative; }

/* Sections alternées douces */
.approche { background: transparent; }
.prestations {
  background: linear-gradient(180deg, var(--g-top) 0%, var(--g-bot) 100%);
  position: relative;
  overflow: hidden;
}
.prestations::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 800px at 80% 20%, rgba(232, 197, 106, .15) 0%, transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(127, 168, 122, .08) 0%, transparent 55%);
  pointer-events: none;
}
.tarifs { background: transparent; }
/* Fond vert continu : un seul dégradé du haut du cabinet au bas du footer */
.green-flow {
  background: linear-gradient(180deg, var(--g-top) 0%, var(--g-bot) 100%);
  position: relative;
}
.cabinet {
  background: transparent;
  overflow: hidden;
  position: relative;
}
.cabinet::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(900px 600px at 50% 0%, rgba(232, 197, 106, .10) 0%, transparent 60%);
  pointer-events: none;
}
.contact {
  background: transparent;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(1000px 620px at 50% -5%, rgba(232, 197, 106, .08) 0%, transparent 58%);
  pointer-events: none;
}

/* Couleurs des textes selon contexte */
.prestations .eyebrow,
.cabinet .eyebrow,
.contact .eyebrow { color: var(--amber-rich); }

.prestations .section-title,
.cabinet .section-title,
.contact .section-title { color: var(--cream); }

.prestations .section-title em,
.cabinet .section-title em,
.contact .section-title em { color: var(--amber-pale); }

.prestations .section-lede,
.cabinet .section-lede,
.contact .section-lede { color: rgba(245, 240, 230, .68); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 18px;
  font-weight: 600;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 24px;
}
.section-title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}
.section-title.center { text-align: center; }

.section-lede {
  max-width: 700px;
  font-size: 18px;
  color: var(--ink-70);
  margin: 0 auto 64px;
}
.section-lede.center { text-align: center; }

.lede {
  font-family: var(--serif-soft);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(37, 58, 46, .9);
  margin: 0 0 24px;
}

/* ---------- HERO — dégradé taupe chaud vers crème ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 100px;
  position: relative;
  background: linear-gradient(165deg, var(--g-top) 0%, var(--g-bot) 100%);
  overflow: hidden;
}

/* Halo mielé derrière le titre */
.hero::after {
  content: '';
  position: absolute;
  top: 5%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232, 197, 106, .26) 0%, rgba(232, 197, 106, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 11vw, 150px);
  line-height: .92;
  letter-spacing: -.04em;
  margin: 16px 0 36px;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--amber-pale);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--amber) 25%, var(--amber-rich) 70%, transparent);
  opacity: .5;
  transform-origin: left;
  animation: underline 1.6s var(--ease) .9s both;
}
@keyframes underline { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  font-family: var(--serif-soft);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  max-width: 620px;
  color: rgba(245, 240, 230, .65);
  line-height: 1.6;
  margin: 0 0 44px;
}

.hero-cta { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 600;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-rich);
  border-color: var(--amber-rich);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -18px rgba(232, 197, 106, .55);
}
.btn-ghost {
  background: transparent;
  color: rgba(245, 240, 230, .8);
  border-color: rgba(245, 240, 230, .25);
}
.btn-ghost:hover {
  background: rgba(245, 240, 230, .08);
  border-color: rgba(245, 240, 230, .5);
  color: var(--cream);
}

.tarifs-download {
  margin-top: 56px;
  text-align: center;
}

.hand-line { position: absolute; pointer-events: none; }
.hand-line path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  opacity: .45;
}
.hand-line.in-view path { animation: draw 2.2s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hand-line-hero {
  width: 380px; height: 50px;
  bottom: -10px; left: 6%;
}
.center-line {
  display: block;
  width: 220px; height: 30px;
  margin: -8px auto 56px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, .35);
}
.scroll-bar {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(232, 197, 106, .5), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: -20px; left: 0; right: 0;
  height: 20px;
  background: var(--amber-rich);
  animation: scrollDot 2.4s var(--ease) infinite;
}
@keyframes scrollDot { 0% { top: -20px; } 100% { top: 50px; } }

/* ---------- APPROCHE — section crème ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 100px;
  align-items: center;
}

.col-portrait { position: relative; }
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--cream-3);
  box-shadow: 0 40px 80px -40px rgba(22, 18, 13, .40);
}
.portrait-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22, 18, 13, .35));
  z-index: 1;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: sepia(.12) saturate(.95); }
.col-portrait:hover .portrait-frame img { transform: scale(1.04); }

.portrait-stamp {
  position: absolute;
  bottom: -36px; right: -36px;
  width: 130px; height: 130px;
  background: var(--ink);
  border: 1px solid var(--amber-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  animation: rotate 30s linear infinite;
  z-index: 2;
}
.portrait-stamp svg { width: 110px; height: 110px; }
@keyframes rotate { to { transform: rotate(360deg); } }

.portrait-caption {
  font-family: var(--serif-soft);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-40);
  margin-top: 28px;
  text-align: right;
}
/* Surlignage type feutre sur le nom de la praticienne */
.name-highlight {
  color: var(--ink);
  background: linear-gradient(transparent 58%, #d95b8a 58%);
  padding: 0 .12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.pillars {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  border-top: 1px solid var(--ink-15);
  padding-top: 32px;
}
.pillars li {
  font-size: 15px;
  color: var(--ink-70);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.pillars li span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--amber);
  letter-spacing: .1em;
}

/* ---------- PRESTATIONS / Cartes de remèdes — verre ambré ---------- */
.remedies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  align-items: start;
  gap: 24px;
  margin-top: 24px;
}

.remedy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 40px 40px;
  background:
    radial-gradient(130% 90% at 0% 0%, rgba(232, 197, 106, .20) 0%, transparent 55%),
    radial-gradient(130% 90% at 100% 100%, rgba(217, 91, 138, .16) 0%, transparent 55%),
    rgba(245, 240, 230, .95);
  border: 1px solid rgba(47, 107, 79, .18);
  border-radius: 3px;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
  cursor: default;
}
.remedy::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.75  0 0 0 0 0.55  0 0 0 0 0.15  0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: screen;
  pointer-events: none;
}
.remedy:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -20px rgba(22, 18, 13, .18);
  background:
    radial-gradient(130% 90% at 0% 0%, rgba(232, 197, 106, .30) 0%, transparent 55%),
    radial-gradient(130% 90% at 100% 100%, rgba(217, 91, 138, .24) 0%, transparent 55%),
    rgba(245, 240, 230, 1);
  border-color: rgba(47, 107, 79, .42);
}

/* Texte au-dessus, image en dessous */
.remedy-body { order: 1; }
.remedy-media {
  order: 2;
  margin-top: 26px;
  border-radius: 4px;
  overflow: hidden;
}
.remedy-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.1s var(--ease);
}
.remedy:hover .remedy-media img { transform: scale(1.05); }

.remedy-corner {
  position: absolute;
  top: 14px; left: 14px;
  width: 18px; height: 18px;
  border-top: 1px solid var(--green);
  border-left: 1px solid var(--green);
  opacity: .55;
}
.remedy-corner.br {
  top: auto; left: auto;
  bottom: 14px; right: 14px;
  border: 0;
  border-bottom: 1px solid var(--green);
  border-right: 1px solid var(--green);
  opacity: .55;
}

.remedy-no {
  display: block;
  font-family: var(--serif-soft);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.remedy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  margin: 0 0 6px;
  color: var(--green);
  letter-spacing: -.02em;
}
.remedy-sub {
  font-family: var(--serif-soft);
  font-style: italic;
  font-size: 16px;
  color: var(--green-rich);
  margin: 0 0 18px;
}
.remedy-desc {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.65;
  margin: 0 0 22px;
  /* Réserve la hauteur de la description la plus longue (4 lignes)
     pour que toutes les images démarrent à la même ligne */
  min-height: calc(1.65em * 4);
}
.remedy-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px dashed rgba(232, 197, 106, .3);
}
.remedy-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding: 7px 0;
  color: rgba(245, 240, 230, .55);
}
.remedy-list b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--amber-pale);
  letter-spacing: -.01em;
}

.remedy-leaf {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 160px; height: 160px;
  fill: none;
  stroke: var(--amber);
  stroke-width: .8;
  opacity: .12;
  transition: transform .9s var(--ease), opacity .5s var(--ease);
  pointer-events: none;
}
.remedy:hover .remedy-leaf {
  transform: rotate(-12deg) translate(-6px, -10px);
  opacity: .32;
}

/* Feuilles flottantes au hover sur les cartes remèdes */
.float-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.remedy:hover .float-leaves { opacity: 1; }

.float-leaves svg {
  position: absolute;
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--amber-pale);
  stroke-width: 1;
  opacity: 0;
  animation: floatLeaf 6s ease-in-out infinite;
}
.float-leaves svg:nth-child(1) { left: 12%; bottom: -10px; animation-delay: 0s;   --rot: -20deg; }
.float-leaves svg:nth-child(2) { left: 38%; bottom: -10px; animation-delay: 1.2s; --rot: 14deg;  width: 18px; height: 18px; }
.float-leaves svg:nth-child(3) { left: 64%; bottom: -10px; animation-delay: 2.4s; --rot: -8deg;  width: 26px; height: 26px; }
.float-leaves svg:nth-child(4) { left: 86%; bottom: -10px; animation-delay: 3.6s; --rot: 25deg; }
.float-leaves svg:nth-child(5) { left: 26%; bottom: -10px; animation-delay: 4.8s; --rot: -15deg; width: 16px; height: 16px; }

@keyframes floatLeaf {
  0%   { transform: translateY(0)     rotate(var(--rot, 0deg)); opacity: 0; }
  15%  { opacity: .7; }
  85%  { opacity: .6; }
  100% { transform: translateY(-320px) translateX(20px) rotate(calc(var(--rot, 0deg) + 80deg)); opacity: 0; }
}

/* ---------- ATELIERS ---------- */
.ateliers {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 56px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 197, 106, .20) 0%, transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(217, 91, 138, .16) 0%, transparent 55%),
    rgba(240, 233, 220, .85);
  border: 1px solid rgba(47, 107, 79, .18);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.ateliers:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -20px rgba(22, 18, 13, .18);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 197, 106, .30) 0%, transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(217, 91, 138, .24) 0%, transparent 55%),
    rgba(243, 237, 226, .95);
  border-color: rgba(47, 107, 79, .42);
}
.ateliers::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.80  0 0 0 0 0.55  0 0 0 0 0.10  0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  mix-blend-mode: screen;
}
.ateliers-text .eyebrow { color: var(--green); }
.ateliers-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  margin: 0 0 16px;
  letter-spacing: -.02em;
  color: var(--green);
}
.ateliers-text p { color: var(--ink-70); margin: 0; }

.ateliers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.ateliers-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(47, 107, 79, .18);
  font-size: 15px;
  color: var(--ink-70);
}
.ateliers-list li:last-child { border-bottom: 0; }
.ateliers-list b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--green);
}

/* ---------- ACCOMPAGNEMENT ---------- */
.accompagnement { padding-bottom: 70px; }
.tarifs { padding-top: 70px; }
.accomp-inner {
  max-width: 900px;
  text-align: center;
}
.accomp-lede {
  max-width: 760px;
  margin-bottom: 44px;
}
.accomp-lede em {
  font-style: italic;
  color: var(--amber-deep);
}
.accomp-tags {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.accomp-tags li {
  font-family: var(--serif-soft);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-70);
  padding: 10px 22px;
  background: rgba(245, 240, 230, .6);
  border: 1px solid rgba(232, 197, 106, .28);
  border-radius: 100px;
  transition: all .4s var(--ease);
}
.accomp-tags li:hover {
  color: var(--ink);
  border-color: var(--amber-border);
  background: rgba(232, 197, 106, .22);
  transform: translateY(-3px);
}

/* ---------- TARIFS — sous-titres & à la séance ---------- */
.tarifs-subtitle {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  text-align: center;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 32px;
}
.tarifs-subtitle:not(:first-of-type) { margin-top: 72px; }
.tarifs-subtitle-note {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  background: rgba(232, 197, 106, .15);
  border: 1px solid rgba(232, 197, 106, .35);
  padding: 4px 12px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ---------- TARIFS / PACKS — section crème ---------- */
.packs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pack {
  background: rgba(245, 240, 230, .75);
  border: 1px solid rgba(232, 197, 106, .18);
  backdrop-filter: blur(8px);
  border-radius: 3px;
  padding: 36px 36px;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.pack::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.pack:hover {
  background: rgba(245, 240, 230, .95);
  border-color: var(--amber-border);
  transform: translateY(-5px);
  box-shadow: 0 28px 50px -20px rgba(22, 18, 13, .18);
}
.pack:hover::after { opacity: 1; }

.pack-cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 24px;
  font-weight: 700;
}
.pack-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(22, 18, 13, .08);
}
.pack-line h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.pack-line span {
  font-size: 20px;
  color: var(--ink-70);
  font-style: italic;
  font-family: var(--serif-soft);
}
.pack-price { text-align: right; }
.pack-price b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -.025em;
}
.pack-price em {
  display: inline-block;
  font-size: 11px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  background: rgba(232, 197, 106, .15);
  border: 1px solid rgba(232, 197, 106, .35);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 8px;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- CABINET — section sombre ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  background: var(--taupe-3);
  border: 1px solid rgba(232, 197, 106, .15);
}
.gi-1 { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
  filter: sepia(.2) saturate(.8) brightness(.9);
}
.gallery-item:hover img { transform: scale(1.06); filter: sepia(.05) saturate(1.05) brightness(.95); }

.cabinet-address {
  text-align: center;
  margin-top: 56px;
  font-family: var(--serif-soft);
  font-style: italic;
  font-size: 25px;
  color: rgba(30, 58, 43, .82);
}

/* ---------- CONTACT — cartes claires colorées ---------- */
.contact-list {
  max-width: 620px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-radius: 6px;
  border: 1px solid rgba(47, 107, 79, .18);
  background:
    radial-gradient(130% 110% at 0% 0%, rgba(232, 197, 106, .24) 0%, transparent 55%),
    radial-gradient(130% 110% at 100% 100%, rgba(217, 91, 138, .20) 0%, transparent 55%),
    rgba(245, 240, 230, .95);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.contact-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(22, 18, 13, .28);
  border-color: rgba(47, 107, 79, .42);
  background:
    radial-gradient(130% 110% at 0% 0%, rgba(232, 197, 106, .34) 0%, transparent 55%),
    radial-gradient(130% 110% at 100% 100%, rgba(217, 91, 138, .30) 0%, transparent 55%),
    rgba(245, 240, 230, 1);
}

.cr-main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.cr-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
}
.cr-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--green);
  letter-spacing: -.01em;
  word-break: break-word;
  transition: color .3s var(--ease);
}
.contact-row:hover .cr-value { color: var(--green-deep); }
.cr-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--green);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.contact-row:hover .cr-arrow {
  transform: translateX(5px);
  color: var(--rose);
}

/* Liens réseaux sociaux */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px auto 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--green);
  background: rgba(245, 240, 230, .92);
  border: 1px solid rgba(47, 107, 79, .20);
  transition: transform .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  transform: translateY(-3px);
  color: var(--rose-deep);
  border-color: var(--rose);
  box-shadow: 0 16px 30px -18px rgba(22, 18, 13, .3);
}

.disclaimer {
  margin-top: 56px;
  text-align: center;
  font-size: 15px;
  color: rgba(30, 58, 43, .72);
  font-style: italic;
  font-family: var(--serif-soft);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: transparent;
  color: rgba(30, 58, 43, .80);
  padding: 80px 0 30px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 460px at 12% 0%, rgba(232, 197, 106, .30) 0%, transparent 60%),
    radial-gradient(760px 460px at 90% 20%, rgba(217, 91, 138, .22) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  position: relative;
}
.footer-logo {
  height: 44px;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.3));
}
.footer-grid h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--rose-deep);
  font-size: 16px;
  margin: 0 0 18px;
  letter-spacing: .04em;
}
.footer-grid a, .footer-grid span {
  display: block;
  padding: 4px 0;
  color: rgba(30, 58, 43, .68);
  transition: color .3s var(--ease);
}
.footer-grid a:hover { color: var(--rose); }

.footer-bottom {
  max-width: var(--container);
  margin: 60px auto 0;
  padding: 26px 32px 0;
  border-top: 1px solid rgba(47, 107, 79, .22);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(30, 58, 43, .55);
  position: relative;
}
.credit-link {
  color: rgba(30, 58, 43, .8);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(217, 91, 138, .5);
  transition: color .3s var(--ease);
}
.credit-link:hover { color: var(--rose); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  display: inline-block;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .22s; }
.delay-4 { transition-delay: .35s; }
.delay-5 { transition-delay: .5s; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 100px 0; }
  .site-header { padding: 16px 24px; }
  /* Pas de backdrop-filter sur mobile : sinon le header devient le bloc
     conteneur du menu .site-nav (position: fixed) et l'overlay ne couvre
     plus tout l'écran une fois scrollé. Fond opaque à la place. */
  .site-header.scrolled {
    padding: 10px 24px;
    background: rgba(31, 59, 44, .96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--taupe);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 150;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 22px; font-family: var(--serif); letter-spacing: 0; text-transform: none; color: var(--cream); }
  .nav-cta { font-size: 16px !important; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
  }
  .nav-burger span {
    width: 26px; height: 1.5px;
    background: var(--cream);
    transition: transform .4s var(--ease), opacity .3s var(--ease);
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 120px 24px 80px; }
  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    row-gap: 18px;
  }
  .hero-cta .btn + .btn { margin-top: 4px; }
  .two-col { grid-template-columns: 1fr; gap: 60px; }
  .remedies { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .ateliers { grid-template-columns: 1fr; padding: 40px 32px; }
  .packs { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 240px 240px 240px; }
  .gi-1 { grid-row: span 1; }
  .contact-row { padding: 20px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .pillars { grid-template-columns: 1fr; }
  .portrait-stamp { width: 100px; height: 100px; bottom: -20px; right: -20px; }
  .portrait-stamp svg { width: 84px; height: 84px; }
}

/* =========================================================
   Accents palette VitæLIK — vert (accent clair) · rose (mots
   importants / titres) · sauge (botanique) · parme (encarts)
   Le miel (--amber) reste l'accent des fonds sombres.
   ========================================================= */

/* Suramarquages (eyebrows) sur fonds clairs → vert */
.eyebrow { color: var(--green); }

/* Mots emphase des titres → rose (signature VitæLIK) */
.section-title em,
.prestations .section-title em,
.cabinet .section-title em,
.contact .section-title em { color: var(--rose); }
.hero-title em { color: var(--rose); }
.hero-title em::after {
  background: linear-gradient(90deg, transparent, var(--rose) 25%, var(--rose-deep) 70%, transparent);
}

/* Numéros des piliers → vert */
.pillars li span { color: var(--green); }

/* Cartes tarifs — sable + accents verts */
.pack-cat { color: var(--green); }
.pack::after { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.pack {
  background:
    radial-gradient(130% 90% at 0% 0%, rgba(232, 197, 106, .20) 0%, transparent 55%),
    radial-gradient(130% 90% at 100% 100%, rgba(217, 91, 138, .16) 0%, transparent 55%),
    rgba(240, 233, 220, .85);
  border-color: rgba(47, 107, 79, .18);
}
.pack:hover {
  background:
    radial-gradient(130% 90% at 0% 0%, rgba(232, 197, 106, .30) 0%, transparent 55%),
    radial-gradient(130% 90% at 100% 100%, rgba(217, 91, 138, .24) 0%, transparent 55%),
    rgba(243, 237, 226, .95);
  border-color: rgba(47, 107, 79, .42);
}

/* Mot important de l'accompagnement → rose */
.accomp-lede em { color: var(--rose); }

/* Encarts d'accompagnement → parme */
.accomp-tags li {
  background: rgba(184, 164, 201, .16);
  border-color: rgba(184, 164, 201, .5);
}
.accomp-tags li:hover {
  background: rgba(184, 164, 201, .30);
  border-color: var(--parme);
  color: var(--green-deep);
}

/* Feuillages décoratifs des cartes → sauge */
.remedy-leaf { stroke: var(--sage); }
.float-leaves svg { stroke: var(--sage-pale); }

/* Sur mobile (cartes plus étroites), la description la plus longue fait
   ~8 lignes : on réserve cette hauteur pour aligner les images */
@media (max-width: 560px) {
  .remedy-desc { min-height: calc(1.65em * 8); }
}
