/* =============================
   VARIABLES & RESET
   ============================= */
:root {
  --sage: #7a9e8e;
  --sage-light: #a8c4b8;
  --sage-pale: #e8f0ec;
  --cream: #f7f4ef;
  --warm-white: #faf9f6;
  --charcoal: #2a2a28;
  --stone: #5a5a56;
  --stone-light: #8a8a84;
  --gold: #c4a96a;
  --gold-light: #e8d9b8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(42,42,40,0.08);
  --shadow-lg: 0 20px 80px rgba(42,42,40,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--charcoal); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* TYPOGRAPHY */
.section-eyebrow { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.15; color: var(--charcoal); margin-bottom: 3rem; }
.section-title em { font-style: italic; color: var(--sage); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.8s var(--transition) forwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 2px; font-family: var(--font-body); font-size: 0.875rem; font-weight: 400; letter-spacing: 0.05em; cursor: pointer; transition: all var(--transition); white-space: nowrap; border: none; }
.btn--primary { background: var(--sage); color: white; border: 1.5px solid var(--sage); }
.btn--primary:hover { background: #6a9080; border-color: #6a9080; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(122,158,142,0.3); }
.btn--ghost { background: transparent; color: var(--charcoal); border: 1.5px solid rgba(42,42,40,0.25); }
.btn--ghost:hover { border-color: var(--charcoal); background: rgba(42,42,40,0.03); }
.btn--ghost-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn--lg { padding: 1rem 2.5rem; font-size: 0.9rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 500; color: var(--sage); border-bottom: 1px solid transparent; transition: border-color var(--transition), gap var(--transition); padding-bottom: 2px; }
.link-arrow:hover { border-color: var(--sage); gap: 0.7rem; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 9000; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 2.5rem; background: rgba(250,249,246,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(42,42,40,0.06); transition: padding var(--transition), box-shadow var(--transition); }
.nav.scrolled { padding: 0.9rem 2.5rem; box-shadow: var(--shadow); }
.nav__logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; letter-spacing: 0.02em; color: var(--charcoal); }
.nav__logo span { color: var(--sage); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.83rem; font-weight: 400; letter-spacing: 0.04em; color: var(--stone); transition: color var(--transition); position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--sage); transition: width var(--transition); }
.nav__links a:hover, .nav__links a.active { color: var(--charcoal); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__rdv { padding: 0.55rem 1.4rem !important; background: var(--sage) !important; color: white !important; border-radius: 2px; font-size: 0.8rem !important; letter-spacing: 0.06em !important; }
.nav__rdv:hover { background: #6a9080 !important; transform: translateY(-1px); }
.nav__rdv::after { display: none !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 9002; position: relative; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all var(--transition); border-radius: 2px; }
.nav__overlay { display: none; position: fixed; inset: 0; background: rgba(42,42,40,0.5); z-index: 8998; opacity: 0; transition: opacity 0.3s ease; }
.nav__overlay.open { display: block; opacity: 1; }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding-top: 5rem; overflow: hidden; position: relative; background: var(--cream); z-index: 1; }
.hero__grain { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; opacity: 0.5; }
.hero__content { padding: 4rem 4rem 4rem clamp(2rem, 6vw, 6rem); display: flex; flex-direction: column; gap: 1.5rem; }
.hero__eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.hero__title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.05; color: var(--charcoal); }
.hero__title em { font-style: italic; color: var(--sage); display: block; }
.hero__sub { font-size: 1rem; color: var(--stone); line-height: 1.7; font-weight: 300; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.hero__img-side { height: 100%; min-height: 100vh; overflow: hidden; }
.hero__img-side img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.8); }

/* INTRO */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding-top: 7rem; padding-bottom: 7rem; }
.intro__text { display: flex; flex-direction: column; gap: 1.2rem; }
.intro__text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.2; margin-bottom: 0.5rem; }
.intro__text h2 em { font-style: italic; color: var(--sage); }
.intro__text p { color: var(--stone); font-size: 0.975rem; line-height: 1.75; font-weight: 300; }
.intro__visual { position: relative; }
.intro__img-wrap { border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-lg); }
.intro__img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(0.85); transition: transform 0.6s ease; }
.intro__img-wrap:hover img { transform: scale(1.02); }
.intro__badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--charcoal); color: white; padding: 1.2rem 1.5rem; border-radius: 2px; min-width: 170px; }
.intro__badge-title { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; font-style: italic; color: var(--gold-light); line-height: 1.1; margin-bottom: 0.4rem; }
.intro__badge-sub { display: block; font-size: 0.7rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.65); line-height: 1.5; text-transform: uppercase; }

