/* =========================================================
   Se Diriger · Isabelle Olivrie · feuille de style partagée
   (pages annexes, dérivée de landing-v4, DA piste 1 validée)
   ========================================================= */

:root {
  --cream: #FFFFFF;
  --cream-deep: #F2EADB;
  --terracotta: #DD6B30;
  --terracotta-deep: #B85423;
  --sage: #93A485;
  --sage-deep: #6E8068;
  --wheat: #D9B97A;
  --ink: #2A2521;
  --ink-soft: #5C544C;
  --paper: #FFFDF8;
  --tint-terra: #FBEDE4;
  --tint-sage: #ECF1E6;
  --tint-wheat: #F7EFDD;
  --r-sm: 14px;
  --r: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(42, 37, 33, 0.06);
  --shadow-card: 0 16px 44px rgba(42, 37, 33, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'kern' 1, 'liga' 1;
}
body { min-height: 100dvh; display: flex; flex-direction: column; }
/* Pas de rebond d'overscroll (choix Julien) : la page s'arrête net, plus de bande de couleur parasite */
html { overscroll-behavior: none; }
html { background-color: var(--paper); }
main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* overflow-x sur html seulement : body { overflow } casserait le header sticky sur mobile */
@media (max-width: 600px) { html { overflow-x: hidden; } }

/* ===== Animations scroll ===== */
body.js-animated .animate-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
body.js-animated .animate-in.is-visible { opacity: 1; transform: none; }
/* Variantes de reveal (richesse au scroll, sans débordement horizontal) */
body.js-animated .animate-in.zoom-in { transform: scale(0.93); }
body.js-animated .animate-in.rise-lg { transform: translateY(46px); }
body.js-animated .animate-in.zoom-in.is-visible,
body.js-animated .animate-in.rise-lg.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.js-animated .animate-in, body.js-animated .animate-in.is-visible { opacity: 1; transform: none; transition: none; }
}

/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid rgba(221,107,48,.45);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 125px; height: 125px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'EB Garamond', serif; font-style: italic; font-weight: 500; font-size: 30px; color: var(--ink); letter-spacing: -.3px; line-height: 1; }
.brand-tagline { font-size: 15.5px; color: var(--terracotta); letter-spacing: .08em; text-transform: uppercase; margin-top: 6px; font-weight: 400; }
.nav-links { display: flex; gap: 22px; align-items: center; list-style: none; flex: 1; justify-content: center; }
.nav-links a { font-size: 15.5px; color: var(--ink); font-weight: 400; letter-spacing: .07em; white-space: nowrap; text-transform: uppercase; transition: color .2s ease; position: relative; }
.nav-links a:hover { color: var(--terracotta); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--terracotta); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; background: var(--terracotta); color: var(--paper); border-radius: var(--r-pill); font-size: 14.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease; white-space: nowrap; }
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta .cta-short { display: none; }

/* ===== Burger menu mobile ===== */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: none; border: none; cursor: pointer; flex-shrink: 0; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; margin: 0 auto; transition: transform .25s ease, opacity .2s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Page hero (en-tête de page annexe) ===== */
.page-hero { padding: 76px 32px 30px; }
.page-hero-inner { max-width: 880px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; background: var(--terracotta); color: #fff; font-size: 14.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 9px 16px; border-radius: 8px; margin-bottom: 36px; transition: transform .2s ease, filter .2s ease; }
.back-link:hover { color: #fff; }
.page-hero .eyebrow { display: flex; }
.back-link span { display: inline-block; transition: transform .2s ease; }
.back-link:hover span { transform: translateX(-3px); }
.eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: 18.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 24px; }
.eyebrow::before { content: ""; width: 38px; height: 2px; background: currentColor; }
.page-title { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 46px; line-height: 1.15; letter-spacing: -.3px; color: var(--ink); }
.page-title .it { font-style: italic; color: var(--terracotta); }
.page-lead { font-size: 21px; line-height: 1.65; color: var(--ink-soft); max-width: 720px; margin-top: 22px; }

/* ===== Sections ===== */
.sec { padding: 56px 32px; }
.sec-inner { max-width: 880px; margin: 0 auto; }
.sec--wheat { background: var(--cream-deep); }
.sec--dark { background: var(--terracotta-deep); color: var(--paper); }
.sec--dark .eyebrow, .sec--dark .sec-h2 { color: var(--paper); }
.sec-h2 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 32px; line-height: 1.2; color: var(--ink); margin-bottom: 22px; }
.sec-h2 .it { font-style: italic; color: var(--terracotta); }

