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

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pageFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
.page-content {
  animation: pageFadeIn 0.45s ease-out both;
}
.page-content.page-exit {
  animation: pageFadeOut 0.32s ease-in forwards;
  pointer-events: none;
}

:root {
  --vert: #7a9e7e;
  --vert-fonce: #5e8463;
  --vert-clair: #d9e8d5;
  --beige: #f4efe8;
  --vert-bordure: #b8ceb8;
  --vert-doux: #c8d8c8;
  --texte: #2c2c2a;
  --texte-secondaire: #5f5e5a;
  --bordure: rgba(0,0,0,0.12);
  --radius: 12px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.7;
  background: #fff;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 0.5px solid var(--bordure);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  max-width: 900px;
  margin: 0 auto;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--texte);
}
.logo span { color: var(--vert); }
nav ul { display: flex; gap: 1.5rem; list-style: none; }
nav ul li a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--texte-secondaire);
  text-transform: uppercase;
}
nav ul li a:hover,
nav ul li a.active { color: var(--vert); }

/* ── LAYOUT ── */
.site { max-width: 900px; margin: 0 auto; }
.section {
  padding: 3.5rem 2rem;
  border-bottom: 0.5px solid var(--bordure);
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* ── BOUTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--vert);
  color: #fff;
  padding: 0.75rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--vert-fonce); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--vert-fonce);
  padding: 0.65rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--vert);
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--vert-clair); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 0.5px solid var(--bordure);
}
.hero-left {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.hero-title em { font-style: italic; color: var(--vert); }
.hero-tagline {
  font-size: 17px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--texte-secondaire);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 14px;
  color: var(--texte-secondaire);
  max-width: 340px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-right {
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--vert-bordure);
}
.badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #fff;
  border: 0.5px solid var(--vert-bordure);
  border-radius: 2px;
  padding: 0.4rem 0.8rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vert);
}

/* ── DOMAINES ── */
.domaine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.domaine-card { border: 0.5px solid rgba(0,0,0,0.12); border-radius: 12px; overflow: hidden; }
.domaine-titre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: #7a9e7e;
  padding: 0.6rem 1rem;
  line-height: 1.3;
}
.domaine-desc { font-size: 13px; color: #2c2c2a; line-height: 1.7; padding: 0.75rem 1rem; }

/* ── RDV ── */
.rdv-section {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}
.rdv-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── TÉMOIGNAGES ── */
.temoignages { display: grid; gap: 1rem; margin-top: 1.5rem; }
.temoignage {
  background: #f8f6f2;
  border-left: 2px solid var(--vert);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
}
.temoignage p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.temoignage cite {
  font-size: 12px;
  color: var(--texte-secondaire);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── À PROPOS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: start;
}
.about-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.about-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--vert-bordure);
}
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 0.25rem;
}
.about-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 1rem;
}
.rpps {
  font-size: 12px;
  color: var(--texte-secondaire);
  border-top: 0.5px solid var(--bordure);
  padding-top: 1rem;
  margin-top: 1rem;
  line-height: 1.8;
}
.valeurs { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.75rem; }
.valeur {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vert-fonce);
  background: var(--vert-clair);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.about-text p {
  font-size: 14px;
  color: var(--texte-secondaire);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin: 1.5rem 0 0.75rem;
}
.domaines { list-style: none; margin-bottom: 1rem; }
.domaines li {
  font-size: 14px;
  color: var(--texte-secondaire);
  padding: 0.4rem 0;
  border-bottom: 0.5px solid var(--bordure);
  line-height: 1.6;
}

