/* =========================================================
   Douceur & Coton — feuille de style
   Palette « poudre de coton » : tirée du logo (pêche aquarelle,
   or doux, taupe) + sauge et lavande en contrepoint.
   ========================================================= */
:root {
  --coton: #FBF7F2;      /* fond principal, blanc cassé chaud */
  --lin: #F4EAE1;        /* fond secondaire */
  --nude: #F3DDD3;       /* rose poudré */
  --peche: #EBBBA6;      /* pêche du logo */
  --abricot: #E0A088;    /* pêche soutenue, accents */
  --sauge: #CFD8C6;      /* vert sauge pastel */
  --lavande: #E4DCEC;    /* lavande brume */
  --or: #C6A180;         /* cercle doré du logo */
  --taupe: #3F3935;      /* titres (taupe du logo, foncé pour la lecture) */
  --ink: #2F2A27;        /* texte courant — contraste ≈ 13:1 */
  --soft: #4A433E;       /* texte secondaire — ≈ 9:1 */
  --muted: #5E5650;      /* légendes, durées — ≈ 6,5:1 */
  --accent: #9E4F36;     /* terracotta : sur-titres, prix, italiques — ≈ 5,6:1 */

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .8, .22, 1);
  --shadow: 0 30px 80px -30px rgba(160, 110, 90, .35);
  --r: 28px;
  --gut: clamp(16px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--coton);
  color: var(--ink);
  font: 400 17px/1.7 var(--sans);
  font-variant-numeric: lining-nums proportional-nums; /* chiffres alignés, lisibles */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--peche); color: #fff; }

/* grain papier très léger */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 90; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typographie ---------- */
.eyebrow {
  font: 500 13px/1.4 var(--sans); letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
}
.h2 {
  font: 500 clamp(40px, 6vw, 84px)/1.02 var(--serif); letter-spacing: -.01em;
  margin: 0 0 28px; color: var(--taupe);
}
.h2 em, .big em, .horizon h2 em { font-style: italic; color: var(--accent); }
.lead { font-size: clamp(18px, 1.6vw, 21px); }
.muted { color: var(--muted); }
.small { font-size: 15px; color: var(--muted); }
.link { color: var(--accent); text-decoration: none; font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link:hover { color: var(--taupe); }

/* ---------- boutons ---------- */
.btn {
  --bg: transparent; font-weight: 500; position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font: 500 14px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  padding: 18px 30px; border-radius: 999px; cursor: pointer; border: 0; background: var(--bg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s, color .4s;
  will-change: transform;
}
.btn--solid { --bg: var(--taupe); color: var(--coton); box-shadow: 0 14px 40px -14px rgba(99, 93, 88, .6); overflow: hidden; }
.btn--solid::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--abricot), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.btn--solid { isolation: isolate; }
.btn--solid:hover::before { opacity: 1; }
.btn--solid:hover { box-shadow: 0 20px 50px -14px rgba(224, 160, 136, .8); }
.btn--ghost { color: var(--taupe); box-shadow: inset 0 0 0 1px rgba(99, 93, 88, .35); }
.btn--ghost:hover { background: #fff; }
.btn--pill { padding: 13px 24px; font-size: 12px; background: var(--taupe); color: var(--coton); }
.btn--pill:hover { background: var(--abricot); }
.btn--xl { padding: 24px 44px; font-size: 15px; }

/* ---------- intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: var(--coton);
  transition: clip-path 1.6s var(--ease), opacity 1s 1s;
  clip-path: circle(150% at 50% 50%);
}
.intro.is-done { clip-path: circle(0% at 50% 50%); opacity: 0; pointer-events: none; }
.intro__logo { width: min(420px, 70vw); grid-area: 1/1; opacity: 0; filter: blur(14px); transform: scale(.94); animation: introLogo 1.8s .2s var(--ease) forwards; }
.intro__breath { grid-area: 1/1; width: min(520px, 90vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(235, 187, 166, .45), rgba(235, 187, 166, 0) 65%); animation: introBreath 3s ease-in-out infinite; }
.intro__whisper { position: absolute; bottom: 12vh; margin: 0; font: italic 500 22px var(--serif); color: var(--muted); letter-spacing: .1em; opacity: 0; animation: fadeIn 1.2s .9s forwards; }
@keyframes introLogo { to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes introBreath { 50% { transform: scale(1.12); opacity: .7; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- couches d'ambiance ---------- */
.fluff { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 60; pointer-events: none; }
.halo {
  position: fixed; left: 0; top: 0; width: 420px; height: 420px; margin: -210px 0 0 -210px; z-index: 1; pointer-events: none;
  border-radius: 50%; background: radial-gradient(circle, rgba(235, 187, 166, .32), rgba(235, 187, 166, 0) 65%);
  transform: translate3d(-999px, -999px, 0); mix-blend-mode: multiply;
}
.thread { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 110; pointer-events: none; }
.thread span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--peche), var(--or)); }