/* MOTIFS */
.motifs { background: var(--charcoal); padding: 7rem 0; color: white; }
.motifs .section-eyebrow { color: var(--sage-light); }
.motifs .section-title { color: white; }
.motifs .section-title em { color: var(--sage-light); }
.motifs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.motif-card { background: var(--charcoal); padding: 2.5rem 2rem; transition: background var(--transition); cursor: default; }
.motif-card:hover { background: #323230; }
.motif-card__icon { font-size: 1.8rem; color: var(--sage); margin-bottom: 1.2rem; line-height: 1; }
.motif-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: white; margin-bottom: 1rem; line-height: 1.2; }
.motif-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.motif-card li { font-size: 0.825rem; color: rgba(255,255,255,0.55); font-weight: 300; padding-left: 1rem; position: relative; line-height: 1.4; }
.motif-card li::before { content: '—'; position: absolute; left: 0; color: var(--sage); font-size: 0.7rem; }

/* APPROCHE */
.approche { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding-top: 7rem; padding-bottom: 7rem; }
.approche__visual { border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-lg); max-width: 380px; justify-self: center; }
.approche__visual img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(0.8); }
.approche__text { display: flex; flex-direction: column; gap: 1.5rem; }
.approche__text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.15; }
.approche__text h2 em { font-style: italic; color: var(--sage); }
.approche__pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar { padding: 1.5rem; background: var(--sage-pale); border-left: 3px solid var(--sage); border-radius: 0 2px 2px 0; }
.pillar h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem; }
.pillar p { font-size: 0.9rem; color: var(--stone); line-height: 1.7; font-weight: 300; }
.approche__quote { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; font-weight: 300; color: var(--stone); border-top: 1px solid rgba(42,42,40,0.1); padding-top: 1.5rem; line-height: 1.5; }
.approche__quote cite { display: block; font-size: 0.8rem; font-style: normal; font-family: var(--font-body); letter-spacing: 0.06em; color: var(--sage); margin-top: 0.6rem; font-weight: 400; }

/* PUBLIC */
.public { background: var(--cream); padding: 7rem 0; }
.public__row { display: flex; align-items: stretch; border: 1px solid rgba(42,42,40,0.1); border-radius: 2px; overflow: hidden; }
.public__item { flex: 1; padding: 2.5rem 2rem; background: white; transition: background var(--transition); }
.public__item:hover { background: var(--sage-pale); }
.public__num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--sage-light); line-height: 1; margin-bottom: 1rem; }
.public__item h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; margin-bottom: 0.6rem; }
.public__item p { font-size: 0.85rem; color: var(--stone); line-height: 1.65; font-weight: 300; }
.public__divider { width: 1px; background: rgba(42,42,40,0.1); flex-shrink: 0; }

/* CTA */
.cta { background: var(--sage); padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(255,255,255,0.08) 0%, transparent 70%); }
.cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: white; margin-bottom: 1rem; position: relative; }
.cta p { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.7; position: relative; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta .btn--primary { background: white; color: var(--sage); border-color: white; }
.cta .btn--primary:hover { background: var(--cream); border-color: var(--cream); }

/* FOOTER */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: white; margin-bottom: 0.3rem; }
.footer__role { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 0.4rem; }
.footer__addr { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__links a:hover { color: white; }
.footer__contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__contact a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__contact a:hover { color: var(--sage-light); }
.footer__ids { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; margin-top: 0.4rem; }
.footer__copy { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.25); padding-top: 2rem; letter-spacing: 0.05em; }

/* PAGE HEADER (pages intérieures) */
.page-header { padding: 9rem 0 5rem; background: var(--cream); position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(42,42,40,0.08); }
.page-header__inner { max-width: 700px; }
.page-header .section-eyebrow { margin-bottom: 0.75rem; }
.page-header h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; color: var(--charcoal); }
.page-header h1 em { font-style: italic; color: var(--sage); }
.page-header p { margin-top: 1.25rem; font-size: 1rem; color: var(--stone); font-weight: 300; line-height: 1.75; max-width: 560px; }

