:root{
    --bg:#fff;
    --text:#151515;
    --muted:#666;
    --border:#e7e7e7;
    --alt:#f7f7f7;
  
    --accent:#7FAE9E;
    --accent-soft:#EAF4F0;
    --accent-dark:#5E8F80;
  
    --shadow:0 8px 24px rgba(0,0,0,.06);
    --radius:14px;
    --max:1100px;
  }
  
  
  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.55;
  }
  
  .container{
    width:min(var(--max), calc(100% - 32px));
    margin:0 auto;
  }
  
  /* Header */
  .site-header{
    position:sticky;
    top:0;
    z-index:10;
    background: rgba(234, 244, 240, 0.92); /* vert très pâle */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }
  
  .header-inner{
    display:flex;
    gap:16px;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:var(--text);
    min-width: 220px;
  }
  .brand-logo{
    width:252px;
    height:auto;
    object-fit:contain;
  }
  
  
  .brand-text{ display:flex; flex-direction:column; line-height:1.1; }
  .brand-name{ font-weight:900; letter-spacing:.2px; }
  .brand-sub{ font-size:12px; color:var(--muted); font-weight:700; }
  
  .nav{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }
  .nav a{
    text-decoration:none;
    color:var(--text);
    padding:8px 10px;
    border-radius:10px;
    border:1px solid transparent;
    font-weight:700;
  }
  .nav a:hover{ background:var(--alt); }
  .nav a.active{
    background:var(--alt);
    border-color:var(--border);
  }
  
  /* Hero */
  .hero{
    padding:56px 0 34px;
    border-bottom:1px solid var(--border);
  }
  .hero-inner{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
  }
  .hero-single .hero-text{ max-width: 900px; }
  
  .kicker{
    margin:0 0 10px;
    font-weight:800;
    color:var(--muted);
    letter-spacing:.2px;
  }
  .hero h1{
    font-size:clamp(30px, 4vw, 50px);
    margin:0 0 10px;
    letter-spacing:-0.6px;
  }
  .lead{
    font-size:18px;
    color:var(--muted);
    margin:0 0 18px;
  }
  .hero-cta{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:16px 0 10px;
  }
  
  /* Sections / cards */
  .section{ padding:52px 0; }
  .section.alt{
    background: var(--accent-soft);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  h2{
    margin:0 0 14px;
    font-size:26px;
    color: var(--accent-dark);
  }
    
  h1{ margin:0 0 14px; font-size:34px; letter-spacing:-.4px; }
  h2{ margin:0 0 14px; font-size:26px; }
  h3{ margin:0 0 10px; }
  
  .cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
  }
  .grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    align-items:start;
  }
  .top-gap{ margin-top: 16px; }
  
  .card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:18px;
    box-shadow:var(--shadow);
  }
  
  .checklist{ margin:0; padding-left:18px; }
  .checklist li{ margin:8px 0; }
  
  .price{
    font-size:28px;
    font-weight:900;
    margin:10px 0 6px;
  }
  
  .small-note{
    color:var(--muted);
    font-size:13px;
    margin-top:12px;
  }
  
  .spacer{ height: 10px; }
  
  /* Buttons */
  .btn{
    display:inline-block;
    border:1px solid var(--border);
    background:#fff;
    color:var(--text);
    text-decoration:none;
    padding:10px 14px;
    border-radius:12px;
    box-shadow:0 1px 0 rgba(0,0,0,.03);
    cursor:pointer;
    font-weight:800;
  }
  .btn:hover{ transform: translateY(-1px); }
  .btn.primary{
    border-color: var(--accent-dark);
    background: var(--accent);
    color:#fff;
  }
  
  
  /* Bandeau qui défile */
  .ticker{
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:#fff;
    overflow:hidden;
  }
  .ticker{
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--accent-soft);
    overflow:hidden;
  }
  
  .ticker-track{
    display:inline-flex;
    gap:22px;
    padding:14px 0;
    white-space:nowrap;
    will-change: transform;
    animation: ticker 18s linear infinite;
  }
  .ticker-track span{
    font-weight:900;
    color:var(--text);
  }
  @keyframes ticker{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce){
    .ticker-track{ animation:none; }
  }
  
  /* Stats */
  .stats{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
  }
  .stat-number{
    font-size:42px;
    font-weight:900;
    margin:0 0 8px;
    letter-spacing:-0.5px;
  }
  .stat-label{
    margin:0;
    color:var(--muted);
    font-weight:700;
  }
  
  /* Blocks (consultations) */
  .block{ margin-top: 24px; }
  .block:first-of-type{ margin-top: 0; }
  
  /* Photo en fin de bio */
  .photo-bio{
    margin-top: 42px;
    text-align: center;
  }
  .bio-photo{
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  
  /* CTA card */
  .cta .lead{ margin-top: 8px; }
  
  /* Footer */
  .site-footer{
    border-top:1px solid var(--border);
    padding:18px 0;
  }
  .footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .cards{ grid-template-columns:1fr; }
    .grid-2{ grid-template-columns:1fr; }
    .brand{ min-width: auto; }
  }
  /* Cartes tarifs en vert pâle */