/* ── TARIFS ── */
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.tarif-card {
  border: 0.5px solid var(--bordure);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.tarif-card.gratuit { background: var(--beige); border-color: var(--vert-doux); }
.tarif-card.featured { border: 1.5px solid var(--vert); }
.tarif-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 0.75rem;
}
.tarif-tag.free {
  background: var(--vert-clair);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
}
.tarif-nom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  margin-bottom: 0.25rem;
}
.tarif-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--vert-fonce);
  margin: 0.5rem 0 0.15rem;
}
.tarif-duree {
  font-size: 12px;
  color: var(--texte-secondaire);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--bordure);
}
.tarif-desc { font-size: 13px; color: var(--texte-secondaire); line-height: 1.7; }
.tarif-infos {
  background: #f8f6f2;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.tarif-infos p {
  font-size: 14px;
  color: var(--texte-secondaire);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.tarif-infos p:last-child { margin-bottom: 0; }
.tarif-infos strong { color: var(--texte); font-weight: 400; }

/* ── FAQ ── */
.faq-item { border-bottom: 0.5px solid var(--bordure); padding: 1.25rem 0; }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--texte);
}
.faq-q:hover { color: var(--vert); }
.faq-a {
  font-size: 14px;
  color: var(--texte-secondaire);
  line-height: 1.8;
  margin-top: 0.75rem;
  display: none;
}
.faq-a.open { display: block; }
.faq-icon { font-size: 18px; color: var(--vert); font-weight: 300; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}
.contact-info p {
  font-size: 14px;
  color: var(--texte-secondaire);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: var(--texte-secondaire);
}
.contact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vert);
  flex-shrink: 0;
}
.urgence {
  background: #fff8f0;
  border: 0.5px solid #f0c8a0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 13px;
  color: #8a5a2a;
  line-height: 1.7;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--texte-secondaire);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 0.5px solid rgba(0,0,0,0.2);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--texte);
  background: #fff;
}
.form-group textarea { height: 100px; resize: vertical; }
.rgpd-mention {
  font-size: 12px;
  color: var(--texte-secondaire);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* ── MENTIONS LÉGALES ── */
.legal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin: 1.5rem 0 0.5rem;
}
.legal-content p, .legal-content li {
  font-size: 14px;
  color: var(--texte-secondaire);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.legal-content ul { padding-left: 1.5rem; }
.urgence-box {
  background: #fff0f0;
  border: 0.5px solid #f0a0a0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 13px;
  color: #8a2a2a;
  line-height: 1.7;
}

/* ── WHATSAPP ── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.55rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-whatsapp svg { width: 15px; height: 15px; fill: #fff; flex-shrink: 0; }

.whatsapp-cta {
  background: #f0faf4;
  border: 1px solid #b7e4c7;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.whatsapp-cta-text { flex: 1; min-width: 180px; }
.whatsapp-cta-text strong { display: block; font-size: 15px; font-weight: 400; color: var(--texte); margin-bottom: 0.25rem; }
.whatsapp-cta-text span { font-size: 13px; color: var(--texte-secondaire); }

@media (max-width: 480px) {
  .btn-whatsapp { font-size: 11px; padding: 0.5rem 0.9rem; }
  .whatsapp-cta { flex-direction: column; align-items: flex-start; }
}

/* ── FOOTER ── */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 12px;
  color: var(--texte-secondaire);
  letter-spacing: 0.04em;
  border-top: 0.5px solid var(--bordure);
  max-width: 900px;
  margin: 0 auto;
}
footer a {
  color: var(--texte-secondaire);
  text-decoration: none;
  margin: 0 0.5rem;
}
footer a:hover { color: var(--vert); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  nav ul { gap: 1rem; }
  nav ul li a { font-size: 12px; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 2.5rem 1.5rem; }
  .hero-title { font-size: 36px; }
  .hero-right { min-height: 240px; }
  .hero-photo { width: 180px; height: 180px; }

  .section { padding: 2.5rem 1.5rem; }
  .section-title { font-size: 26px; }

  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tarif-grid { grid-template-columns: 1fr; }
  .domaine-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .rdv-section { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  nav { padding: 1rem; flex-wrap: wrap; gap: 0.75rem; }
  nav ul { gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
  nav ul li a { font-size: 11px; letter-spacing: 0.04em; }
  .logo { font-size: 18px; }

  .hero-left { padding: 2rem 1rem; }
  .hero-title { font-size: 30px; }
  .hero-tagline { font-size: 15px; }
  .hero-sub { font-size: 14px; }
  .hero-right { min-height: 200px; }
  .hero-photo { width: 140px; height: 140px; }
  .badge { top: 1rem; right: 1rem; font-size: 11px; padding: 0.3rem 0.6rem; }

  .section { padding: 2rem 1rem; }
  .section-title { font-size: 22px; }
  .section-label { font-size: 11px; }

  .domaine-grid { grid-template-columns: 1fr; }
  .domaine-titre { font-size: 15px; }

  .rdv-section { padding: 1.75rem 1rem; }
  .rdv-options { flex-direction: column; align-items: stretch; }
  .rdv-options .btn-primary,
  .rdv-options .btn-outline { text-align: center; }

  .about-card { padding: 1.5rem 1rem; }
  .about-photo { width: 80px; height: 80px; }

  .tarif-grid { grid-template-columns: 1fr; }
  .tarif-card { padding: 1.25rem; }
  .tarif-prix { font-size: 28px; }

  .faq-q { font-size: 15px; }
  .faq-a { font-size: 14px; }

  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .urgence { font-size: 12px; }

  .btn-primary { padding: 0.7rem 1.5rem; font-size: 12px; }
  .btn-outline { padding: 0.6rem 1.25rem; font-size: 12px; }

  footer { padding: 1.5rem 1rem; font-size: 11px; }

  .legal-content h3 { font-size: 16px; }
}