/* ---------- navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; gap: 32px;
  padding: 14px var(--gut); transition: background .6s, box-shadow .6s, padding .6s, transform .6s var(--ease);
}
.nav.is-solid { background: rgba(251, 247, 242, .72); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3); box-shadow: 0 1px 0 rgba(99, 93, 88, .08); padding-top: 8px; padding-bottom: 8px; }
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo img { width: 128px; transition: width .6s var(--ease); }
.nav.is-solid .nav__logo img { width: 104px; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { position: relative; text-decoration: none; font-weight: 500; font-size: 15px; letter-spacing: .06em; color: var(--taupe); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--abricot); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__burger { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .7); cursor: pointer; position: relative; }
.nav__burger span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: var(--taupe); transition: transform .5s var(--ease); }
.nav__burger span:first-child { top: 19px; } .nav__burger span:last-child { top: 26px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 99; background: radial-gradient(circle at 70% 20%, var(--nude), var(--coton) 60%);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 36px; padding: 90px 24px 40px;
  clip-path: circle(0 at calc(100% - 40px) 40px); transition: clip-path .9s var(--ease);
}
.menu.is-open { clip-path: circle(150% at calc(100% - 40px) 40px); }
.menu nav { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.menu nav a { font: 500 38px/1.2 var(--serif); text-decoration: none; color: var(--taupe); }
.menu__tel { color: var(--muted); text-decoration: none; letter-spacing: .1em; }

/* =========================================================
   1. HERO
   ========================================================= */