/* CONSULTATION */
.consult-body { padding: 6rem 0; }
.consult-body .container { display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; align-items: start; }
.consult-main { display: flex; flex-direction: column; gap: 2.5rem; }
.consult-main h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; }
.consult-main h2 em { font-style: italic; color: var(--sage); }
.consult-main p { color: var(--stone); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }
.consult-sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { background: var(--cream); border: 1px solid rgba(42,42,40,0.08); border-radius: 2px; padding: 1.75rem; }
.info-card h4 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.75rem; }
.info-card p, .info-card a { font-size: 0.875rem; color: var(--stone); line-height: 1.65; font-weight: 300; }
.info-card a { color: var(--sage); }
.info-card a:hover { text-decoration: underline; }
.quote-block { background: var(--charcoal); padding: 2rem; border-radius: 2px; }
.quote-block blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; font-weight: 300; color: white; line-height: 1.5; }
.quote-block cite { display: block; font-style: normal; font-size: 0.75rem; letter-spacing: 0.08em; color: var(--sage-light); margin-top: 0.75rem; font-family: var(--font-body); }

/* INFOS PRATIQUES */
.infos-grid { padding: 6rem 0; }
.infos-grid .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.info-block { padding: 2.5rem; border: 1px solid rgba(42,42,40,0.08); border-radius: 2px; background: white; }
.info-block h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(42,42,40,0.08); }
.info-block p, .info-block li { font-size: 0.9rem; color: var(--stone); line-height: 1.75; font-weight: 300; }
.info-block ul { display: flex; flex-direction: column; gap: 0.5rem; }
.info-block li { padding-left: 1rem; position: relative; }
.info-block li::before { content: '—'; position: absolute; left: 0; color: var(--sage); font-size: 0.7rem; }
.tarif-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid rgba(42,42,40,0.06); }
.tarif-row:last-of-type { border-bottom: none; }
.tarif-row span { font-size: 0.875rem; color: var(--stone); font-weight: 300; }
.tarif-row strong { font-size: 1rem; color: var(--charcoal); font-weight: 500; }

/* QUI SUIS-JE */
.qui-content { padding: 6rem 0; }
.qui-content .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.qui-text { display: flex; flex-direction: column; gap: 2rem; }
.qui-text h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; }
.qui-text h2 em { font-style: italic; color: var(--sage); }
.qui-text p { color: var(--stone); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }
.formation-list { display: flex; flex-direction: column; gap: 1rem; }
.formation-item { display: flex; gap: 1rem; align-items: flex-start; }
.formation-year { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--sage); min-width: 60px; padding-top: 2px; }
.formation-desc { font-size: 0.875rem; color: var(--stone); line-height: 1.6; font-weight: 300; }

