:root{
  --bg:#f3ecdf;
  --paper:#fffaf2;
  --ink:#2b2b2b;
  --muted:#6a6459;
  --brand:#3d6a64;
  --brand-2:#4d806f;
  --pill:#ece3d4;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:20px
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--ink);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial
}

/* Transition globale d’apparition de la page */
body{
  opacity:0;
  transition:opacity .5s ease;
}
body.is-loaded{
  opacity:1;
}

a{
  color:var(--brand);
  text-decoration:none
}
a:hover{text-decoration:underline}

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

.container{
  max-width:1200px;
  margin:0 auto;
  padding:24px
}

header{
  position:sticky;
  top:0;
  background:rgba(243,236,223,.92);
  backdrop-filter:saturate(1.1) blur(6px);
  border-bottom:1px solid #e5dccb;
  z-index:50
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}

.brand{
  display:flex;
  align-items:center;
  gap:12px
}
.brand img{
  width:36px;
  height:36px;
  border-radius:50%
}
.brand .title{
  font-weight:700
}

nav {
  display:flex;
  align-items:center;
  gap:8px;
}

/* Liens du menu */
nav a{
  position:relative;
  margin:0 4px;
  padding:10px 18px;
  border-radius:999px;
  color:var(--ink);
  font-weight:500;
  text-decoration:none;
  transition:color .25s ease, background .25s ease;
}

/* Pastille animée sous le lien (effet fluide comme sur le site de Mathilde) */
nav a::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:4px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  opacity:0;
  transform:scaleX(0);
  transform-origin:center;
  transition:opacity .25s ease,transform .25s ease;
}

/* État survol / actif */
nav a:hover,
nav a.active{
  background:rgba(61,106,100,.08); /* léger fond vert/gris */
  color:var(--brand);
}

nav a:hover::after,
nav a.active::after{
  opacity:1;
  transform:scaleX(1);
}

.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
  padding:40px 0
}

.hero img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow)
}

h1{
  font-size:clamp(28px,3.2vw,44px);
  line-height:1.12;
  margin:0
}

.lead{
  color:var(--muted);
  font-size:18px;
  margin-top:12px
}

.quote{
  margin-top:10px;
  font-style:italic;
  color:#5c564e
}
/* Photo d'accueil plein écran */
.hero-photo {
  margin-top: 32px;
}
.hero-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-caption {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  color: var(--muted);
}

/* Texte d'intro hypnose holistique */
.hero-text {
  margin-top: 40px;
  max-width: 900px;
}
.hero-text .highlight {
  font-weight: 600;
  color: var(--brand);
}

/* Section "En quoi puis-je vous aider ?" */
.help-section {
  margin-top: 60px;
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.help-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #ede4d6;
  padding: 18px 20px;
}
.help-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.help-intro {
  font-size: 14px;
  color: var(--muted);
}
.help-card ul {
  padding-left: 18px;
  margin: 6px 0 0;
}
.help-card li {
  margin-bottom: 4px;
}
.help-footer {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

/* Section développement personnel / hypnose holistique */
.dev-section {
  margin-top: 70px;
}
.dev-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 24px 0 30px;
}
.dev-block {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #ede4d6;
  padding: 18px 20px;
}
.dev-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.dev-column {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #ede4d6;
  padding: 18px 20px;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits li {
  margin-bottom: 6px;
}
.dev-closing {
  margin-top: 22px;
  font-weight: 600;
  color: var(--brand);
}

/* Étoiles avis */
.stars {
  color: #f4b321;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

/* Responsive nouvelles sections */
@media (max-width: 1000px) {
  .help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dev-grid,
  .dev-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}

.buttons{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:12px;
  background:var(--brand);
  color:#fff;
  font-weight:600;
  box-shadow:var(--shadow)
}
.btn.secondary{
  background:#fff;
  color:var(--brand);
  border:1px solid #e0d7c7
}

/* Titre de section avec soulignement animé */
.section-title{
  font-size:28px;
  margin:30px 0 10px;
  position:relative;
  display:inline-block;
}
.section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:70px;
  height:3px;
  background:var(--brand);
  border-radius:999px;
  transform-origin:left;
  transform:scaleX(0);
  animation:underline-in .7s ease forwards .2s;
}
@keyframes underline-in{
  from{transform:scaleX(0);opacity:0}
  to{transform:scaleX(1);opacity:1}
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px
}

.card{
  background:var(--paper);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid #ede4d6;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card>img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover
}

.card .content{
  padding:16px
}

.card.services-summary{
  padding:0;
  overflow:hidden;
  grid-column:span 2;
  height:400px
}
.services-summary img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px
}

.pill{
  display:inline-block;
  background:var(--pill);
  border:1px solid #e7dccb;
  border-radius:999px;
  padding:4px 10px;
  font-size:12px;
  color:#796f63;
  margin-bottom:6px
}

.card h3{
  margin:.4em 0 .3em
}
.card p{
  color:var(--muted);
  margin:0 0 12px
}
.price{
  font-weight:700
}

.actions{
  display:flex;
  gap:10px;
  padding:14px 16px 18px
}
.button{
  flex:1;
  text-align:center;
  padding:10px 14px;
  background:#fff;
  border:1px solid #e0d7c7;
  border-radius:12px
}
.button.primary{
  background:var(--brand);
  color:#fff;
  border:none
}