/* En-tête des sections formulaire/RDV (mêmes classes et style que la landing) */
.sec-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: 18.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--terracotta); margin-bottom: 30px; }
.sec-eyebrow::before { content: ""; width: 38px; height: 2px; background: currentColor; }
.sec-title { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 46px; line-height: 1.2; letter-spacing: -.3px; color: var(--ink); margin-bottom: 26px; }
.sec-title .it { font-style: italic; color: var(--terracotta); }
.sec-lead { font-size: 21px; line-height: 1.65; color: var(--ink-soft); max-width: 760px; }
.sec-lead + .sec-lead { margin-top: 18px; }
.sec--dark .sec-eyebrow, .sec--dark .sec-title { color: var(--paper); }
.sec--dark .sec-title .it { color: var(--paper); }

/* Leur avis compte */
.avis-inner { text-align: center; }
.avis-inner .sec-eyebrow { justify-content: center; }
.avis-inner .sec-lead { margin: 0 auto; max-width: 660px; }
.avis-cta { margin-top: 72px; }
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: 42px auto 0; max-width: 980px; text-align: left; }
.avis-card { background: var(--paper); border: 1px solid rgba(42,37,33,.08); border-radius: 18px; padding: 28px 26px; box-shadow: 0 10px 30px rgba(42,37,33,.05); }
.avis-card p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); font-style: italic; margin: 0 0 16px; }
.avis-card .avis-name { font-family: 'EB Garamond', serif; font-style: italic; font-size: 19px; color: var(--terracotta); }
.sec--dark .sec-lead { color: rgba(255,253,248,.85); }

/* ===== Prose (articles me-decouvrir / ma-vision) ===== */
.prose p { font-size: 20px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 20px; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose h3 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 26px; color: var(--ink); margin: 38px 0 16px; }
.prose ul { list-style: none; margin: 8px 0 24px; }
.prose li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 20px; line-height: 1.6; color: var(--ink-soft); }
.prose li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--terracotta); font-weight: 600; }
.prose .pullquote { font-family: 'EB Garamond', serif; font-style: italic; font-size: 30px; line-height: 1.36; color: var(--ink); margin: 6px 0 36px; padding-left: 26px; border-left: 3px solid var(--terracotta); }
/* Ma posture : blocs de texte plus aérés */
.prose--airy p { margin-bottom: 30px; }
.prose--airy ul { margin: 16px 0 32px; }
.prose--airy li { margin-bottom: 18px; }
.prose--airy h3 { margin-top: 54px; }
.prose--airy .note-card { margin-top: 16px; }
/* Ma posture : points de vision avec icônes (style cartes du site) */
.vision-point { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 30px; }
.vision-point .vp-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--tint-terra); color: var(--terracotta); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.vision-point .vp-ico svg { width: 23px; height: 23px; }
.prose--airy .vision-point p { margin: 0; }
.pullquote .src { display: block; margin-top: 14px; font-family: 'Hanken Grotesk', sans-serif; font-style: normal; font-size: 15.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }

/* Encart doux (supervision, limites, NB) */
.note-card { background: var(--tint-sage); border-radius: var(--r); padding: 26px 28px; margin: 8px 0 24px; }
.note-card h4 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.note-card p { font-size: 20px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ===== Timeline méthode HARMONIE (vertical) ===== */
.harmonie-list { max-width: 760px; margin: 8px auto 0; }
.h-step { position: relative; display: grid; grid-template-columns: 64px 1fr; column-gap: 26px; padding-bottom: 30px; }
.h-step::before { content: ""; position: absolute; left: 31px; top: 64px; bottom: 0; width: 2px; background: rgba(221,107,48,.25); }
.h-step:last-child::before { display: none; }
.h-letter {
  width: 64px; height: 64px; border-radius: 50%; background: var(--terracotta); color: var(--paper);
  font-family: 'EB Garamond', serif; font-style: italic; font-size: 30px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(221,107,48,.34); position: relative; z-index: 1;
}
.h-letter.is-bonus { background: var(--cream); border: 2px solid var(--terracotta); color: var(--terracotta); }
.h-body { padding-top: 8px; }
.h-body h3 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 23px; color: var(--ink); margin-bottom: 6px; }
.sec--dark .h-body h3 { color: var(--paper); }
.h-body p { font-size: 20.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.sec--dark .h-body p { color: rgba(255,253,248,.85); }
.bonus-label { display: inline-flex; align-items: center; gap: 14px; margin: 14px 0 24px; font-size: 15.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--sage-deep); }
.bonus-label::before { content: ""; width: 40px; height: 2px; background: var(--sage); }

/* ===== Cartes tarifs / accompagnements ===== */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin: 0 auto; }
.price-card {
  background: var(--cream); border-radius: var(--r);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-soft);
  transition: transform .3s ease; position: relative;
}
.price-card:hover,
body.js-animated .price-card.animate-in.is-visible:hover { transform: translateY(-4px); }
.price-card.span-2 { grid-column: 1 / -1; }
.price-card.featured { background: var(--terracotta); border-color: transparent; }
.price-card.featured .pc-eyebrow { color: var(--wheat); }
.price-card.featured .pc-name, .price-card.featured .pc-name em { color: var(--paper); }
.price-card.featured .pc-desc, .price-card.featured .pc-list li { color: rgba(255,253,248,.88); }
.price-card.featured .pc-list li::before { color: var(--wheat); }
.price-card.featured .pc-price { color: var(--paper); }
.price-card.featured .pc-price span { color: rgba(255,253,248,.75); }
.price-card--green { background: var(--tint-sage); border-color: transparent; }
.pc-ico { width: 54px; height: 54px; border-radius: 50%; background: var(--tint-terra); display: inline-flex; align-items: center; justify-content: center; color: var(--terracotta); margin-bottom: 6px; }
.pc-ico svg { width: 26px; height: 26px; }
.price-card.featured .pc-ico { background: var(--sage); color: var(--paper); }
.pc-eyebrow { font-size: 14.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.pc-name { font-family: 'EB Garamond', serif; font-size: 25px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.pc-name em { font-style: italic; color: var(--terracotta); }
.pc-desc { font-size: 19px; line-height: 1.55; color: var(--ink-soft); }
.pc-list { list-style: none; margin: 4px 0 0; }
.pc-list li { position: relative; padding-left: 22px; margin-bottom: 8px; font-size: 19px; line-height: 1.5; color: var(--ink-soft); }
.pc-list li::before { content: "·"; position: absolute; left: 6px; color: var(--terracotta); font-weight: 700; }
.pc-price { margin-top: auto; padding-top: 14px; font-family: 'EB Garamond', serif; font-style: italic; font-size: 33px; color: var(--terracotta); }
.pc-price span { display: block; margin-top: 4px; line-height: 1.45; font-family: 'Hanken Grotesk', sans-serif; font-style: normal; font-size: 19px; color: var(--ink-soft); letter-spacing: .02em; }
.pc-badge { position: absolute; top: 18px; right: 18px; background: #fff; color: #000; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); }

/* ===== CTA ===== */
.cta-row { text-align: center; margin-top: 48px; }
.btn-cta { display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px; background: var(--terracotta); color: var(--paper); border-radius: var(--r-pill); font-size: 15.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease; }
.btn-cta:hover { transform: translateY(-2px); }
.btn-cta .arr { transition: transform .2s ease; }
.btn-cta:hover .arr { transform: translateX(4px); }
.cta-meta { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 17.5px; color: var(--terracotta); font-weight: 500; margin-top: 16px; flex-wrap: wrap; }
.cta-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); opacity: .7; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--paper); padding: 84px 32px 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,253,248,.18); }
.footer-brand { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1; }
.footer-brand-name { font-family: 'EB Garamond', serif; font-style: italic; font-size: 32px; color: var(--paper); }
.footer-brand-tag { font-size: 15.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); margin-top: 7px; }
.footer-brand-sub { font-size: 15.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,253,248,.7); }
.footer-ip { margin-top: 22px; font-size: 15.5px; line-height: 1.6; color: rgba(255,253,248,.6); max-width: 460px; }
.footer-contact { text-align: right; }
.footer-contact-title { display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; font-weight: 600; }
.footer-contact-title svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-contact a, .footer-contact p { display: block; color: var(--paper); font-size: 18.5px; margin-bottom: 10px; }
.footer-contact a:hover { color: var(--terracotta); }
.footer-bottom { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; padding-top: 28px; }
.footer-credit { justify-self: end; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-legal a { font-size: 14.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--terracotta); }
.footer-legal a:hover { color: var(--paper); }
.footer-credit { font-size: 14.5px; color: rgba(255,253,248,.5); }