/* CONTACT */
.contact-layout { padding: 6rem 0; }
.contact-layout .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; max-width: 1400px; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; }
.contact-info h2 em { font-style: italic; color: var(--sage); }
.contact-info p { color: var(--stone); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }
.contact-method { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: var(--cream); border: 1px solid rgba(42,42,40,0.06); border-radius: 2px; transition: all var(--transition); }
.contact-link:hover { background: var(--sage-pale); border-color: var(--sage-light); transform: translateX(4px); }
.contact-link__icon { font-size: 1.2rem; }
.contact-link__text { display: flex; flex-direction: column; }
.contact-link__label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); font-weight: 500; }
.contact-link__value { font-size: 0.9rem; color: var(--charcoal); font-weight: 400; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--charcoal); }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: var(--stone); text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem 1rem; background: white; border: 1px solid rgba(42,42,40,0.15); border-radius: 2px; font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); transition: border-color var(--transition), box-shadow var(--transition); appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,158,142,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--stone-light); font-weight: 300; line-height: 1.5; }
.form-success { display: none; padding: 1rem 1.25rem; background: var(--sage-pale); border: 1px solid var(--sage-light); border-radius: 2px; font-size: 0.875rem; color: var(--sage); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .motifs__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__img-side { display: none; }
  .hero__content { padding: 7rem 2rem 4rem; }
  .approche { grid-template-columns: 1fr; gap: 3rem; }
  .approche__visual { order: -1; }
  .approche__visual img { aspect-ratio: 16/9; }
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .intro__badge { display: none; }
  .qui-content .container { grid-template-columns: 1fr; gap: 3rem; }
  .consult-body .container { grid-template-columns: 1fr; gap: 3rem; }
  .consult-sidebar { position: static; }
  .infos-grid .container { grid-template-columns: 1fr; }
  .contact-layout .container { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {

  /* Burger visible */
  .nav__burger { display: flex; }
  .nav { padding: 1rem 1.5rem; }

  /* Menu plein écran */
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 2rem;
    z-index: 8999;
    overflow: hidden;
    animation: none;
  }
  .nav__links.open {
    display: flex;
    animation: menuFadeIn 0.35s ease forwards;
  }
  @keyframes menuFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Liens centrés et grands */
  .nav__links a {
    font-family: var(--font-display) !important;
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.7) !important;
    padding: 0.6rem 0 !important;
    text-align: center;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, transform 0.2s ease !important;
    display: block;
    width: 100%;
  }
  .nav__links a:hover,
  .nav__links a.active {
    color: white !important;
    transform: scale(1.04);
  }
  .nav__links a.active {
    color: var(--sage-light) !important;
    font-style: italic;
  }
  .nav__links a::after { display: none !important; }

  /* Bouton RDV */
  .nav__rdv {
    margin-top: 2rem !important;
    padding: 0.9rem 2.5rem !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    border-radius: 2px;
    display: inline-block !important;
    width: auto !important;
    border-bottom: none !important;
  }
  .nav__rdv:hover { transform: translateY(-2px) !important; }

  /* Ligne déco entre liens */
  .nav__links a:not(.nav__rdv) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links a:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

  /* Hero mobile */
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 5rem; }
  .hero__img-side { display: none; }
  .hero__content { padding: 3rem 1.5rem 3rem; }
  .hero__title { font-size: 2.8rem; }

  /* Reste */
  .public__row { flex-direction: column; }
  .public__divider { display: none; }
  .motifs__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta__actions { flex-direction: column; align-items: center; }
}

/* =============================
   SECTION INTÉGRATIVE
   ============================= */
.integratif {
  background: var(--warm-white);
  padding: 7rem 0;
  border-top: 1px solid rgba(42,42,40,0.06);
  border-bottom: 1px solid rgba(42,42,40,0.06);
}
.integratif__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.integratif__lead { display: flex; flex-direction: column; gap: 1.25rem; }
.integratif__lead h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
}
.integratif__lead h2 em { font-style: italic; color: var(--sage); }
.integratif__lead p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.8;
  font-weight: 300;
}
.integratif__steps { display: flex; flex-direction: column; gap: 0; }
.istep {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(42,42,40,0.07);
  transition: background var(--transition);
}
.istep:first-child { border-top: 1px solid rgba(42,42,40,0.07); }
.istep__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--sage-light);
  min-width: 3rem;
  line-height: 1;
  padding-top: 2px;
}
.istep h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.istep p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.65;
  font-weight: 300;
}

