/* =========================================================
   Melania Forcina · PMU Artist
   Palette nude chic
   ========================================================= */
:root {
  --cream: #FAF6F2;
  --sand: #F1E7DE;
  --blush: #E7CFC3;
  --rose: #B67C63;      /* or rose du logo (texte) */
  --gold: #CA9B84;      /* or rose du logo (déco) */
  --taupe: #8A6A5C;
  --cocoa: #4A3730;
  --ink: #2E2320;
  --muted: #7C6A62;
  --line: #E3D5CB;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --shadow: 0 20px 50px -25px rgba(74, 55, 48, .35);
  --max: 1160px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--taupe); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; color: var(--cocoa); }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -.01em; }
h1 em { font-style: italic; color: var(--rose); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1em; }

.container { width: min(var(--max), 100% - 32px); margin-inline: auto; }
.container--narrow { width: min(760px, 100% - 32px); }
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section--tint { background: var(--sand); }
.section--dark { background: var(--cocoa); color: var(--sand); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 56px; }

.eyebrow {
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); font-weight: 500; margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 520px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; opacity: .8; }
.note { font-size: .92rem; color: var(--muted); font-style: italic; margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  background: var(--cocoa); color: var(--cream);
  text-decoration: none; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--cocoa);
  transition: background .25s, color .25s, transform .25s;
}
.btn:hover { background: var(--taupe); border-color: var(--taupe); transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }
.btn--small { padding: 10px 22px; font-size: .78rem; }
.btn--ghost { background: transparent; color: var(--cocoa); }
.btn--ghost:hover { background: var(--cocoa); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--cocoa); border-color: var(--cream); }
.btn--light:hover { background: var(--blush); border-color: var(--blush); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(250,246,242,.5); }
.btn--ghost-light:hover { background: var(--cream); color: var(--cocoa); border-color: var(--cream); }

/* ---------- Placeholders photo ---------- */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(145deg, var(--blush), var(--sand) 60%, #EADBD0);
  display: grid; place-items: center;
}
.ph span {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--taupe);
  opacity: .75; padding: 12px; text-align: center;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph--tall { aspect-ratio: 4 / 5; }