.hero { position: relative; height: 420vh; }
.hero__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.hero__sky {
  position: absolute; inset: -10%;
  background:
    radial-gradient(60% 50% at calc(30% + var(--hx, 0) * 1%) 30%, rgba(228, 220, 236, .9), transparent 70%),
    radial-gradient(55% 55% at 75% 70%, rgba(235, 187, 166, .75), transparent 70%),
    radial-gradient(40% 40% at 20% 85%, rgba(207, 216, 198, .7), transparent 70%),
    linear-gradient(180deg, #FBF3EE, #F6E6DD);
  animation: skyDrift 18s ease-in-out infinite alternate;
}
@keyframes skyDrift { to { transform: translate3d(2%, -2%, 0) scale(1.05); } }
.hero__clouds { position: absolute; inset: 0; perspective: 1000px; }
.hero__clouds img {
  position: absolute; left: 50%; top: 50%; width: min(46vw, 620px); max-width: none;
  transform: translate3d(-50%, -50%, 0); will-change: transform, opacity;
  filter: brightness(1.14) sepia(.12) saturate(1.1) drop-shadow(0 30px 40px rgba(200, 150, 130, .18));
}
.hero__clouds img:nth-child(n+6) { filter: brightness(1.18) sepia(.15) blur(3px); }
.hero__boll {
  position: absolute; left: 50%; top: 40%; width: min(48vh, 72vw); aspect-ratio: 1347/1400;
  transform: translate3d(-50%, -50%, 0); will-change: transform, opacity; perspective: 900px;
}

.hero__boll img { width: 100%; animation: floaty 7s ease-in-out infinite; filter: brightness(1.08) sepia(.06) drop-shadow(0 50px 60px rgba(190, 130, 105, .28)); }
@keyframes floaty { 50% { transform: translateY(-14px) rotate(1.5deg); } }

.hero__copy { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; pointer-events: none; text-align: center; padding: 0 var(--gut); }
.hero__frame { grid-area: 1/1; opacity: 0; will-change: opacity, transform, filter; }
.hero__frame--0 { align-self: end; margin-bottom: 16vh; }
.hero__frame--0 .eyebrow { text-shadow: 0 0 14px #FBF3EE, 0 0 4px #FBF3EE, 0 0 2px #FBF3EE; }
.hero__title { margin: 0; font-weight: 500; line-height: .9; color: var(--taupe); text-shadow: 0 0 40px rgba(251, 243, 238, .95), 0 0 12px rgba(251, 243, 238, .8); }
.hero__title .script { font: italic 500 clamp(64px, 11vw, 168px)/.9 var(--serif); letter-spacing: -.02em; }
.hero__title .amp { font: italic 500 clamp(40px, 6vw, 90px) var(--serif); color: var(--accent); margin: 0 .1em; }
.hero__sub { text-shadow: 0 0 18px #FBF3EE, 0 0 6px #FBF3EE, 0 0 2px #FBF3EE; margin: 18px 0 0; font-size: clamp(16px, 1.5vw, 20px); font-weight: 500; color: var(--ink); letter-spacing: .04em; }
.big { margin: 0; font: 500 clamp(48px, 9vw, 150px)/.95 var(--serif); color: var(--taupe); letter-spacing: -.02em; text-shadow: 0 0 60px rgba(251, 247, 242, .95), 0 0 20px rgba(251, 247, 242, .9); }
.hero__scroll { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 12px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--muted), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; left: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--abricot); animation: drip 2.2s var(--ease) infinite; }
@keyframes drip { from { top: -6px; } to { top: 100%; } }
.hero__veil { position: absolute; inset: 0; z-index: 4; background: var(--coton); opacity: 0; pointer-events: none; }

/* =========================================================
   2. RESPIRATION
   ========================================================= */
.breath {
  position: relative; display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: clamp(40px, 7vw, 120px);
  padding: clamp(80px, 14vh, 160px) var(--gut); max-width: 1400px; margin: 0 auto;
}
.breath__orb { position: relative; aspect-ratio: 1; width: min(100%, 520px); justify-self: center; display: grid; place-items: center; }
.breath__ring, .breath__core { grid-area: 1/1; border-radius: 50%; }
.breath__ring { width: 100%; height: 100%; border: 1px solid rgba(198, 161, 128, .45); animation: breathe 10s ease-in-out infinite; }
.breath__ring--2 { width: 80%; height: 80%; border-color: rgba(235, 187, 166, .6); animation-delay: -.4s; }
.breath__core {
  width: 62%; height: 62%; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, #fff, var(--nude) 55%, var(--peche));
  box-shadow: 0 40px 90px -20px rgba(224, 160, 136, .55), inset 0 -20px 50px rgba(224, 160, 136, .35);
  animation: breathe 10s ease-in-out infinite;
}
.breath__core span { grid-area: 1/1; font: italic 500 clamp(26px, 3vw, 40px) var(--serif); color: var(--taupe); }
.breath__in { animation: word 10s ease-in-out infinite; }
.breath__out { animation: word 10s -5s ease-in-out infinite; opacity: 0; }
@keyframes breathe { 0%, 100% { transform: scale(.82); } 50% { transform: scale(1); } }
@keyframes word { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; } }
.quote { margin: 36px 0 0; padding: 28px 32px; border-radius: var(--r); background: linear-gradient(135deg, #fff, var(--lin)); font: italic 500 clamp(21px, 2vw, 27px)/1.4 var(--serif); color: var(--taupe); box-shadow: var(--shadow); }
.quote cite { display: block; margin-top: 14px; font: 500 12.5px var(--sans); letter-spacing: .25em; text-transform: uppercase; color: var(--accent); font-style: normal; }

/* =========================================================
   3. INSTITUT
   ========================================================= */
.institut {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 100px); align-items: center;
  padding: clamp(60px, 10vh, 120px) var(--gut) clamp(100px, 16vh, 180px); max-width: 1400px; margin: 0 auto;
}
.features { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 18px; }
.features li { display: grid; gap: 2px; padding-left: 28px; position: relative; }
.features li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff, var(--peche)); box-shadow: 0 0 0 5px rgba(235, 187, 166, .2); }
.features b { font-weight: 500; color: var(--taupe); }
.features span { color: var(--soft); font-size: 16px; }
.institut__gallery { position: relative; height: clamp(520px, 72vh, 760px); }
.blob { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); will-change: transform; }
.blob img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.4s var(--ease); }
.blob:hover img { transform: scale(1.02); }
.blob--a { left: 0; top: 4%; width: 62%; height: 58%; border-radius: 58% 42% 52% 48% / 46% 54% 46% 54%; animation: morph 16s ease-in-out infinite; }
.blob--b { right: 0; top: 0; width: 44%; height: 44%; border-radius: 50% 50% 44% 56% / 58% 46% 54% 42%; animation: morph 19s -4s ease-in-out infinite reverse; }
.blob--b img { object-position: 60% 30%; }
.blob--c { right: 6%; bottom: 0; width: 60%; height: 46%; border-radius: 44% 56% 60% 40% / 50% 42% 58% 50%; animation: morph 22s -8s ease-in-out infinite; }
.institut__puff { position: absolute; left: -6%; bottom: 4%; width: 34%; opacity: .95; pointer-events: none; }
@keyframes morph {
  0%, 100% { border-radius: 58% 42% 52% 48% / 46% 54% 46% 54%; }
  33% { border-radius: 44% 56% 40% 60% / 56% 44% 58% 42%; }
  66% { border-radius: 52% 48% 60% 40% / 42% 60% 40% 58%; }
}