/* Champ à compléter (pages légales) */
.todo { background: var(--tint-terra); color: var(--terracotta-deep); padding: 1px 7px; border-radius: 6px; font-weight: 600; font-size: .92em; }
.prose h2 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 27px; color: var(--ink); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose .muted { font-size: 15.5px; color: var(--ink-soft); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-burger { display: flex; }
  .brand-logo { width: 80px; height: 80px; }
  .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0; flex: initial;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid rgba(221,107,48,.45);
    box-shadow: 0 20px 40px rgba(0,0,0,.10);
    padding: 6px 24px 16px;
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 15px 4px; font-size: 16px; letter-spacing: .04em; border-bottom: 1px solid rgba(42,37,33,.08); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a::after { display: none; }
  .page-title { font-size: 38px; }
  .sec-title { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card.span-2 { grid-column: auto; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 14px 14px; gap: 8px; }
  .brand-logo { width: 60px; height: 60px; }
  .brand { flex-shrink: 0; }
  .brand-name { font-size: 22px; white-space: nowrap; }
  .brand-tagline { font-size: 13px; white-space: nowrap; }
  /* CTA compact : tout sur une seule ligne, « Se Diriger » jamais coupé */
  .nav-cta { padding: 6px 10px; font-size: 9.5px; letter-spacing: 0; white-space: nowrap; flex-shrink: 0; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
  .page-hero { padding: 48px 20px 22px; }
  .page-title { font-size: 30px; }
  .page-lead { font-size: 20.5px; }
  .sec { padding: 44px 20px; }
  .sec-h2 { font-size: 26px; }
  .sec-title { font-size: 28px; }
  .sec-lead { font-size: 20.5px; }
  .prose .pullquote { font-size: 22px; }
  .h-step { grid-template-columns: 52px 1fr; column-gap: 18px; }
  .h-step::before { left: 25px; top: 52px; }
  .h-letter { width: 52px; height: 52px; font-size: 25px; flex-shrink: 0; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
}

/* eyebrows un peu plus gras */
.eyebrow { font-weight: 600; }

/* Sauts de ligne responsifs (éditeur visuel JBC : mobile ≤640 · tablette 641-1024 · ordi ≥1025) */
.br-mobile { display: none; }
.br-tablet { display: none; }
.br-desktop { display: inline; }
@media (max-width: 1024px) {
  .br-desktop { display: none; }
  .br-tablet { display: inline; }
}
@media (max-width: 640px) {
  .br-tablet { display: none; }
  .br-mobile { display: inline; }
}

/* Logo footer + crédit JBC */
.footer-logo { height: 108px; width: 108px; object-fit: contain; display: block; background: #fff; border-radius: 50%; padding: 11px; box-sizing: border-box; box-shadow: 0 6px 18px rgba(0,0,0,0.22); }
.footer-credit-jbc { color: #FFD400; text-decoration: none; font-weight: 600; }
.footer-credit-jbc:hover { text-decoration: underline; }
/* Footer centré sur tablette + mobile (au lieu de gauche/droite) */
@media (max-width: 1024px) {
  .footer-top { text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-ip { margin-left: auto; margin-right: auto; }
  .footer-contact { text-align: center; }
  .footer-contact-title { justify-content: center; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; justify-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
  .footer-credit { justify-self: center; }
}

/* ====================== RDV / CONTACT + AGENDA ====================== */
.rdv-section { background: var(--cream); padding: 110px 32px; }
.rdv-grid {
  display: grid; grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 40px; max-width: 1100px; margin: 48px auto 0; align-items: start;
}
.rdv-info-card {
  background: var(--tint-sage); border-radius: var(--r-lg); padding: 38px 34px;
  box-shadow: var(--shadow-soft);
}
.rdv-info { display: flex; gap: 16px; align-items: center; padding: 14px 0; }
.rdv-info + .rdv-info { border-top: 1px solid rgba(42,37,33,0.08); }
.rdv-info .ico { color: var(--terracotta); flex-shrink: 0; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; }
.rdv-info .ico svg { width: 100%; height: 100%; }
.rdv-info a { color: var(--ink); text-decoration: none; font-weight: 600; }
.rdv-info a:hover { color: var(--terracotta); }
.rdv-info .rdv-info-sub { color: var(--ink-soft); font-size: 14.5px; font-weight: 400; }
.rdv-card {
  background: var(--tint-sage); border-radius: var(--r-lg); padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.rdv-card h3 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 27px; color: var(--ink); margin-bottom: 8px; display: flex; align-items: center; gap: 11px; }
.rdv-h3-ico { display: inline-flex; color: var(--terracotta); flex-shrink: 0; }
.rdv-h3-ico svg { width: 26px; height: 26px; }
.rdv-card > p, .rdv-formwrap > p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
.rdv-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.rdv-types--single { grid-template-columns: 1fr; }
/* Étape 1 (JS) : seules les cartes de type sont visibles, les champs
   apparaissent après le choix du rendez-vous. Sans JS, tout reste visible. */
.rdv-form.rdv-step1 .rdv-form-row,
.rdv-form.rdv-step1 input[type="email"],
.rdv-form.rdv-step1 input[type="tel"],
.rdv-form.rdv-step1 textarea,
.rdv-form.rdv-step1 button[type="submit"] { display: none; }
.rdv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rdv-form input, .rdv-form textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid rgba(42,37,33,0.12);
  border-radius: var(--r-sm); padding: 13px 15px; margin-top: 12px;
  transition: border-color 0.15s ease;
}
.rdv-form textarea { resize: vertical; min-height: 84px; }
.rdv-form input:focus, .rdv-form textarea:focus { outline: none; border-color: var(--terracotta); }
.rdv-form .rdv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.rdv-form .btn { margin-top: 18px; width: 100%; }
.rdv-err { color: var(--terracotta-deep); font-size: 14px; margin-top: 12px; }
.rdv-fineprint { font-size: 13px; color: var(--ink-soft); margin-top: 14px; line-height: 1.55; text-align: center; }
.rdv-thanks h3 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 25px; color: var(--ink); margin-bottom: 8px; }
.rdv-thanks p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--terracotta); color: #fff; border: none; cursor: pointer;
  font: inherit; font-size: 16px; font-weight: 600; padding: 14px 26px;
  border-radius: var(--r-pill); transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }

/* --- Sélecteur de type de RDV --- */
.agp-type, .rdv-types .agp-type {
  display: flex; flex-direction: column; gap: 4px; text-align: center; align-items: center;
  background: var(--paper); border: 1.5px solid rgba(42,37,33,0.12);
  border-radius: var(--r-sm); padding: 14px 16px; cursor: pointer;
  font: inherit; color: var(--ink); transition: border-color 0.15s ease, background 0.15s ease;
}
.agp-type:hover { border-color: var(--terracotta); }
.agp-type.on { border-color: var(--terracotta); background: var(--tint-terra); }
.agp-type-emoji { font-size: 20px; }
.agp-type-label { font-weight: 600; font-size: 15.5px; }
.agp-type-sous { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

/* --- Agenda (picker mensuel) --- */
.rdv-zcal { margin-top: 6px; }
.agp { font-size: 15px; color: var(--ink); }
.agp-intro { color: var(--ink-soft); margin-bottom: 14px; }
.agp-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 6px; }
.agp-choix { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--tint-terra); border-radius: var(--r-sm); padding: 12px 16px; margin-bottom: 16px; }
.agp-choix-label { font-weight: 500; }
.agp-choix-sous { display: block; font-size: 13px; color: var(--ink-soft); font-weight: 400; }
.agp-back { background: none; border: none; color: var(--terracotta); cursor: pointer; font: inherit; font-size: 14px; text-decoration: underline; }
.agp-month-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.agp-month-title { order: 0; flex: 1 1 auto; font-weight: 600; font-size: 16px; text-transform: capitalize; }
.agp-mnav { order: 1; background: var(--paper); border: 1.5px solid rgba(42,37,33,0.12); border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 18px; color: var(--ink); line-height: 1; flex-shrink: 0; }
.agp-mnav-next { order: 2; }
.agp-mnav:not(:disabled):hover { border-color: var(--terracotta); color: var(--terracotta); }
.agp-mnav:disabled { opacity: 0.32; cursor: default; }
.agp-dows { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 6px; }
.agp-dows span { text-align: center; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.agp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.agp-cell { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 15px; }
.agp-cell-empty { visibility: hidden; }
.agp-body { display: flex; gap: 22px; align-items: flex-start; background: var(--paper); border-radius: var(--r); padding: 18px; margin-top: 4px; }
.agp-month { flex: 1 1 auto; min-width: 0; }
.agp-cell-off { color: rgba(42,37,33,0.4); }
.agp-cell-on { cursor: pointer; background: var(--tint-terra); border: 1.5px solid rgba(221,107,48,0.30); color: var(--ink); font-weight: 600; transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease; }
.agp-cell-on:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.agp-cell-today { box-shadow: inset 0 0 0 1.5px var(--sage); }
.agp-cell-sel { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.agp-slots-wrap { flex: 0 0 200px; }
@media (max-width: 600px) { .agp-body { flex-direction: column; } .agp-slots-wrap { flex: none; width: 100%; } }
.agp-slots-title { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; text-transform: capitalize; }
.agp-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 8px; }
.agp-slot { padding: 9px 0; text-align: center; border-radius: 9px; border: 1.5px solid rgba(42,37,33,0.16); background: var(--paper); cursor: pointer; font: inherit; font-weight: 500; font-size: 14.5px; color: var(--ink); transition: border-color 0.15s ease, color 0.15s ease; }
.agp-slot:hover { border-color: var(--terracotta); color: var(--terracotta); }
.agp-slot.on { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.agp-confirm { margin-top: 20px; width: 100%; }
.agp-msg { margin: 14px 0 0; font-size: 14.5px; color: var(--ink-soft); text-align: center; }
.agp-msg-err { color: var(--terracotta-deep); }
.agp-resa { text-align: center; background: var(--tint-sage); border-radius: var(--r-sm); padding: 18px; color: var(--ink); }
.agp-cell-on, .agp-slot, .agp-mnav, .agp-type, .agp-back, .agp-confirm, .btn { touch-action: manipulation; }

/* --- Modale de confirmation --- */
.rdv-modal { position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center; padding: 16px; }
.rdv-modal__overlay { position: fixed; inset: 0; background: rgba(42,37,33,0.5); }
.rdv-modal__content { position: relative; z-index: 1; background: var(--paper); border-radius: var(--r-lg); max-width: 480px; width: 100%; padding: 34px 30px; box-shadow: var(--shadow-card); text-align: center; }
.rdv-modal__close { position: absolute; top: 10px; right: 16px; background: none; border: none; font-size: 30px; line-height: 1; cursor: pointer; color: var(--ink-soft); }
.agp-done-ico { font-size: 2.4rem; margin-bottom: 8px; }
.agp-done h3 { font-family: 'EB Garamond', serif; font-size: 25px; margin-bottom: 10px; color: var(--ink); }
.agp-done p { color: var(--ink-soft); margin: 0 0 14px; line-height: 1.6; }
.agp-done-note { font-size: 13px; }

@media (max-width: 640px) {
  .br-tablet { display: none; }
  .br-mobile { display: inline; }
}

@media (max-width: 860px) {
  .rdv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rdv-section { padding: 70px 20px; }
  .rdv-types, .agp-types, .rdv-form-row { grid-template-columns: 1fr; }
  .agp-slots { grid-template-columns: repeat(4, 1fr); }
}

html { scroll-padding-top: 170px; scrollbar-gutter: stable; overflow-y: scroll; }
#rdv { scroll-margin-top: 28px; }

/* Photo flottée dans la prose (Me découvrir) */
.prose-photo { float: right; width: 460px; max-width: 52%; height: auto; margin: 4px 0 24px 42px; border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
@media (max-width: 700px) { .prose-photo { float: none; width: 100%; max-width: 100%; margin: 0 0 24px; } }

/* ===== Retakes 29/07/2026 : réservation 3 motifs ===== */
/* Menu déroulant "Réserver en ligne" du header */
.nav-resa { position: relative; flex-shrink: 0; }
.nav-resa-toggle { border: none; cursor: pointer; font-family: inherit; }
.nav-resa-caret { display: inline-block; transition: transform 0.2s ease; }
.nav-resa.open .nav-resa-caret { transform: rotate(180deg); }
.nav-resa-menu {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 120;
  min-width: 320px; background: var(--paper); border-radius: var(--r);
  box-shadow: var(--shadow-card); border: 1px solid rgba(221,107,48,0.25);
  padding: 10px; display: flex; flex-direction: column; gap: 4px;
}
.nav-resa-menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px; border-radius: var(--r-sm);
  transition: background 0.15s ease;
}
.nav-resa-menu a:hover { background: var(--tint-terra); }
.nav-resa-menu a strong { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.nav-resa-menu a span { font-size: 13px; color: var(--ink-soft); }

/* Barre "Réserver en ligne" fixe en bas (mobile, demande Isabelle 29/07) */
.mobile-resa-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--paper);
  box-shadow: 0 -12px 34px rgba(42,37,33,0.20);
  padding: 13px 16px calc(13px + env(safe-area-inset-bottom));
  gap: 10px; align-items: center;
}
.mobile-resa-bar .mrb-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--terracotta); color: var(--paper); border-radius: var(--r-pill);
  padding: 16px 20px; font-size: 15.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.mobile-resa-bar .mrb-tel {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper); color: var(--terracotta);
  box-shadow: inset 0 0 0 1.5px var(--terracotta);
}
.mobile-resa-bar .mrb-tel svg { width: 21px; height: 21px; }
@media (max-width: 700px) {
  .mobile-resa-bar { display: flex; }
  body { padding-bottom: 84px; }
  .nav-resa, .nav-cta { display: none; } /* le CTA du header cède la place à la barre fixe */
}

/* Types de RDV : 3 cadres sur 2 colonnes (le 3e prend toute la largeur) */
.rdv-types--triple { grid-template-columns: 1fr 1fr; }
.rdv-types--triple .agp-type:nth-child(3) { grid-column: 1 / -1; }
@media (max-width: 700px) {
  .rdv-types--triple { grid-template-columns: 1fr; }
  .rdv-types--triple .agp-type:nth-child(3) { grid-column: auto; }
}

/* Modale de réservation */
.rdv-modal__content--form {
  max-width: 620px; text-align: left;
  max-height: min(92dvh, 860px);
  overflow: hidden; padding: 0;
  display: flex; flex-direction: column;
}
/* La croix reste fixe en haut à droite : seul l'intérieur défile */
.rdv-modal__content--form .rdv-modal__close { z-index: 2; }
/* Scroll actif mais INVISIBLE (standard modales JBC) */
.rdv-modal__scroll { overflow-y: auto; padding: 34px 28px 30px; scrollbar-width: none; -ms-overflow-style: none; }
.rdv-modal__scroll::-webkit-scrollbar { display: none; width: 0; }
/* Champs et cartes en blanc pur pour se détacher du fond de la modale */
.rdv-modal .rdv-form input, .rdv-modal .rdv-form textarea { background: #FFFFFF; }
.rdv-modal .agp-type { background: #FFFFFF; }
.rdv-modal .agp-body { background: #FFFFFF; }
.rdv-modal .agp-slot { background: #FFFFFF; }
/* Titre et textes de la modale au centre */
.rdv-modal .rdv-formwrap h3 { justify-content: center; }
.rdv-modal .rdv-formwrap > p, .rdv-modal .rdv-fineprint { text-align: center; }
.rdv-modal .rdv-thanks { text-align: center; }
.rdv-modal .rdv-types--triple { grid-template-columns: 1fr; }
.rdv-modal .rdv-types--triple .agp-type:nth-child(3) { grid-column: auto; }
.rdv-modal .rdv-formwrap h3 { font-family: 'EB Garamond', serif; font-weight: 500; font-size: 27px; color: var(--ink); margin-bottom: 8px; display: flex; align-items: center; gap: 11px; }
.rdv-modal .rdv-formwrap > p { color: var(--ink-soft); font-size: 17.5px; line-height: 1.6; margin-bottom: 22px; }

/* Icônes maison dans les cartes de type (à la place des émojis) */
.agp-type-ico { width: 32px; height: 32px; color: var(--terracotta); display: inline-flex; align-items: center; justify-content: center; }
.agp-type-ico svg { width: 100%; height: 100%; }

/* Icônes PNG sur-mesure dans les pastilles des cartes tarifs */
.pc-ico img { width: 30px; height: 30px; object-fit: contain; display: block; }

/* Ressources "Ce dont vous disposerez" (déplacées de la landing vers methode.html) */
.ressources-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 44px; }
.ressource-item {
  display: flex; align-items: center; gap: 22px;
  grid-column: span 2;
  background: var(--paper); border-radius: var(--r-lg);
  padding: 26px 30px; box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.ressource-item:nth-child(2), .ressource-item:nth-child(6) { grid-column: span 4; }
.ressource-item:hover,
body.js-animated .ressource-item.animate-in.is-visible:hover { transform: translateY(-4px); }
.ressource-check {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--tint-sage); display: inline-flex; align-items: center; justify-content: center;
  color: var(--terracotta);
}
.ressource-check svg { width: 30px; height: 30px; }
.ressource-text { font-size: 20.5px; line-height: 1.5; color: var(--ink); }
@media (max-width: 1024px) {
  .ressources-list { grid-template-columns: 1fr 1fr; }
  .ressource-item, .ressource-item:nth-child(2), .ressource-item:nth-child(6) { grid-column: auto; }
}
@media (max-width: 600px) {
  .ressources-list { grid-template-columns: 1fr; }
}

/* Icônes maison dans les pastilles ressources */
.ressource-check img { width: 32px; height: 32px; object-fit: contain; }

/* Élément masqué sur mobile uniquement (complément des .br-mobile/.br-desktop) */
.masq-mobile { display: inline; }
@media (max-width: 640px) { .masq-mobile { display: none; } }

/* Un <br> posé directement dans un bouton flex crée DEUX colonnes : le libellé
   doit être un seul item flex. */
.sec-cta .cta-txt, .btn .cta-txt { display: inline-block; text-align: center; }
@media (max-width: 600px) { .sec-cta { padding: 17px 22px; } }