.cards .card{
    background: var(--accent-soft);
  }
  /* Cartes contact en vert pâle */
.cards-contact .card{
    background: var(--accent-soft);
  }
/* ---- Google Maps (Contact) ---- */
.map-embed{
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background: transparent;
  }
  
  .map-embed iframe{
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
  }
  
  /* Cartes contact plus ajustées */
  .cards-contact .card{
    padding: 16px;
  }
  
  /* Plan plus large que coordonnées sur ordi */
  @media (min-width: 901px){
    .cards-contact{
      grid-template-columns: 1fr 1.4fr;
    }
  }
 /* --- Dropdown nav "Consultations" --- */
.dropdown{ position: relative; }

.dropbtn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid transparent;
  background:transparent;
  color:var(--text);
  padding:8px 10px;
  border-radius:10px;
  font-weight:800;
  cursor:pointer;
}
.dropbtn:hover{ background: var(--alt); }

.dropdown.open .dropbtn{
  background: var(--alt);
  border-color: var(--border);
}

.dropmenu{
  position:absolute;
  top: calc(100% + 8px);
  right:0;
  min-width:220px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow: var(--shadow);
  padding:8px;
  display:none;
  z-index:20;
}

.dropdown.open .dropmenu{ display:block; }

.dropmenu a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}
.dropmenu a:hover{ background: var(--accent-soft); }

@media (max-width: 900px){
  .dropmenu{
    right:auto;
    left:0;
    width:100%;
    min-width:0;
  }
}
 
  /* ============================
   Uniformisation page "Qui suis-je"
   (sans modifier le HTML)
   ============================ */

/* Zone d’accroche façon "hero" */
#accroche{
  padding:56px 0 34px;
  border-bottom:1px solid var(--border);
}

/* Contraindre la largeur + padding comme .container */
#accroche,
#qui-suis-je{
  padding-left:20px;
  padding-right:20px;
}

/* Largeur de lecture confortable (comme la hero) */
#accroche > h1,
#accroche > .baseline,
#qui-suis-je > h2,
#qui-suis-je > p{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

/* Typo cohérente avec l’accueil */
#accroche h1{
  font-size:clamp(30px, 4vw, 50px);
  margin:0 0 10px;
  letter-spacing:-0.6px;
}

/* "baseline" = même style que .lead */
.baseline{
  font-size:18px;
  color:var(--muted);
  margin:0 0 18px;
}

/* Section bio : spacing cohérent avec tes autres sections */
#qui-suis-je{
  padding-top:52px;
  padding-bottom:52px;
}

/* Les blocs "cartes" et la photo : largeur standard du site */
#qui-suis-je .grid-2,
#qui-suis-je .photo-bio{
  max-width:1120px;
  margin-left:auto;
  margin-right:auto;
}

/* Petit ajustement : éviter une photo trop "isolée" */
#qui-suis-je .photo-bio{
  margin-top:34px;
}
/* Qui suis-je — centrer les 2 blocs du bas sur la même largeur que le texte */
#qui-suis-je + .grid-2.top-gap{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  padding-left:20px;
  padding-right:20px;
}

/* Et la photo, pareil (elle vient juste après les deux cartes) */
#qui-suis-je + .grid-2.top-gap + .photo-bio{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  padding-left:20px;
  padding-right:20px;
}
/* NAV — aligner le bouton Consultations avec les autres liens */
.dropbtn{
  font-family:inherit;
  font-size:inherit;
  line-height:1;
  padding:10px 14px;        /* même padding que les liens */
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
}

/* Uniformiser la hauteur visuelle avec les <a> */
.nav a,
.dropbtn{
  min-height:40px;
  box-sizing:border-box;
}
.nav a,
.dropbtn{
  font-weight:400;
}
/* Offset ancres à cause du header sticky */
:root{
  --anchor-offset: 110px; /* ajuste si besoin (90-130) */
}

#adultes, #ados, #enfants{
  scroll-margin-top: var(--anchor-offset);
}

/* Sécurité : empêche juste le logo de se faire écraser, sans changer le desktop */
.brand-logo{
  flex-shrink: 0;
}