.ph--portrait { aspect-ratio: 4 / 5; }
.about__photo img { object-position: center 18%; }
.hero__photo img { object-position: center 30%; }
.ph--square { aspect-ratio: 1; }
.ph--card { aspect-ratio: 4 / 3; border-radius: var(--radius) var(--radius) 0 0; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 242, .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.header.scrolled { border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.logo__mono { height: 48px; width: auto; }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; border-left: 1px solid var(--line); padding-left: 14px; }
.logo__name { font-family: var(--sans); font-size: .9rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink); font-weight: 400; }
.logo__sub { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--rose); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) {
  text-decoration: none; color: var(--ink); font-size: .92rem; letter-spacing: .04em;
  position: relative;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--rose);
  transition: width .3s;
}
.nav a:not(.btn):hover::after { width: 100%; }
.burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--cocoa); transition: transform .3s, top .3s; }
.burger span:first-child { top: 15px; }
.burger span:last-child { top: 24px; }
.burger[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(72px, 10vw, 120px); overflow: hidden; }
.hero__inner { position: relative; z-index: 1; }
.hero__watermark {
  position: absolute; left: -6%; top: 50%; transform: translateY(-50%);
  width: min(900px, 90vw); opacity: .07; pointer-events: none; user-select: none;
}
.contact__mono { height: 54px; width: auto; margin-bottom: 18px; }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__visual { position: relative; }
.hero__visual .ph { border-radius: 200px 200px var(--radius) var(--radius); box-shadow: var(--shadow); }
.hero__badge {
  position: absolute; left: -28px; bottom: 40px;
  background: var(--cream); padding: 16px 22px; border-radius: 14px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; line-height: 1.3;
}
.hero__badge strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--cocoa); }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about .ph { box-shadow: var(--shadow); }
.checks { list-style: none; padding: 0; margin: 24px 0 0; }
.checks li { padding-left: 30px; position: relative; margin-bottom: 8px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 16px; height: 8px;
  border-left: 1.5px solid var(--rose); border-bottom: 1.5px solid var(--rose); transform: rotate(-45deg);
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 30px -20px rgba(74,55,48,.3);
  transition: transform .35s, box-shadow .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__body { padding: 28px 28px 32px; }
.card__body > p { color: var(--muted); }
.card ul { list-style: none; padding: 0; margin: 18px 0 0; border-top: 1px solid var(--line); }
.card li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.card li strong { font-weight: 500; color: var(--cocoa); }

/* ---------- Gallery avant / après ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1040px; margin-inline: auto; }
.ba { margin: 0; }
.ba figcaption { text-align: center; margin-top: 14px; font-family: var(--serif); font-size: 1.3rem; color: var(--cocoa); }
.ba__frame {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--sand); user-select: none; touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__tag {
  position: absolute; top: 14px; z-index: 2; pointer-events: none;
  background: rgba(250,246,242,.9); color: var(--cocoa);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px;
  background: var(--cream); z-index: 2; pointer-events: none;
}
.ba__handle span {
  position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--cream); box-shadow: 0 4px 16px rgba(46,35,32,.25);
}
.ba__handle span::before, .ba__handle span::after {
  content: ""; position: absolute; top: 50%; width: 0; height: 0; margin-top: -6px;
  border: 6px solid transparent;
}
.ba__handle span::before { left: 7px; border-right-color: var(--rose); }
.ba__handle span::after { right: 7px; border-left-color: var(--rose); }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100vh; }
.ba__range::-moz-range-thumb { width: 44px; height: 100vh; border: 0; }
.ba__range:focus-visible + .ba__handle span, .ba__frame:focus-within .ba__handle span { outline: 2px solid var(--rose); outline-offset: 3px; }

/* ---------- Steps ---------- */
.steps__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps__list li { background: var(--cream); border-radius: var(--radius); padding: 32px 26px; }
.steps__num { display: block; font-family: var(--serif); font-size: 2.6rem; color: var(--rose); line-height: 1; margin-bottom: 18px; }
.steps__list h3 { font-size: 1.4rem; }
.steps__list p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Pricing ---------- */
.price-group { margin-bottom: 40px; }
.price-group h3 { font-size: 1.5rem; color: var(--rose); font-style: italic; margin-bottom: 14px; }
.price { display: flex; align-items: baseline; gap: 12px; padding: 10px 0; }
.price__dots { flex: 1; border-bottom: 1px dotted var(--rose); transform: translateY(-5px); opacity: .6; }
.price__val { font-family: var(--serif); font-size: 1.35rem; color: var(--cocoa); font-weight: 500; white-space: nowrap; }

/* ---------- Prep ---------- */
.prep__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.prep h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.dots { list-style: none; padding: 0; margin: 20px 0 0; }
.dots li { position: relative; padding-left: 22px; margin-bottom: 12px; }
.dots li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 24px 40px 24px 0; position: relative;
  font-family: var(--serif); font-size: 1.35rem; color: var(--cocoa);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; color: var(--rose); transition: transform .3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 20px; margin: 0; }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contact__info { display: grid; gap: 30px; padding: 36px; border: 1px solid rgba(231,207,195,.3); border-radius: var(--radius); }
.contact__info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact__info p { margin: 0 0 4px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(241,231,222,.7); font-size: .85rem; padding: 26px 0; }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer p { margin: 0; }
.footer a { color: var(--blush); text-decoration: none; }

/* ---------- WhatsApp flottant ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--cocoa); color: var(--cream);
  display: none; place-items: center; box-shadow: var(--shadow);
}
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 560px; }
  .burger { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: var(--cream);
    flex-direction: column; gap: 0; padding: 12px 16px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); visibility: hidden; transition: transform .4s ease, visibility 0s .4s; z-index: -1;
  }
  .nav.open { transform: none; visibility: visible; transition: transform .4s ease; }
  .nav a:not(.btn) { padding: 14px 0; width: 100%; text-align: center; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 20px; }
  .hero__inner, .about__inner, .prep__inner, .contact__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin-inline: auto; width: 100%; }
  .hero__badge { left: 0; }
  .about .ph { max-width: 420px; }
  .wa-float { display: grid; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .logo__mono { height: 30px; }
  .logo { gap: 10px; }
  .logo__text { padding-left: 10px; }
  .logo__name { font-size: .72rem; letter-spacing: .2em; }
  .cards, .steps__list { grid-template-columns: 1fr; }
  .hero__cta .btn, .contact__cta .btn { width: 100%; justify-content: center; }
  .contact__info { padding: 26px; }
}
