/* ===========================================================
   CORPS ÂME ESPRIT — Feuille de style commune
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&family=Petit+Formal+Script&display=swap');

:root{
  --paper:#FBF3E8;
  --paper-alt:#F3E9DA;
  --sand:#EFE1CD;
  --clay:#C1694A;
  --clay-deep:#8F4A34;
  --rust:#A85A3E;
  --gold:#C08A4E;
  --sage:#707A54;
  --sage-deep:#454A2E;
  --ink:#3A2E24;
  --ink-soft:rgba(58,46,36,.7);
  --line:rgba(58,46,36,.13);
  --white:#FFFDF9;

  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:10px;
  --shadow-soft:0 10px 30px rgba(58,46,36,.07);
  --shadow-card:0 14px 34px rgba(58,46,36,.09);
  --container:1140px;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

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

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

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:500;
  line-height:1.22;
  margin:0 0 .5em;
  letter-spacing:-.01em;
  color:var(--ink);
}

p{ margin:0 0 1em; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.accent{
  font-family:'Petit Formal Script', cursive;
  color:var(--gold);
  font-weight:400;
}

section{ position:relative; }

.pad{ padding:76px 0; }
@media(max-width:640px){ .pad{ padding:52px 0; } }

.pad-sm{ padding:48px 0; }

.section-head{ max-width:640px; margin:0 auto 44px; }
.section-head.center{ text-align:center; }
.section-head h2{ font-size:clamp(26px,4vw,34px); }
.section-head .kicker{
  font-family:'Inter',sans-serif;
  font-size:12.5px;
  letter-spacing:.06em;
  color:var(--clay);
  font-weight:600;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}
.section-head.center .kicker{ justify-content:center; }
.kicker .leaf{ width:14px; height:14px; flex-shrink:0; opacity:.85; }

.section-head p{ color:var(--ink-soft); font-size:16px; }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:15.5px;
  padding:15px 30px;
  border-radius:100px;
  border:none;
  cursor:pointer;
  text-align:center;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  line-height:1;
}
.btn-primary{
  background:linear-gradient(100deg,var(--clay),var(--rust));
  color:#fff;
  box-shadow:0 12px 26px rgba(193,105,74,.32);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(193,105,74,.4); }
.btn-primary:active{ transform:translateY(0) scale(.98); }

.btn-outline{
  background:transparent;
  border:1.5px solid var(--clay);
  color:var(--clay-deep);
}
.btn-outline:hover{ background:var(--clay); color:#fff; }
.btn-outline:active{ transform:scale(.98); }

.btn-light{
  background:#fff;
  color:var(--clay-deep);
  box-shadow:0 8px 20px rgba(58,46,36,.08);
}
.btn-light:hover{ transform:translateY(-2px); }

.btn-block{ width:100%; }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(251,243,232,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.brand img{ width:38px; height:38px; object-fit:contain; }
.brand-name{
  font-family:'Fraunces',serif;
  font-size:19px;
  color:var(--sage-deep);
  white-space:nowrap;
}
.brand-name .accent{ font-size:19px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-links a{
  font-size:14.5px;
  font-weight:500;
  color:var(--ink);
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
.nav-links a:hover{ color:var(--clay); }
.nav-links a.active{ color:var(--clay-deep); font-weight:600; }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background:var(--clay);
  border-radius:2px;
}

.nav-cta{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-cta .btn{ padding:11px 22px; font-size:14px; white-space:nowrap; }

.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after{
  content:"";
  display:block;
  width:18px; height:2px;
  background:var(--ink);
  border-radius:2px;
  position:relative;
  transition:transform .25s ease, opacity .25s ease;
}
.hamburger span::before{ position:absolute; top:-6px; }
.hamburger span::after{ position:absolute; top:6px; }
.hamburger.open span{ background:transparent; }
.hamburger.open span::before{ top:0; transform:rotate(45deg); }
.hamburger.open span::after{ top:0; transform:rotate(-45deg); }

.mobile-panel{
  display:none;
  position:fixed;
  inset:0;
  top:65px;
  background:var(--paper);
  z-index:99;
  padding:20px 24px 40px;
  overflow-y:auto;
}
.mobile-panel.open{ display:block; }
.mobile-panel ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:4px; }
.mobile-panel a{
  display:block;
  font-family:'Fraunces',serif;
  font-size:22px;
  padding:16px 4px;
  border-bottom:1px solid var(--line);
  color:var(--ink);
}
.mobile-panel .btn{ margin-top:22px; }

@media(max-width:860px){
  .nav-links{ display:none; }
  .nav-cta .btn-outline-hide{ display:none; }
  .hamburger{ display:flex; }
}

/* ===========================================================
   HERO (accueil)
   =========================================================== */
