/* =========================================================
   Charlène Bogaerts — Sophrologue
   Design « nature douce » — sauge / crème / terracotta
   ========================================================= */

:root {
  --sage:        #7C8C6B;
  --sage-dark:   #5F6E51;
  --sage-light:  #9CAA89;
  --cream:       #F7F4EE;
  --cream-deep:  #EFE9DE;
  --beige:       #E8E0D3;
  --terracotta:  #C08A6E;
  --terracotta-dark: #A9745A;
  --ink:         #3A3A34;
  --ink-soft:    #6B6B61;
  --white:       #FFFFFF;

  --radius:      18px;
  --radius-lg:   28px;
  --shadow:      0 18px 50px -28px rgba(60, 70, 50, .45);
  --shadow-soft: 0 10px 30px -20px rgba(60, 70, 50, .35);

  --font-title:  "Cormorant Garamond", Georgia, serif;
  --font-body:   "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1140px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-title); font-weight: 600; line-height: 1.12; margin: 0; }

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

/* ---------- Boutons ---------- */
.btn {
  --c: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--sage); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--sage-dark); border-color: var(--sage-light); }
.btn-ghost:hover { background: var(--sage); color: var(--white); border-color: var(--sage); transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 .9rem;
}

/* =========================================================
   EN-TÊTE
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 238, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -18px rgba(60,70,50,.5); border-color: var(--beige); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; transition: padding .3s ease; }
.site-header.scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-title); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.brand-role { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.6rem; }
.nav-list a { font-size: .96rem; font-weight: 600; color: var(--ink-soft); position: relative; padding: .2rem 0; }
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--terracotta); transition: width .3s ease;
}
.nav-list a:hover { color: var(--ink); }
.nav-list a:hover::after { width: 100%; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(192,138,110,.16), transparent 70%),
    radial-gradient(55% 50% at 12% 80%, rgba(124,140,107,.16), transparent 70%);
  z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 700;
  color: var(--sage-dark); margin: 0 0 1.2rem;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--ink); margin-bottom: 1.4rem; }
.hero-quote { font-family: var(--font-title); font-style: italic; font-size: 1.35rem; color: var(--terracotta-dark); margin: 0 0 1.2rem; }
.hero-lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 30rem; margin: 0 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-media { display: flex; justify-content: center; }

/* Cadre photo */
.photo-frame {
  position: relative;
  width: 100%; max-width: 420px; aspect-ratio: 4 / 5;
  border-radius: 50% 50% 46% 46% / 42% 42% 54% 54%;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--beige);
  border: 6px solid var(--white);
}
.photo-frame--soft { border-radius: var(--radius-lg); aspect-ratio: 4 / 5; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame img.img-missing {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: .85rem; color: var(--ink-soft);
  background: repeating-linear-gradient(45deg, var(--cream-deep), var(--cream-deep) 12px, var(--beige) 12px, var(--beige) 24px);
}
/* Placeholder visible quand l'image est absente (le alt s'affiche) */
.photo-frame img.img-missing::after { content: attr(alt); padding: 1rem; text-align: center; }

/* Feuilles décoratives */
.leaf { position: absolute; border-radius: 0 50% 50% 50%; background: var(--sage-light); opacity: .18; z-index: -1; }
.leaf-1 { width: 120px; height: 120px; top: 12%; left: 6%; transform: rotate(30deg); }
.leaf-2 { width: 80px; height: 80px; bottom: 14%; right: 9%; transform: rotate(-20deg); background: var(--terracotta); opacity: .14; }
.leaf-3 { width: 160px; height: 160px; top: -40px; right: -40px; opacity: .12; }

/* =========================================================
   SECTIONS GÉNÉRIQUES
   ========================================================= */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 42rem; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--ink); margin-bottom: 1rem; }
.section-lede { color: var(--ink-soft); font-size: 1.06rem; }

/* Split (à propos) */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.apropos { background: var(--white); }
.split-text h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.2rem; }
.split-text p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.split-text strong { color: var(--ink); font-weight: 700; }
.apropos-signoff {
  font-family: var(--font-title); font-style: italic; font-size: 1.3rem;
  color: var(--sage-dark) !important; margin-top: .6rem !important;
}
.split-media { display: flex; justify-content: center; }

/* Bloc bienfaits */
.bienfaits {
  max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft); border: 1px solid var(--cream-deep);
  border-left: 4px solid var(--sage);
}
.bienfaits h3 { font-size: 1.7rem; color: var(--ink); margin-bottom: 1.4rem; }
.bienfaits-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .9rem 2rem;
}
.bienfaits-list li {
  position: relative; padding-left: 2rem;
  color: var(--ink); font-weight: 600; font-size: 1.02rem;
}
.bienfaits-list li::before {
  content: ""; position: absolute; left: 0; top: .5rem;
  width: 11px; height: 11px; border-radius: 0 50% 50% 50%;
  background: var(--sage); transform: rotate(45deg);
}
@media (max-width: 560px) {
  .bienfaits-list { grid-template-columns: 1fr; }
}

