/* =========================================================
   Didier Schindler — Praticien en psychothérapie et superviseur
   Feuille de style principale
   Palette dérivée du logo DS (#585B4A) + blanc
   ========================================================= */

:root {
  /* Palette (dérivée du vert du logo) */
  --ink: #21221B;          /* texte principal, quasi-noir chaud */
  --green-900: #2E3026;    /* fond footer / sections sombres */
  --green-800: #3A3C30;
  --green-700: #4C4F40;
  --green-600: #585B4A;    /* vert de marque (logo) */
  --green-500: #6B6E5A;    /* hover / accents */
  --green-300: #A0A48E;    /* texte secondaire sur clair */
  --green-200: #C9CCBE;    /* bordures */
  --green-100: #E4E6DE;    /* fonds de section alternés */
  --green-50:  #F3F4EF;    /* fond très léger */
  --white: #FFFFFF;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(33, 34, 27, 0.08);
  --shadow-md: 0 8px 30px rgba(33, 34, 27, 0.10);
  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, iframe, svg, video { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
html, body { overflow-x: hidden; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: var(--green-900); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Focus visibility (accessibilité) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-600);
  color: var(--white);
  padding: .8em 1.2em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.section--alt { background: var(--green-50); }
.section--dark { background: var(--green-900); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-500);
  font-weight: 600;
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--green-200); }
.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 1.15rem; color: var(--green-700); }
.section--dark .lede { color: var(--green-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  max-width: 100%;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-600); color: var(--white); }
.btn-primary:hover { background: var(--green-900); }
.btn-outline { background: transparent; color: var(--green-600); border-color: var(--green-600); }
.btn-outline:hover { background: var(--green-600); color: var(--white); }
.section--dark .btn-outline { color: var(--white); border-color: var(--white); }
.section--dark .btn-outline:hover { background: var(--white); color: var(--green-900); }
.btn-block { width: 100%; justify-content: center; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--green-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-900);
}
.brand img { height: 46px; width: auto; flex-shrink: 0; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text small { font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--green-500); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 400px) {
  .brand img { height: 38px; }
  .brand-text small { display: none; }
}

.nav { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .92rem;
  color: var(--green-800);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--green-100); color: var(--green-900); }
.nav a.nav-contact {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--green-600);
  color: var(--white);
  font-weight: 600;
}
.nav a.nav-contact:hover { background: var(--green-900); color: var(--white); }
.nav a.nav-contact[aria-current="page"] { background: var(--green-900); color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--green-900);
}
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav { position: fixed; inset: 86px 0 0 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); overflow-y: auto; }
  .nav a { padding: 16px 14px; font-size: 1.08rem; border-bottom: 1px solid var(--green-100); border-radius: 0; }
  .nav a.nav-contact { margin-left: 0; margin-top: 12px; text-align: center; border-radius: var(--radius-md); border-bottom: none; }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-toggle { display: inline-flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  padding: 84px 0 96px;
}
.hero-grid > * { min-width: 0; }
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-200);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero .accent { color: #C9CCBE; font-style: italic; }
.hero p.lede { color: var(--green-100); max-width: 46ch; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-quote {
  position: absolute;
  left: -12px;
  bottom: -18px;
  max-width: 300px;
  background: var(--white);
  color: var(--green-900);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: .95rem;
  font-style: italic;
}
.hero-quote cite { display: block; margin-top: 8px; font-family: var(--font-body); font-style: normal; font-size: .78rem; font-weight: 600; color: var(--green-500); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 48px 0 64px; }
  .hero-figure { max-width: 380px; margin: 0 auto; }
  .hero-quote { position: static; margin-top: 24px; max-width: none; }
}

/* =========================================================
   CARDS
   ========================================================= */
.grid { display: grid; gap: 28px; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-600);
  margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--green-700); font-size: .96rem; margin-bottom: 0; }
.card .card-link { display: inline-block; margin-top: 14px; font-weight: 600; font-size: .9rem; color: var(--green-600); }
.card .card-link:hover { text-decoration: underline; }

/* =========================================================
   PAGE HERO (pages intérieures)
   ========================================================= */
.page-hero {
  background: var(--green-50);
  border-bottom: 1px solid var(--green-100);
  padding: 56px 0 48px;
}
.breadcrumb { font-size: .85rem; color: var(--green-500); margin-bottom: 18px; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 22ch; }
.page-hero .lede { max-width: 60ch; }

/* =========================================================
   CONTENU / TEXTE LONG
   ========================================================= */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2em; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--green-800); }
