:root{
  --text:#111;
  --muted:#666;
  --accent:#ff7a2f;      /* orange du bouton principal */
  --border:#eaeaea;
  --bg:#ffffff;
  --card:#fafafa;
  --max:720px;
}

/* Reset de base */
*{box-sizing:border-box}
html,body{
  margin:0; padding:0;
  background:var(--bg); color:var(--text);
  font-family:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  scroll-behavior:smooth;
}

/* Layout centré */
.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 18px;
  text-align:center;
}

/* Portrait rond */
img.portrait{
  width:116px; height:116px; object-fit:cover;
  border-radius:50%;
  display:block; margin:12px auto 14px;
  border:3px solid var(--border);
}

/* Titres / textes */
h1{
  font-size:clamp(24px,5.5vw,40px);
  line-height:1.12;
  margin:6px 0 8px;
}

h1, h2 {
  margin: 0px auto 20px;

}

.subtitle{
	max-width: 70vw ;
	margin: 2em auto;
}

p.lead{
  color:var(--muted);
  margin:0 auto 40px;
  max-width:48ch;
  line-height: 1.5em;
}

/* Liste compacte façon Notion */
.list{
  color:var(--muted);

  display:inline-block;
  text-align:center;              /* centré */
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px 16px;
  margin:12px 0 18px;
  max-width:70vw;
}

.list ul{
  margin:0;
  padding:0;                      /* plus d’indent */
  list-style:none;                /* supprime les puces */
}

.list li{
  margin:10px 0;
  line-height:1.4;
}

/* Boutons */
.buttons{
  display:flex; justify-content:center; gap:10px;
  flex-wrap:wrap; margin:2em auto;
}
.btn{
  appearance:none; border:0; border-radius:10px;
  padding:12px 16px; font-weight:700; cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease;
  text-decoration:none; display:inline-flex; align-items:center; gap:8px;
}
.btn.primary{
  background:var(--accent); color:#fff;
  box-shadow:0 6px 18px rgba(255,122,47,.25);
}
.btn.primary:hover{ transform:translateY(-1px) }
.btn.wa{
  background:#25D366; color:#0b3d1f;
}
.btn.wa:hover{ transform:translateY(-1px) }

.note{ color:var(--muted); font-size:14px; margin-top:6px }

/* Bloc Calendly */
.cal-wrap{
  max-width:var(--max);
  min-height:1000px;
  margin:0 auto; padding:10px 18px 28px;
  text-align:center;
}
iframe{
  width:100%;
  height:980px;               /* ajustable (1000–1100 pour moins de scroll interne mobile) */
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}

/* Pied */
footer{
  color:#888;
  text-align:center;
  padding:22px 0 28px;
  font-size:14px;
  border-top:1px solid var(--border);
}

/* Mobile */
@media (max-width:520px){
  .buttons{ flex-direction:column }
  .btn{ justify-content:center }
  iframe{ height:1000px }
}