/* =========================================================
   4. RITUELS (horizontal)
   ========================================================= */
.rituels { position: relative; height: 500vh; }
.rituels__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 4vh; }
.rituels__bg { position: absolute; inset: 0; z-index: -1; }
.rituels__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); will-change: transform; }
.rituels__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(251, 247, 242, .95), rgba(251, 247, 242, .6) 40%, rgba(251, 247, 242, .85)); }
.rituels__head { padding: 0 var(--gut); }
.rituels__head .h2 { margin: 0; font-size: clamp(38px, 5vw, 72px); }
.rituels__track { display: flex; gap: 26px; padding: 0 var(--gut); will-change: transform; width: max-content; }
.card {
  position: relative; flex: 0 0 auto; width: clamp(270px, 26vw, 360px); min-height: clamp(360px, 48vh, 440px);
  padding: 34px 30px 28px; border-radius: 34px; display: flex; flex-direction: column;
  background: rgba(255, 255, 255, .84); backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .8); box-shadow: var(--shadow);
  transform-style: preserve-3d; transition: transform .6s var(--ease), box-shadow .6s var(--ease), background .6s;
}
.card:hover { background: rgba(255, 255, 255, .95); box-shadow: 0 40px 90px -30px rgba(224, 160, 136, .55); }
.card--peach { background: linear-gradient(160deg, rgba(248, 230, 222, .95), rgba(240, 205, 188, .92)); }
.card__num { font: 500 42px/1 var(--sans); letter-spacing: -.02em; color: #B06A4E; }
.card h3 { font: 600 31px/1.05 var(--serif); margin: 18px 0 14px; color: var(--taupe); }
.card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--soft); }
.card footer { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(99, 93, 88, .12); font-size: 14px; font-weight: 500; color: var(--muted); }
.card footer strong { font: 500 19px var(--sans); font-variant-numeric: lining-nums tabular-nums; color: var(--accent); }
.card--cta { justify-content: center; align-items: flex-start; gap: 20px; text-decoration: none; background: var(--taupe); color: var(--coton); border-color: transparent; }
.card--cta span { font: italic 500 42px/1.05 var(--serif); }
.card--cta i { font-style: normal; font-size: 34px; transition: transform .6s var(--ease); }
.card--cta:hover { background: var(--abricot); }
.card--cta:hover i { transform: translateX(12px); }
.rituels__progress { margin: 0 var(--gut); height: 2px; background: rgba(99, 93, 88, .12); border-radius: 2px; max-width: 420px; }
.rituels__progress span { display: block; height: 100%; background: var(--abricot); transform-origin: 0 50%; transform: scaleX(0); }

/* =========================================================
   5. SIGNATURE
   ========================================================= */
.signature { position: relative; height: 260vh; background: linear-gradient(180deg, var(--coton), var(--lin)); }
.signature__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.signature__media { position: absolute; inset: 0; clip-path: circle(14% at 30% 50%); will-change: clip-path; background: var(--lin); }
@media (min-width: 981px) { .signature__media img { width: 48%; transform-origin: 0 50%; } }
.signature__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transform: scale(1.3); will-change: transform; }
.signature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 36%, rgba(244, 234, 225, 1) 50%); opacity: var(--shade, 0); }
.signature__copy { grid-column: 2; position: relative; padding: 0 var(--gut) 0 0; max-width: 560px; opacity: 0; transform: translateY(40px); will-change: opacity, transform; }
.steps { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; counter-reset: s; }
.steps li { display: flex; gap: 18px; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid rgba(99, 93, 88, .12); }
.steps span { flex: 0 0 72px; font: 500 16px var(--sans); font-variant-numeric: lining-nums tabular-nums; color: var(--accent); }
.signature__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; }
.signature__price strong { font: 500 52px/1 var(--sans); letter-spacing: -.02em; font-variant-numeric: lining-nums tabular-nums; color: var(--taupe); }
.signature__price span { color: var(--muted); letter-spacing: .1em; }