.prose ul { margin: 1em 0; }
.prose li { position: relative; padding-left: 26px; margin-bottom: .6em; }
.prose li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
}

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green-900);
  border-left: 3px solid var(--green-500);
  padding: 4px 0 4px 26px;
  margin: 2.2em 0;
  line-height: 1.5;
}
.pullquote cite { display: block; margin-top: 10px; font-family: var(--font-body); font-style: normal; font-size: .85rem; font-weight: 600; color: var(--green-500); }

/* =========================================================
   BIO / PORTRAIT
   ========================================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.bio-grid > * { min-width: 0; }
.bio-media { position: sticky; top: 110px; }
.bio-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  max-width: 280px;
}
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; }
.bio-caption { margin-top: 18px; font-size: .9rem; color: var(--green-500); max-width: 280px; }
@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-media { position: static; display: flex; flex-direction: column; align-items: center; text-align: center; }
}

/* =========================================================
   PRESTATIONS (services)
   ========================================================= */
.service {
  border-top: 1px solid var(--green-100);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
}
.service > * { min-width: 0; }
.service:first-of-type { border-top: none; }
.service h3 { margin-bottom: 8px; font-size: 1.2rem; }
.service p { color: var(--green-700); margin-bottom: 0; }
.service-tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
}
@media (max-width: 700px) { .service { grid-template-columns: 1fr; gap: 8px; } }

.pricing-box {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 22px;
}
.pricing-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .label { font-family: var(--font-display); font-size: 1.05rem; }
.pricing-row .price { font-size: 1.3rem; font-weight: 700; color: #E4E6DE; }
.pricing-note { font-size: .85rem; color: var(--green-200); }

/* =========================================================
   PROGRAMME 2026 (agenda)
   ========================================================= */
.programme-block {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
}
.programme-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.programme-head h2 { margin-bottom: 4px; font-size: 1.4rem; }
.programme-meta { color: var(--green-500); font-size: .92rem; }
.programme-price { flex: none; text-align: right; }
.programme-price .amount { font-family: var(--font-display); font-size: 1.6rem; color: var(--green-600); font-weight: 700; }
.programme-price .unit { display: block; font-size: .78rem; color: var(--green-500); }

.date-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.date-chip {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-800);
  font-weight: 600;
  font-size: .88rem;
  padding: 9px 16px;
  border-radius: 999px;
}
.practical-list { display: grid; gap: 10px; margin-top: 18px; font-size: .93rem; color: var(--green-700); }
.practical-list li { display: flex; gap: 10px; align-items: flex-start; }
.practical-list svg { flex: none; margin-top: 3px; color: var(--green-500); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: 22px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ico {
  width: 46px; height: 46px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-100); color: var(--green-600);
  border-radius: 12px;
}
.contact-item h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--green-700); font-size: .96rem; }
.contact-item a:hover { color: var(--green-600); text-decoration: underline; }

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--green-100);
  aspect-ratio: 16/10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; gap: 8px; margin-bottom: 20px; min-width: 0; }
.form-row label { font-weight: 600; font-size: .9rem; color: var(--green-900); }
.form-row .req { color: #8a5a3f; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(88,91,74,.12);
  outline: none;
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-two > * { min-width: 0; }
@media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--green-500); margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  display: none;
}
.form-status.is-success { display: block; background: #E6EFE2; color: #345130; border: 1px solid #BFDCB6; }
.form-status.is-error { display: block; background: #F7E7E2; color: #7A2E1B; border: 1px solid #E9BFAF; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: var(--green-100); margin-bottom: 0; }
.cta-band .btn-primary { background: var(--white); color: var(--green-900); }
.cta-band .btn-primary:hover { background: var(--green-900); color: var(--white); }
@media (max-width: 700px) { .cta-band { padding: 36px 28px; text-align: center; justify-content: center; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--green-900); color: var(--green-100); }
.footer-top { padding: 72px 0 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-top > * { min-width: 0; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 42px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand span { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; }
.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--green-100); font-size: .94rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-desc { max-width: 34ch; font-size: .92rem; color: var(--green-200); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); transition: background var(--transition);
}
.footer-social a:hover { background: var(--green-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: var(--green-300);
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-grid > * { min-width: 0; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-media { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--green-500); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { color: var(--green-700); font-size: .95rem; margin-bottom: 16px; }
.blog-card .card-link { margin-top: auto; }

.article-header { max-width: 760px; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin: 32px 0 44px; box-shadow: var(--shadow-md); }
.article-cover img { width: 100%; display: block; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; font-size: .88rem; color: var(--green-500); font-weight: 600; margin-top: 18px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.author-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 48px 0;
}
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; }
.author-box h4 { margin: 0 0 4px; font-size: 1rem; }
.author-box p { margin: 0; font-size: .9rem; color: var(--green-700); }
.author-box a { color: var(--green-600); font-weight: 600; }

/* =========================================================
   UTILITAIRES
   ========================================================= */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