/* =========================================================
   VALEURS
   ========================================================= */
.values-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.4rem;
}
.value-card {
  flex: 1 1 280px; max-width: 340px;
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-deep);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-num { font-family: var(--font-title); font-size: 1.6rem; color: var(--terracotta); font-weight: 600; }
.value-card h3 { font-size: 1.5rem; margin: .4rem 0 .7rem; color: var(--ink); }
.value-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* =========================================================
   DOMAINES
   ========================================================= */
.domaines { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.domaines-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}
.domaine-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft); border: 1px solid var(--cream-deep);
  transition: transform .3s ease, box-shadow .3s ease;
}
.domaine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.domaine-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; margin-bottom: 1.1rem;
  border-radius: 50%; background: var(--beige); color: var(--sage-dark);
}
.domaine-icon svg { width: 26px; height: 26px; }
.domaine-card h3 { font-size: 1.45rem; color: var(--ink); margin-bottom: .5rem; line-height: 1.2; }
.domaine-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

.qvt-banner {
  margin-top: 2.5rem;
  background: var(--sage); color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.qvt-banner h3 { font-size: 1.7rem; margin-bottom: .4rem; }
.qvt-banner p { margin: 0; opacity: .92; max-width: 42rem; }
.qvt-banner .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.6); flex-shrink: 0; }
.qvt-banner .btn-ghost:hover { background: var(--white); color: var(--sage-dark); border-color: var(--white); }

/* =========================================================
   DIPLÔMES
   ========================================================= */
.diplomes { background: var(--white); }
.diplomes-list { max-width: 46rem; margin: 0 auto; display: grid; gap: .9rem; }
.diplomes-list li {
  position: relative; padding: 1rem 1.2rem 1rem 3.2rem;
  background: var(--cream); border-radius: var(--radius);
  color: var(--ink); font-size: 1.02rem;
}
.diplomes-list li::before {
  content: "✓"; position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
}

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.temoignages { background: var(--white); }
.avis-stars { color: #E0A53F; letter-spacing: .12em; font-size: 1.05rem; }
.avis-resume {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: 1.2rem; padding: .55rem 1.2rem;
  background: var(--cream); border-radius: 100px;
}
.avis-resume .avis-note { color: var(--ink-soft); font-size: .98rem; }
.avis-resume strong { color: var(--ink); }

.temoignages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.temoignage-card {
  margin: 0; background: var(--cream); border-radius: var(--radius);
  padding: 1.8rem 1.7rem; border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: .9rem;
}
.temoignage-card blockquote {
  margin: 0; color: var(--ink); font-size: 1.05rem; line-height: 1.65;
  font-family: var(--font-title); font-style: italic;
}
.temoignage-card figcaption { color: var(--sage-dark); font-weight: 700; font-size: .95rem; }

.avis-cta { text-align: center; margin-top: 2.5rem; }

/* =========================================================
   TARIFS
   ========================================================= */
.tarifs { background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%); }
.tarif-card {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.2rem); box-shadow: var(--shadow);
  border: 1px solid var(--cream-deep);
}
.tarif-price { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.8rem; }
.price-amount { font-family: var(--font-title); font-size: 4rem; font-weight: 600; color: var(--sage-dark); line-height: 1; }
.price-unit { text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--ink-soft); font-weight: 700; margin-top: .4rem; }
.tarif-details { text-align: left; display: grid; gap: .7rem; margin-bottom: 2rem; }
.tarif-details li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); }
.tarif-details li::before { content: ""; position: absolute; left: 0; top: .6rem; width: 9px; height: 9px; border-radius: 0 50% 50% 50%; background: var(--terracotta); transform: rotate(45deg); }
.tarif-details strong { color: var(--ink); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { position: relative; overflow: hidden; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: stretch; }
.contact-info {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; flex-direction: column;
}
.contact-list { display: grid; gap: 1.4rem; margin-bottom: 2rem; }
.contact-list li { display: flex; flex-direction: column; }
.contact-label { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; color: var(--terracotta); margin-bottom: .25rem; }
.contact-list a { font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--sage-dark); }
.contact-note { margin: 1rem 0 0; font-size: .9rem; color: var(--ink-soft); text-align: center; }
.contact-map { min-height: 340px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* =========================================================
   PIED DE PAGE
   ========================================================= */
.site-footer { background: var(--sage-dark); color: var(--cream); padding: 2.6rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .brand-role { color: var(--sage-light); }
.footer-meta { margin: 0; font-size: .88rem; opacity: .85; text-align: right; }

/* =========================================================
   ANIMATIONS D'APPARITION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s 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: 940px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-media { order: 1; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* Menu mobile */
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 340px); height: 100dvh;
    background: var(--cream);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 2rem; padding: 2.5rem;
    transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -20px 0 50px -30px rgba(0,0,0,.4);
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 1.3rem; }
  .nav-list a { font-size: 1.2rem; }
  .nav-cta { width: 100%; }
  body.menu-open { overflow: hidden; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
  .qvt-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 2.4rem; }
}