/* =========================================================
   6. MARQUES
   ========================================================= */
.brands { padding: 34px 0; background: var(--lin); overflow: hidden; border-block: 1px solid rgba(198, 161, 128, .25); }
.marquee { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__row { display: flex; align-items: center; gap: 46px; padding-right: 46px; }
.marquee span { font: italic 500 clamp(34px, 4vw, 56px)/1 var(--serif); color: var(--taupe); white-space: nowrap; }
.marquee i { width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff, var(--peche)); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   7. CARTE
   ========================================================= */
.carte { padding: clamp(90px, 14vh, 160px) var(--gut); max-width: 1180px; margin: 0 auto; }
.carte__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.carte__head p:last-child { color: var(--muted); }
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.tabs button {
  font: 500 14.5px var(--sans); letter-spacing: .08em; color: var(--taupe); cursor: pointer;
  padding: 13px 22px; border-radius: 999px; border: 1px solid rgba(99, 93, 88, .2); background: transparent;
  transition: background .5s var(--ease), color .5s, border-color .5s, transform .5s var(--ease);
}
.tabs button:hover { transform: translateY(-2px); border-color: var(--abricot); }
.tabs button[aria-selected="true"] { background: var(--taupe); color: var(--coton); border-color: var(--taupe); }
.panel { animation: panelIn .8s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(24px); filter: blur(6px); } }
.panel__title { font: 600 clamp(28px, 3vw, 38px) var(--serif); color: var(--taupe); margin: 44px 0 10px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; }
.panel__title:first-child { margin-top: 0; }
.panel__title small { font: 500 12.5px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: grid; grid-template-columns: 1fr auto auto; gap: 8px 26px; align-items: baseline;
  padding: 20px 18px; margin: 0 -18px; border-radius: 18px; border-bottom: 1px solid rgba(99, 93, 88, .1);
  transition: background .5s var(--ease), transform .5s var(--ease);
}
.menu-list li:hover { background: #fff; transform: translateX(6px); box-shadow: var(--shadow); }
.menu-list b { display: block; font: 600 22px/1.25 var(--serif); color: var(--taupe); }
.menu-list span { display: block; font-size: 15px; color: var(--soft); margin-top: 3px; }
.menu-list em { font-style: normal; font-size: 14px; font-weight: 500; letter-spacing: .04em; color: var(--muted); white-space: nowrap; }
.menu-list strong { font: 500 19px var(--sans); font-variant-numeric: lining-nums tabular-nums; color: var(--accent); white-space: nowrap; }
.menu-list li.opt b { font-style: italic; }
.panel__more { color: var(--muted); font-size: 15px; margin-top: 18px; }
.carte__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 56px; }

/* =========================================================
   8. AVIS
   ========================================================= */
.avis {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 120px); align-items: center;
  padding: clamp(90px, 14vh, 150px) var(--gut); max-width: 1300px; margin: 0 auto;
  background: radial-gradient(60% 80% at 20% 50%, rgba(243, 221, 211, .7), transparent 70%);
}
.avis__big { margin: 0; font: 500 clamp(96px, 13vw, 180px)/.95 var(--sans); color: var(--taupe); letter-spacing: -.05em; font-variant-numeric: lining-nums tabular-nums; }
.avis__big small { font-size: .3em; color: var(--muted); margin-left: .1em; }
.stars { display: flex; gap: 8px; margin: 14px 0 18px; }
.stars i { width: 26px; height: 26px; background: var(--or); clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); transform: scale(0); transition: transform .8s var(--ease); }
.avis.is-in .stars i { transform: scale(1); }
.avis.is-in .stars i:nth-child(2) { transition-delay: .1s; } .avis.is-in .stars i:nth-child(3) { transition-delay: .2s; }
.avis.is-in .stars i:nth-child(4) { transition-delay: .3s; } .avis.is-in .stars i:nth-child(5) { transition-delay: .4s; }
.avis__bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.avis__bars li { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.avis__bars span { font: 600 22px var(--serif); color: var(--taupe); }
.avis__bars b { font: 500 18px var(--sans); font-variant-numeric: lining-nums tabular-nums; color: var(--accent); }
.avis__bars i { grid-column: 1 / -1; order: 3; height: 6px; border-radius: 6px; background: rgba(99, 93, 88, .1); position: relative; overflow: hidden; }
.avis__bars i::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, var(--nude), var(--abricot)); transform-origin: 0 50%; transform: scaleX(0); transition: transform 1.8s .3s var(--ease); }
.avis__bars li.is-in i::after { transform: scaleX(var(--v)); }