/* Tags d'approche (badge visuel) */
.approche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.approche-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.approche-tag--h  { background: var(--sage-pale); color: var(--sage); border: 1px solid var(--sage-light); }
.approche-tag--p  { background: #f0ece8; color: #8a6e5a; border: 1px solid #d4c0b0; }
.approche-tag--t  { background: #e8ecf5; color: #5a6a8a; border: 1px solid #b0bcd4; }
.approche-tag--i  { background: var(--charcoal); color: white; border: 1px solid var(--charcoal); }

@media (max-width: 1024px) {
  .integratif__inner { grid-template-columns: 1fr; gap: 3rem; }
}

  
/* LOGO IMAGE */
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
.nav__logo-img:hover { opacity: 0.8; }
.nav.scrolled .nav__logo-img { height: 38px; }

.footer__logo { height: 52px; width: auto; object-fit: contain; display: block; margin-bottom: 0.75rem; background: white; padding: 6px 12px; border-radius: 4px; }
/* =============================
   AMÉLIORATIONS FINALES
   ============================= */

/* Meilleure lisibilité des paragraphes */
p { max-width: 70ch; }
.motif-card p, .footer p, .info-card p, .tarif-row span { max-width: none; }

/* Smooth scroll natif */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Focus visible pour accessibilité */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Bouton Doctolib flottant — masquer sur très petit écran si trop encombrant */
@media (max-width: 380px) {
  [style*="position:fixed"][style*="bottom:24px"] span { display: none; }
}

/* Meilleure gestion de l'espace sur tablette */
@media (max-width: 900px) {
  .motifs__grid { grid-template-columns: repeat(2, 1fr); }
  .public__row { flex-wrap: wrap; }
  .public__item { min-width: 200px; }
}

/* Page header responsive */
@media (max-width: 768px) {
  .page-header { padding: 7rem 0 3rem; }
  .page-header h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .intro { padding-top: 4rem; padding-bottom: 4rem; }
  .motifs { padding: 4rem 0; }
  .approche { padding-top: 4rem; padding-bottom: 4rem; }
  .public { padding: 4rem 0; }
  .cta { padding: 4rem 0; }
  .infos-grid { padding: 3rem 0; }
  .consult-body { padding: 3rem 0; }
  .qui-content { padding: 3rem 0; }
  .contact-layout { padding: 3rem 0; }
  .section-title { margin-bottom: 2rem; }
  .btn--lg { padding: 0.85rem 1.75rem; font-size: 0.85rem; }
}

/* =============================
   COMPTEURS ANIMÉS
   ============================= */
.stats {
  background: var(--sage);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: white;
  line-height: 1;
  display: inline-block;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-left: 0.2rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-top: 0.6rem;
  text-transform: uppercase;
  max-width: none;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* =============================
   FAQ ACCORDÉON
   ============================= */
.faq {
  background: var(--cream);
  padding: 7rem 0;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid rgba(42,42,40,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.faq__item {
  border-bottom: 1px solid rgba(42,42,40,0.08);
  background: white;
  transition: background var(--transition);
}
.faq__item:last-child { border-bottom: none; }
.faq__item.open { background: var(--sage-pale); }

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
}
.faq__question:hover { color: var(--sage); }
.faq__item.open .faq__question { color: var(--sage); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 1.75rem;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 1.4rem;
  max-width: none;
}
.faq__item.open .faq__answer {
  max-height: 300px;
  padding: 0 1.75rem;
}

@media (max-width: 768px) {
  .stats__grid { flex-wrap: wrap; gap: 2rem 0; }
  .stat-item { flex: 0 0 50%; }
  .stat-divider { display: none; }
  .faq__question { font-size: 0.875rem; padding: 1.2rem 1.25rem; }
  .faq__answer { padding: 0 1.25rem; }
  .faq__item.open .faq__answer { padding: 0 1.25rem; }
}

/* =============================
   TÉMOIGNAGES
   ============================= */
.temoignages {
  background: var(--warm-white);
  padding: 7rem 0;
}
.temoignages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.temo-card {
  background: white;
  border: 1px solid rgba(42,42,40,0.08);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.temo-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage-pale);
  font-weight: 300;
}
.temo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.temo-stars {
  color: #f4b942;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.temo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  flex: 1;
}
.temo-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(42,42,40,0.07);
}
.temo-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.temo-source {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.temo-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--stone-light);
  font-style: italic;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .temoignages__grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .temoignages__grid { grid-template-columns: repeat(2, 1fr); }
  .temo-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* Note globale */
.temo-global {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--sage-pale);
  border-radius: 2px;
  border: 1px solid var(--sage-light);
  max-width: 480px;
}
.temo-global__score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}
.temo-global__score span { font-size: 1.2rem; color: var(--stone-light); }
.temo-global__stars { font-size: 1.3rem; color: #f4b942; display: block; }
.temo-global__label { font-size: 0.75rem; color: var(--stone); font-weight: 300; line-height: 1.4; max-width: none; }

/* Avis masqués */
.temo-hidden { display: none; }
.temo-hidden.temo-visible { display: flex; }

/* Bouton voir plus */
.temo-toggle {
  text-align: center;
  margin-top: 2rem;
}
.temo-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1.5px solid rgba(42,42,40,0.2);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.temo-toggle__btn:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-pale);
}
.temo-toggle__icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.temo-toggle__icon.rotated { transform: rotate(180deg); }

/* =============================
   CONTACT PAGE RESPONSIVE
   ============================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
