/* Coquille thérapeutes — design éditorial mené par l'image.
   Serif éditorial (Fraunces) + asymétrie + vraie photo vedette.
   Couleurs injectées par le générateur. */
:root {
  --fond: #f7f6f1;
  --encre: #22302c;
  --accent: #3e6b5a;
  --accent-doux: #dde8e0;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--encre); background: var(--fond); line-height: 1.65; font-size: 17px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: .75rem; }
h3 { font-size: 1.15rem; margin-bottom: .4rem; }
p { margin-bottom: 1rem; max-width: 62ch; }
a { color: var(--accent); }
img { max-width: 100%; display: block; }

.conteneur { width: min(1140px, 92vw); margin-inline: auto; }
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }

/* En-tête */
header.site { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--fond) 92%, white); backdrop-filter: blur(6px); border-bottom: 1px solid var(--accent-doux); }
header.site .conteneur { display: flex; align-items: center; justify-content: space-between; padding-block: .8rem; }
.logo { font-family: var(--serif); font-size: 1.35rem; color: var(--encre); text-decoration: none; }
nav.principale a { color: var(--encre); text-decoration: none; margin-left: 1.4rem; font-size: .95rem; }
nav.principale a:hover { color: var(--accent); }

/* Héro asymétrique : texte 5 colonnes / photo 7 colonnes */
.hero { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero .photo { border-radius: 18px 90px 18px 18px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--accent-doux); }
.hero .photo img { width: 100%; height: 100%; object-fit: cover; }
.surtitre { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: var(--accent); margin-bottom: .9rem; }

/* Boutons */
.bouton { display: inline-block; background: var(--accent); color: #fff; padding: .85rem 1.7rem; border-radius: 999px; text-decoration: none; font-weight: 600; }
.bouton.secondaire { background: transparent; color: var(--encre); border: 1.5px solid var(--encre); margin-left: .6rem; }

/* Bandes et cartes discrètes (jamais une grille uniforme polie) */
.bande { background: var(--accent-doux); }
.deux-colonnes { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.liste-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.service { padding: 1.4rem 1.5rem; border-left: 3px solid var(--accent); background: color-mix(in srgb, var(--fond) 70%, white); border-radius: 0 12px 12px 0; }
.service a { text-decoration: none; font-weight: 600; }

/* Avis */
.avis { font-family: var(--serif); font-size: 1.25rem; font-style: italic; max-width: 46ch; }
.etoiles { color: var(--accent); letter-spacing: .2em; }

/* FAQ */
details { border-bottom: 1px solid var(--accent-doux); padding: .9rem 0; max-width: 70ch; }
summary { font-weight: 600; cursor: pointer; }

/* Pied de page */
footer.site { background: var(--encre); color: var(--fond); padding: 3rem 0 2rem; font-size: .95rem; }
footer.site a { color: var(--fond); }
.nap { font-style: normal; line-height: 1.9; }
.mention-legale { opacity: .75; font-size: .85rem; margin-top: 1.5rem; max-width: none; }

/* Mobile — valider à 320 / 360 / 375 / 390 / 414 px */
@media (max-width: 780px) {
  .hero, .deux-colonnes { grid-template-columns: 1fr; }
  .hero .photo { order: -1; border-radius: 14px 50px 14px 14px; }
  nav.principale { display: none; }
  .bouton.secondaire { margin-left: 0; margin-top: .6rem; }
}