/* =========================================================
   9. CADEAU
   ========================================================= */
.cadeau { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; padding: clamp(80px, 12vh, 140px) var(--gut); max-width: 1300px; margin: 0 auto; }
.giftcard {
  position: relative; aspect-ratio: 1.6; width: min(100%, 520px); justify-self: center; border-radius: 26px; overflow: hidden;
  padding: 34px; display: flex; flex-direction: column; justify-content: flex-end;
  background: radial-gradient(circle at 80% 20%, #fff, transparent 50%), linear-gradient(135deg, var(--nude), var(--peche) 60%, var(--or));
  box-shadow: 0 50px 100px -40px rgba(190, 130, 105, .7); transform-style: preserve-3d; transition: transform .6s var(--ease);
}
.giftcard img { position: absolute; top: 24px; left: 26px; width: 44%; filter: drop-shadow(0 4px 10px rgba(255, 255, 255, .5)); }
.giftcard p { margin: 0; font: italic 500 44px/1 var(--serif); color: var(--taupe); }
.giftcard span { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-top: 8px; }
.giftcard__shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .55) 48%, transparent 60%); transform: translateX(var(--shine, -60%)); transition: transform .3s; pointer-events: none; }
.ways { list-style: none; padding: 0; margin: 10px 0 24px; display: grid; gap: 14px; }
.ways li { padding: 18px 22px; border-radius: 20px; background: #fff; box-shadow: 0 16px 40px -26px rgba(160, 110, 90, .4); display: grid; }
.ways b { font: 600 22px var(--serif); color: var(--taupe); }
.ways span { font-size: 16px; color: var(--soft); }
.cadeau .btn { margin-top: 18px; }

/* =========================================================
   10. HORIZON
   ========================================================= */
.horizon { position: relative; height: 220vh; }
.horizon__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.horizon__img { position: absolute; inset: 0; width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.horizon__stage::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, var(--coton) 0%, rgba(251, 247, 242, 0) 26%); }
.horizon__sun { position: absolute; z-index: 1; left: 26%; top: 38%; width: 38vmin; height: 38vmin; margin: -19vmin; border-radius: 50%; background: radial-gradient(circle, rgba(255, 250, 235, .95), rgba(255, 226, 200, .5) 40%, transparent 70%); mix-blend-mode: screen; will-change: transform, opacity; }
.horizon__copy { position: relative; z-index: 2; text-align: center; padding: 0 var(--gut); will-change: transform, opacity; }
.horizon h2 em { color: var(--accent); }
.horizon h2 { margin: 0 0 40px; font: 500 clamp(52px, 8.5vw, 136px)/.95 var(--serif); color: var(--taupe); letter-spacing: -.02em; text-shadow: 0 0 80px rgba(255, 255, 255, .9), 0 0 24px rgba(255, 248, 244, .9); }

/* =========================================================
   11. INFOS
   ========================================================= */