.hero{
  padding:44px 0 20px;
  text-align:center;
  overflow:hidden;
}
.hero-banner{
  max-width:820px;
  margin:0 auto 30px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.hero .tagline{
  max-width:520px;
  margin:0 auto 28px;
  font-size:17px;
  color:var(--ink-soft);
  line-height:1.7;
}
.hero h1{
  font-size:clamp(28px,4.4vw,42px);
  max-width:680px;
  margin:0 auto 16px;
}

/* ===========================================================
   HOME CARDS
   =========================================================== */
.cards-wrap{ padding:30px 0 10px; }

.card-featured{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  background:linear-gradient(120deg,var(--clay),var(--rust));
  color:#fff;
  border-radius:var(--radius-lg);
  padding:38px 40px;
  margin-bottom:22px;
  box-shadow:0 18px 40px rgba(193,105,74,.28);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card-featured:hover{ transform:translateY(-3px); box-shadow:0 22px 46px rgba(193,105,74,.34); }
.card-featured:active{ transform:scale(.99); }
.card-featured .cf-text .kicker{ color:rgba(255,255,255,.85); }
.card-featured h2{ color:#fff; font-size:clamp(22px,3vw,28px); margin-bottom:6px; }
.card-featured p{ color:rgba(255,255,255,.88); margin:0; max-width:420px; }
.card-featured .btn{ flex-shrink:0; }

.card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
@media(max-width:720px){ .card-grid{ grid-template-columns:1fr; } }

.card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
  height:100%;
}
.card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px rgba(58,46,36,.12); }
.card:active{ transform:translateY(-1px) scale(.99); }

.card .icon-badge{
  width:46px; height:46px;
  border-radius:50%;
  background:var(--sand);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.card .icon-badge svg{ width:22px; height:22px; stroke:var(--clay-deep); }

.card h3{ font-size:19px; margin-bottom:8px; }
.card p{ color:var(--ink-soft); font-size:14.5px; flex-grow:1; }
.card .btn{ margin-top:16px; align-self:flex-start; }

/* ===========================================================
   PRESENTATION SECTION (home)
   =========================================================== */
.presentation{
  background:var(--paper-alt);
}
.presentation-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
@media(max-width:820px){ .presentation-grid{ grid-template-columns:1fr; gap:30px; text-align:center; } }
.presentation-visual{
  aspect-ratio:1/1;
  border-radius:var(--radius-lg);
  background:linear-gradient(155deg,var(--sand),var(--paper));
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
}
.presentation-visual img{ width:120px; opacity:.8; }
.presentation p{ color:var(--ink-soft); font-size:16px; }

/* ===========================================================
   PAGE HEADER (pages internes)
   =========================================================== */
.page-hero{
  padding:56px 0 40px;
  text-align:center;
  background:var(--paper-alt);
}
.page-hero .kicker{ justify-content:center; }
.page-hero h1{ font-size:clamp(30px,4.5vw,44px); max-width:700px; margin:0 auto 14px; }
.page-hero p{ max-width:560px; margin:0 auto; color:var(--ink-soft); font-size:16.5px; }

/* ===========================================================
   SOINS
   =========================================================== */
.soin-list{ display:flex; flex-direction:column; gap:26px; }
.soin-card{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:34px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px;
  box-shadow:var(--shadow-card);
  align-items:center;
}
@media(max-width:760px){
  .soin-card{ grid-template-columns:1fr; gap:20px; }
}
.soin-visual{
  aspect-ratio:4/3;
  border-radius:var(--radius-md);
  background:linear-gradient(155deg,var(--sand),var(--paper-alt));
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.soin-visual img{ width:100%; height:100%; object-fit:cover; }
.soin-visual .placeholder-icon{ width:56px; height:56px; opacity:.5; color:var(--clay-deep); }

.soin-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin:16px 0 20px;
}
.soin-meta div{ font-size:13.5px; color:var(--ink-soft); }
.soin-meta strong{
  display:block;
  font-family:'Fraunces',serif;
  font-size:14.5px;
  color:var(--clay-deep);
  margin-bottom:2px;
}

.disclaimer-box{
  margin-top:40px;
  background:var(--sand);
  border-radius:var(--radius-md);
  padding:24px 28px;
  font-size:13.5px;
  color:var(--ink-soft);
  line-height:1.7;
}

/* ===========================================================
   QUI SUIS-JE
   =========================================================== */
.about-hero{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:50px;
  align-items:center;
}
@media(max-width:820px){ .about-hero{ grid-template-columns:1fr; gap:28px; } }
.photo-frame{
  aspect-ratio:3/4;
  border-radius:var(--radius-lg);
  background:linear-gradient(155deg,var(--sand),var(--paper-alt));
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.photo-frame img{ width:100%; height:100%; object-fit:cover; }
.photo-frame .placeholder-text{
  font-size:13px; color:var(--ink-soft); text-align:center; padding:20px;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:10px;
}
@media(max-width:720px){ .value-grid{ grid-template-columns:1fr; } }
.value-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:26px;
  text-align:center;
}
.value-card .icon-badge{ margin:0 auto 14px; }
.value-card h4{ font-size:16.5px; margin-bottom:6px; }
.value-card p{ font-size:13.5px; color:var(--ink-soft); margin:0; }

.placeholder-note{
  display:inline-block;
  background:var(--sand);
  color:var(--clay-deep);
  font-size:12.5px;
  font-weight:600;
  padding:3px 10px;
  border-radius:100px;
  margin-bottom:8px;
}

.cta-band{
  background:linear-gradient(140deg,var(--clay-deep),var(--sage-deep));
  color:#fff;
  text-align:center;
  border-radius:var(--radius-lg);
  padding:50px 30px;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:rgba(255,255,255,.85); max-width:480px; margin:0 auto 24px; }

/* ===========================================================
   AVIS
   =========================================================== */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
@media(max-width:860px){ .testi-grid{ grid-template-columns:1fr; } }
.testi-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px;
  box-shadow:var(--shadow-card);
  display:flex;
  flex-direction:column;
}
.testi-card .quote-mark{
  font-family:'Fraunces',serif;
  font-size:40px;
  color:var(--sand);
  line-height:1;
  margin-bottom:6px;
}
.testi-card p.testi-text{
  font-style:italic;
  color:var(--ink-soft);
  font-size:14.5px;
  flex-grow:1;
}
.testi-card .testi-foot{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:10px;
}
.testi-avatar{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--sand);
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;
  color:var(--clay-deep);
  font-size:14px;
  flex-shrink:0;
}
.testi-name{ font-size:13.5px; font-weight:600; }
.testi-soin{ font-size:12px; color:var(--ink-soft); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer{
  background:var(--sage-deep);
  color:rgba(255,253,249,.78);
  padding:52px 0 26px;
  font-size:13.5px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:36px;
  margin-bottom:34px;
}
@media(max-width:720px){ .footer-grid{ grid-template-columns:1fr; gap:26px; } }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.footer-brand img{ width:32px; height:32px; }
.footer-brand span{ font-family:'Fraunces',serif; font-size:17px; color:#fff; }
.site-footer h5{
  font-family:'Inter',sans-serif;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,253,249,.5);
  margin:0 0 12px;
}
.site-footer ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.site-footer a:hover{ color:#fff; }
.footer-bottom{
  border-top:1px solid rgba(255,253,249,.15);
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  color:rgba(255,253,249,.5);
  font-size:12.5px;
}

/* ===========================================================
   UTILS
   =========================================================== */
.center{ text-align:center; }
.mt-32{ margin-top:32px; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}

/* ===========================================================
   LINKTREE (page d'accueil)
   =========================================================== */
.lt-page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:56px 24px 30px;
  background:linear-gradient(180deg,#FCF6EE,var(--paper) 40%);
}
.lt-container{
  width:100%;
  max-width:460px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.lt-banner{
  width:100%;
  border-radius:20px;
  object-fit:cover;
  box-shadow:0 14px 32px rgba(58,46,36,.14);
  margin-bottom:34px;
}
.lt-name{
  font-size:24px;
  margin-bottom:6px;
}
.lt-name .accent{ font-size:24px; }
.lt-tagline{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--clay);
  margin-bottom:34px;
}
.lt-links{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:36px;
}
.lt-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:18px 22px;
  border-radius:100px;
  background:linear-gradient(100deg,var(--clay),var(--rust));
  border:none;
  color:#fff;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:15.5px;
  box-shadow:0 14px 30px rgba(193,105,74,.28);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.lt-link:hover{ transform:translateY(-3px); box-shadow:0 18px 36px rgba(193,105,74,.38); }
.lt-link:active{ transform:translateY(-1px) scale(.98); }

.lt-socials{
  display:flex;
  gap:16px;
  margin-bottom:30px;
}
.lt-social{
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--clay-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, background .2s ease;
}
.lt-social:hover{ transform:translateY(-2px); background:var(--clay); }
.lt-social svg{ width:19px; height:19px; fill:#fff; }

.lt-footer{
  text-align:center;
  font-size:12px;
  color:var(--ink-soft);
  line-height:1.8;
}
.lt-footer a{ text-decoration:underline; }
.lt-footer a:hover{ color:var(--clay); }

@media(max-width:420px){
  .lt-page{ padding:44px 18px 24px; }
  .lt-banner{ border-radius:16px; margin-bottom:26px; }
  .lt-link{ padding:16px 18px; font-size:14.5px; }
}