/* A propos */
.about-content{
  display:flex;
  flex-direction:column;
  gap:32px;
}

.panel.full-width{
  background:var(--paper);
  padding:32px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid #ede4d6;
  width:100%;
}

.about-images{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-top:20px;
}

.main-image{
  width:100%;
  height:auto;
  max-height:400px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid #ede4d6;
}

/* About page thumbnails */
.about-thumbs{
  display:flex;
  flex-direction:column;
  gap:30px;
  max-width:100%;
  margin:20px auto;
}
.about-thumbs .thumb{
  width:100%;
  height:480px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid #ede4d6;
}

.services-image{
  width:100%;
  max-width:600px;
  height:auto;
  margin:20px auto;
  display:block;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid #ede4d6;
}

iframe.acuity{
  width:100%;
  height:620px;
  border:0;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow)
}

/* SECTION LOCALISATION */
.section-location{
  background:#3d3f42;
  color:#fdf6ec;
  padding:60px 0;
  margin-top:60px;
}
.section-location .location-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  gap:40px;
  grid-template-columns:minmax(0,2fr) minmax(0,1.4fr);
  align-items:center;
}
.section-location iframe{
  width:100%;
  height:260px;
  border:0;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.section-location h2{
  font-size:28px;
  margin-bottom:12px;
}
.section-location p{
  margin-bottom:8px;
}
.section-location .location-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

/* FAQ – Questions / Réponses */
.faq{
  margin:60px auto 40px;
  max-width:900px;
}
.faq-intro{
  margin-bottom:20px;
  color:var(--muted);
}
.faq-list{
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.faq-item + .faq-item{
  border-top:1px solid #eee0d0;
}
.faq-item button{
  width:100%;
  text-align:left;
  padding:16px 20px;
  background:transparent;
  border:none;
  font:inherit;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.faq-item button span.question{
  font-weight:600;
}
.faq-item button span.icon{
  font-size:20px;
  transition:transform .2s ease;
}
.faq-item.open button span.icon{
  transform:rotate(45deg);
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  color:var(--muted);
  line-height:1.5;
  transition:max-height .25s ease, padding-bottom .25s ease;
}
.faq-item.open .faq-answer{
  padding-bottom:16px;
  max-height:300px;
}

/* FOOTER */
footer{
  margin-top:60px;
  padding:28px 0;
  border-top:1px solid #e5dccb;
  color:var(--muted);
  font-size:14px
}

/* Responsive principal */
@media(max-width:1000px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .hero,.split,.detail{grid-template-columns:1fr}
  .hero img,.split img{height:300px}
}

@media(max-width:640px){
  .grid{grid-template-columns:1fr}
  header .navbar{flex-wrap:wrap;gap:10px}
}

/* Ancienne animation fade-in (gardée au cas où) */
.fade-in{
  opacity:0;
  transform:translateY(8px);
  animation:fade .6s ease forwards
}
@keyframes fade{
  to{opacity:1;transform:none}
}

/* Animation d'apparition douce au scroll */
.will-fade{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}
.will-fade.fade-in{
  opacity:1;
  transform:translateY(0);
}

/* Légère animation flottante pour les images importantes (hero) */
.hero img,
.detail-hero{
  will-change:transform;
  transition:transform .8s ease, box-shadow .8s ease;
}
.hero img:hover,
.detail-hero:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* Effet hover sur les cartes de service */
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 36px rgba(0,0,0,.12);
  border-color:rgba(61,106,100,.35);
}

/* Témoignages */
.testimonials{
  margin-top:40px;
}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.testimonial{
  background:var(--paper);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px 18px;
  border:1px solid #ede4d6;
  font-size:15px;
}
.testimonial strong{
  display:block;
  margin-top:10px;
}
.testimonial .meta{
  font-size:13px;
  color:var(--muted);
}

/* Responsive pour témoignages + localisation + FAQ */
@media (max-width:900px){
  .testimonials-grid{
    grid-template-columns:1fr;
  }
  .section-location .location-inner{
    grid-template-columns:1fr;
  }
  .section-location{
    padding:40px 16px;
  }
  .faq{
    padding:0 16px;
  }
}
.location {
  margin-top: 50px;
}

.location-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
.stars {
  color: #f4b321;          /* jaune/or */
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 2px;     /* espace entre les ★ */
}
.hero-text-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.hero-text-content {
  flex: 2;
}

.hero-photo-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-photo-side img {
  max-width: 260px;
  border-radius: 999px; /* effet portrait rond/ovale */
  object-fit: cover;
}
@media (max-width: 900px) {
  .hero-text-inner {
    flex-direction: column;
  }
  .hero-photo-side {
    justify-content: center;
  }
}
.detail-hero {
  max-width: 420px;       /* limite la largeur */
  max-height: 380px;      /* limite la hauteur */
  object-fit: cover;      /* garde un cadrage propre */
  border-radius: var(--radius);
  margin: 0 auto;         /* centre l'image */
  display: block;
}
.detail-hero {
  max-width: 520px;     /* élargie (420px → 520px) */
  max-height: 420px;    /* légère augmentation */
  object-fit: cover;
  border-radius: var(--radius);
  margin: 20px auto;    /* bien centrée */
  display: block;
}