.infos { padding: clamp(90px, 14vh, 150px) var(--gut) 90px; max-width: 1300px; margin: 0 auto; }
.infos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info { padding: 34px 32px; border-radius: var(--r); background: #fff; box-shadow: var(--shadow); }
.info h3 { font: 600 28px var(--serif); color: var(--taupe); margin: 0 0 14px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.info h3.mt { margin-top: 26px; }
.info p { margin: 0 0 12px; }
.tel { font: 500 28px var(--sans); font-variant-numeric: lining-nums tabular-nums; color: var(--accent); text-decoration: none; }
.status { font: 600 11.5px var(--sans); letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 99px; background: var(--lin); color: var(--muted); }
.status.is-open { background: rgba(207, 216, 198, .7); color: #5c6d51; }
.status.is-open::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #7d9a6b; margin-right: 8px; vertical-align: 1px; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .3; } }
.hours { width: 100%; border-collapse: collapse; font-size: 16px; }
.hours th { text-align: left; font-weight: 500; padding: 5px 0; color: var(--taupe); }
.hours td { text-align: right; color: var(--soft); font-variant-numeric: lining-nums tabular-nums; padding: 5px 0; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--accent); font-weight: 600; }
.cgv { margin-top: 28px; border-radius: var(--r); background: var(--lin); padding: 0 32px; }
.cgv summary { cursor: pointer; padding: 24px 0; font: 600 22px var(--serif); color: var(--taupe); list-style: none; display: flex; justify-content: space-between; }
.cgv summary::-webkit-details-marker { display: none; }
.cgv summary::after { content: "+"; font-family: var(--sans); font-weight: 300; transition: transform .4s var(--ease); }
.cgv[open] summary::after { transform: rotate(45deg); }
.cgv div { padding-bottom: 20px; font-size: 15px; color: var(--soft); }

/* ---------- footer ---------- */
.footer { text-align: center; padding: 70px var(--gut) 110px; background: linear-gradient(180deg, var(--coton), var(--nude)); }
.footer__logo { width: min(320px, 70vw); margin: 0 auto 16px; }
.footer__tag { color: var(--muted); font-size: 15px; }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px; margin: 22px 0; }
.footer__links a { text-decoration: none; color: var(--taupe); font-weight: 500; font-size: 15px; letter-spacing: .06em; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { font-size: 13px; color: var(--muted); letter-spacing: .1em; }

.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 95; display: none;
  padding: 16px 26px; border-radius: 999px; background: var(--taupe); color: var(--coton); text-decoration: none;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; box-shadow: 0 14px 40px -12px rgba(99, 93, 88, .7);
  transform: translateY(140%); transition: transform .6s var(--ease);
}
.float-cta.is-visible { transform: none; }

/* ---------- révélations ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); filter: blur(8px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }
[data-split] .ch { display: inline-block; opacity: 0; transform: translateY(.45em) rotate(4deg); filter: blur(10px); transition: opacity 1s var(--ease), transform 1.2s var(--ease), filter 1s var(--ease); transition-delay: calc(var(--i) * 28ms); }
[data-split] .w { display: inline-block; white-space: nowrap; }
[data-split].is-in .ch { opacity: 1; transform: none; filter: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .breath, .institut, .avis, .cadeau { grid-template-columns: 1fr; }
  .breath__orb { width: min(78vw, 380px); }
  .institut__gallery { height: 110vw; max-height: 640px; }
  .infos__grid { grid-template-columns: 1fr; }
  .signature__stage { grid-template-columns: 1fr; align-items: end; }
  .signature__copy { grid-column: 1; padding: 0 var(--gut) 6vh; max-width: none; }
  .signature__media::after { background: linear-gradient(180deg, transparent 25%, rgba(251, 247, 242, .95) 58%); }
  .float-cta { display: block; }
  .halo { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__boll { width: 82vw; top: 46%; }
  .hero__clouds img { width: 74vw; }
  .hero__frame--0 { margin-bottom: 14vh; }
  .card { width: 78vw; min-height: 0; }
  .rituels { height: 700vh; }
  .menu-list li { grid-template-columns: 1fr auto; }
  .menu-list em { grid-column: 1; grid-row: 2; }
  .menu-list strong { grid-row: 1 / span 2; grid-column: 2; align-self: center; }
  .quote { padding: 22px; }
  .info { padding: 26px 22px; }
  .cgv { padding: 0 22px; }
  .signature__copy .h2 { font-size: 44px; }
  .steps { margin: 16px 0; gap: 6px; }
  .signature__price strong { font-size: 44px; }
  .signature__copy > p:not(.eyebrow) { display: none; }
}

/* ---------- mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero, .rituels, .signature, .horizon { height: auto; }
  .hero__stage, .rituels__stage, .signature__stage, .horizon__stage { position: relative; }
  .hero__stage { height: 100vh; }
  .hero__frame--0, .signature__copy, [data-reveal], [data-split] .ch { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__frame--1, .hero__frame--2 { display: none; }
  .rituels__stage { height: auto; padding: 100px 0; }
  .rituels__track { flex-wrap: wrap; width: auto; }
  .signature__media { clip-path: none; }
  .fluff, .halo { display: none; }
}
