:root{
  --bg:#ffffff;
  --bg-soft:#f5f5f7;
  --surface:#ffffff;

  --text:#1d1d1f;
  --muted:#6e6e73;
  --border:rgba(0,0,0,.10);

  --brand:#6F8F86;
  --brand-2:#5F7E76;

  --shadow:0 12px 30px rgba(0,0,0,.06);
  --shadow-hover:0 18px 46px rgba(0,0,0,.10);

  --radius:14px;
  --radius-lg:22px;

  --container:1120px;
  --pad:clamp(16px,3vw,28px);

  --h1:clamp(34px,4.6vw,62px);
  --h2:clamp(22px,2.4vw,32px);
  --p:18px;
  --lh:1.6;
}

*{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;
  scrollbar-gutter: stable;
}
body{
  margin:0;
  overflow-y: scroll;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text",system-ui,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:var(--lh);
}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.container{width:min(var(--container),100% - 2*var(--pad));margin-inline:auto}

.grid{display:grid;gap:clamp(14px,2vw,22px)}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media(max-width:900px){.grid-2,.grid-3{grid-template-columns:1fr}}

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:22px;
}

.brand{
  display:flex;align-items:center;gap:10px;
  font-weight:700;
  white-space:nowrap;
}
.brand-logo{
  width: clamp(180px, 14vw, 380px);
  height: clamp(180px, 14vw, 380px);
  border-radius: 18px;
  display: block;
}

.nav{
  display:flex;align-items:center;gap:16px;
  flex-wrap:wrap;
}
.nav a{
  display:inline-flex;align-items:center;
  padding:10px 14px;
  border-radius:12px;
  color:var(--muted);
  white-space:nowrap;
}
.nav a:hover{background:rgba(0,0,0,.04);color:var(--text);text-decoration:none}
.nav-cta{
  background:rgba(111,143,134,.14);
  color:var(--text) !important;
  border:1px solid rgba(111,143,134,.22);
}
.nav-cta:hover{background:rgba(111,143,134,.20)}

.burger{
  display:none;
  border:1px solid var(--border);
  background:rgba(0,0,0,.03);
  border-radius:12px;
  padding:10px 12px;
  color:var(--text);
}
@media(max-width:900px){
  .burger{display:inline-flex}
  .nav{display:none}
  .nav[data-open="true"]{
    display:flex;flex-direction:column;align-items:stretch;
    position:absolute;left:var(--pad);right:var(--pad);top:64px;
    background:rgba(255,255,255,.96);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:10px;
    box-shadow:var(--shadow);
  }
}

.cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-weight:650;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 22px rgba(111,143,134,.18);
}
.cta:hover{background:var(--brand-2);text-decoration:none}
.cta:active{transform:translateY(1px)}
.cta--ffjr{background:#E8772A;box-shadow:0 10px 22px rgba(232,119,42,.22)}
.cta--ffjr:hover{background:#D36A1F}
.cta--outline{
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  box-shadow: none;
}
.cta--outline:hover{
  background: var(--brand);
  color: #fff;
}

.section{padding:clamp(24px,4vw,48px) 0}
.section-title{font-size:var(--h2);margin:0 0 10px;letter-spacing:-0.01em;font-weight:650}
.sub{color:var(--muted);margin:0 0 18px;max-width:80ch}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:clamp(16px,2.2vw,22px);
  box-shadow:var(--shadow);
}

/* HERO */
.hero-centered{
  text-align:center;
  background:var(--bg);
  padding:clamp(44px,7vw,86px) 0 26px;
}
.hero-centered h1{
  font-size:var(--h1);
  line-height:1.05;
  margin:0 0 12px;
  font-weight:750;
  letter-spacing:-0.02em;
}
.hero-centered p{
  font-size:var(--p);
  color:var(--muted);
  margin:0 0 14px;
}
.hero-location{
  margin:10px 0 0;
  color:var(--muted);
  font-weight:600;
}
.hero-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin:18px 0 18px}
.hero-kicker{
  margin:26px 0 10px;
  font-size:16px;
  letter-spacing:.10em;
  font-weight:800;
}
.hero-intro{
  max-width:74ch;
  margin:0 auto;
  text-align:justify;
}
.hero-intro p{margin:0 0 12px}
.hero-intro p:last-child{margin-bottom:0}

/* Kicker méthode/action */
.kicker{
  margin:0;
  color:#9AA3A8;
  font-weight:750;
  letter-spacing:.08em;
  font-size:12px;
  text-transform:uppercase;
}

/* Bloc FFJR */
.ffjr-card{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap:18px;
  align-items:center;
  background:var(--bg-soft);
  border-color:rgba(0,0,0,.06);
  border-radius:28px;
  margin-top:14px;
  margin-bottom:8px;
}
@media(max-width:900px){.ffjr-card{grid-template-columns:1fr}}
.ffjr-logo{width:160px;height:160px;object-fit:contain;display:block;margin:auto}
.ffjr-title{margin:0 0 8px;font-size:20px}
.ffjr-text{margin:0;color:var(--muted)}
.ffjr-link{color:#2F6F66;font-weight:650;text-decoration:none}
.ffjr-link:hover{text-decoration:underline}

/* Stages */
.stage-card{
  border-radius:22px;
  padding:22px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.stage-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(0,0,0,.14);
}
.stage-date{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  margin:0 0 10px;
  font-weight:600;
}
.stage-badge{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:78px;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:750;
  color:#fff;
  background:#C97A7A; /* rouge doux */
}
.stage-badge.is-empty{visibility:hidden}
.stage-title{margin:0 0 10px;font-size:19px;letter-spacing:-0.01em}
.stage-summary{margin:0;color:var(--muted);font-size:15.5px;line-height:1.55;max-width:45ch}

.inline-link{
  color:#2F6F66;
  font-weight:650;
  text-decoration:underline;
  text-underline-offset:3px;
}
.inline-link:hover{opacity:.88}

.footer{border-top:1px solid var(--border);padding:26px 0;color:var(--muted)}
.footer-social{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,0,0,.04);
  border-radius: 999px;
  font-weight: 600;
  transition: background .15s ease;
}
.footer-social:hover{
  background: rgba(0,0,0,.08);
  text-decoration: none;
}
.footer-social svg{
  flex-shrink: 0;
}

.brand{ align-items:center; }
.brand span{ line-height:1; }
.quote-card{ display:flex; flex-direction:column; gap:12px; }
.quote-text{ margin:0; color:var(--text); font-size:16px; line-height:1.55; }
.quote-meta{ margin:0; color:var(--muted); font-size:14px; }
.quote-meta span{ font-weight:500; }

.video-card{ padding:16px; }
.video-title{ margin:12px 4px 0; color:var(--muted); font-weight:650; }
.cta-card{ text-align:center; background:var(--bg-soft); border-color:rgba(0,0,0,.06); }

/* ===== Standard pages: comme Séjours ===== */
.page-hero{
  padding: 34px 0 18px;
}
.page-hero .section-title{
  margin-top: 6px;
}
.page-hero .sub{
  margin-bottom: 0;
  max-width: 85ch;
}

/* Page hero commun (même rendu partout) */
.page-hero{ padding: 34px 0 18px; }
.page-title{ margin: 6px 0 10px; font-weight: 750; letter-spacing: -0.01em; }
.page-sub{ margin: 0; max-width: 85ch; }
.page-hero-after{ margin-top: 14px; }

/* Breadcrumbs */
.breadcrumb{
  margin-bottom: 18px;
}
.breadcrumb-list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb-item{
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-item:not(:last-child)::after{
  content: "›";
  color: var(--muted);
  opacity: .6;
}
.breadcrumb-item a{
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb-item a:hover{
  color: var(--brand);
  text-decoration: underline;
}
.breadcrumb-item[aria-current="page"]{
  color: var(--text);
  font-weight: 600;
}

/* Articles */
.post-wrap{ max-width: 900px; }
.post-title{ margin:0 0 10px; font-size: clamp(28px, 3vw, 40px); letter-spacing:-0.02em; }
.post-desc{ margin:0 0 18px; color: var(--muted); max-width: 80ch; }

.post-content{ line-height: 1.75; font-size: 16.5px; }
.post-content h2{ margin: 26px 0 10px; font-size: 22px; letter-spacing:-0.01em; }
.post-content h3{ margin: 20px 0 8px; font-size: 18px; }
.post-content p{ margin: 0 0 14px; }
.post-content ul, .post-content ol{ margin: 0 0 14px 22px; }
.post-content a{ color: #2F6F66; text-decoration: underline; text-underline-offset: 3px; }
.post-content img{ max-width:100%; height:auto; border-radius: 16px; display:block; margin: 16px 0; }
.post-content blockquote{ margin:16px 0; padding: 14px 16px; background: var(--bg-soft); border-radius: 16px; border:1px solid rgba(0,0,0,.06); color: var(--muted); }

/* ===== Sommaire (TOC) + ancres ===== */

/* Ajuste la position quand on clique un lien d'ancre (header sticky + gros logo) */
:root{
  --anchor-offset: 220px; /* ajuste si besoin (logo énorme) */
}

/* Toutes les cibles d’ancres (titres avec id) ne doivent pas passer sous le header */
.post-content h2[id],
.post-content h3[id],
.post-content h4[id]{
  scroll-margin-top: var(--anchor-offset);
}

/* Optionnel : si tu as des ancres sur d'autres éléments */
.post-content [id]{
  scroll-margin-top: var(--anchor-offset);
}

/* Sommaire : style unique sur tous les articles */
.post-content .sommaire{
  background: var(--bg-soft);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px 18px;
  margin: 18px 0 22px;
}

.post-content .sommaire h2{
  font-size: 15px;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-content .sommaire ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-content .sommaire li{
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.post-content .sommaire li:first-child{
  border-top: none;
}

.post-content .sommaire a{
  display: block;
  text-decoration: none;
  font-weight: 650;
  color: var(--text);
}

.post-content .sommaire a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2F6F66;
}

/* Ancres : avec header sticky + logo XXL */
:root{ --anchor-offset: 300px; }

.post-content h2[id],
.post-content h3[id],
.post-content h4[id],
.post-content [id]{
  scroll-margin-top: var(--anchor-offset);
}

/* Sommaire uniforme */
.post-content .sommaire{
  background: var(--bg-soft);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px 18px;
  margin: 18px 0 22px;
}
.post-content .sommaire h2{
  font-size: 15px;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-content .sommaire ul{ list-style:none; padding:0; margin:0; }
.post-content .sommaire li{ padding:10px 0; border-top:1px solid rgba(0,0,0,.06); }
.post-content .sommaire li:first-child{ border-top:none; }
.post-content .sommaire li.toc-sub{ padding-left: 14px; }
.post-content .sommaire a{
  display:block;
  text-decoration:none;
  font-weight:650;
  color:var(--text);
}
.post-content .sommaire a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
  color:#2F6F66;
}

/* Formulaire contact */
.form{ display:grid; gap:12px; }
.form label{ display:grid; gap:6px; font-weight:650; color:var(--text); }
.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font:inherit;
}
.form input:focus, .form textarea:focus{
  outline:none;
  border-color: rgba(47,111,102,.45);
  box-shadow: 0 0 0 4px rgba(111,143,134,.15);
}
.form-note{ margin:0; color:var(--muted); font-size:13px; }
.hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

/* Bloc coordonnées */
.contact-block{ display:grid; gap:14px; }
.contact-label{ font-weight:750; color:var(--muted); font-size:13px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; }
.contact-value{ color:var(--text); font-weight:650; }

/* Réseaux sociaux */
.social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:600;
  color:var(--text);
  background:#fff;
}
.social-link:hover{ background:#f3f4f6; }

/* Cartes blog cliquables */
.card-link{
  display:block;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}
.card-link:focus-visible{
  outline: 3px solid rgba(47,111,102,.35);
  outline-offset: 4px;
  border-radius: 18px;
}
.card-title{
  margin:0 0 10px;
  font-size:19px;
  letter-spacing:-0.01em;
}
.card-desc{
  margin:0;
  color:var(--muted);
}

/* Media / vidéos */

/* Ratio container (vidéos / iframes) */
.ratio{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}
.ratio iframe,
.ratio video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Témoignages */
.testimonials{
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.testimonial-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
.testimonial-quote{
  margin: 0 0 .75rem;
  color: var(--text);
}
.testimonial-author{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.testimonial-content{
  padding:18px 18px 20px;
}

.testimonial-badge{
  background: rgba(111,143,134,.14);
  border:1px solid rgba(111,143,134,.22);
  color: var(--text);
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  font-weight:650;
}
/* --- Fix menu: pas de décalage au hover/selected (réserve la place) --- */
header nav a,
.site-header nav a,
.header nav a,
.topbar nav a {
  display: inline-flex;
  align-items: center;
  padding: .45rem .7rem;
  border-radius: .6rem;

  /* réserve l'espace (évite le "bougé" si hover/active ajoute une bordure) */
  border: 2px solid transparent;

  /* évite le shift si l'état actif met du gras */
  font-weight: 600;

  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

/* Hover plus clair */
header nav a:hover,
.site-header nav a:hover,
.header nav a:hover,
.topbar nav a:hover {
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.10);
}

/* Etat "page courante" (selon comment c'est marqué dans ton header) */
header nav a[aria-current="page"],
header nav a.is-active,
header nav a.active,
header nav a.selected,
.site-header nav a[aria-current="page"],
.site-header nav a.is-active,
.site-header nav a.active,
.site-header nav a.selected,
.header nav a[aria-current="page"],
.header nav a.is-active,
.header nav a.active,
.header nav a.selected,
.topbar nav a[aria-current="page"],
.topbar nav a.is-active,
.topbar nav a.active,
.topbar nav a.selected {
  background: rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.14);
}


/* =========================
   NAV HEADER (fix hover/active sans shift)
   ========================= */
.site-header .site-nav .nav-link{
  display:inline-flex;
  align-items:center;
  gap:.45rem;

  padding:.45rem .75rem;
  border-radius:.7rem;

  /* anti "bougé" : on réserve la place d’une bordure dès le départ */
  border:2px solid transparent;
  box-sizing:border-box;

  text-decoration:none;
  transition:background-color .15s ease, border-color .15s ease, color .15s ease;
}

.site-header .site-nav .nav-link:hover{
  background:rgba(0,0,0,.05);
  border-color:rgba(0,0,0,.08);
}

/* état page courante : plus clair que ton fond trop sombre */
.site-header .site-nav .nav-link[aria-current="page"]{
  background:rgba(0,0,0,.07);
  border-color:rgba(0,0,0,.12);
}

/* icônes */
.site-header .icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
}

/* bouton menu : n’afficher qu’un seul (burger OU croix) */
.menu-toggle .icon-close{ display:none; }
.menu-toggle[aria-expanded="true"] .icon-burger{ display:none; }
.menu-toggle[aria-expanded="true"] .icon-close{ display:inline-block; }

/* menu mobile ne doit pas téléscoper le contenu */
.site-nav{
  position:relative;
  z-index:50;
}

/* optionnel : si ton menu mobile est en overlay/absolute, on l'affiche via une classe */
.site-nav.is-open{
  display:block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

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

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Form card */
.contact-form-card {
  padding: 28px;
}

.contact-form-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 650;
  font-size: 15px;
  color: var(--text);
}

.form-group .required {
  color: #c44;
  font-weight: 700;
}

.form-group .optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  font: inherit;
  font-size: 16px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(47, 111, 102, 0.5);
  box-shadow: 0 0 0 4px rgba(111, 143, 134, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236e6e73' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Form actions */
.form-actions {
  margin-top: 8px;
}

.cta-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
}

.cta--loading {
  opacity: 0.7;
  cursor: wait;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loader[hidden],
.btn-text[hidden] {
  display: none;
}

/* Legal text */
.form-legal {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Alert messages */
.contact-alert {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.contact-alert--success {
  background: rgba(47, 111, 102, 0.1);
  border: 1px solid rgba(47, 111, 102, 0.25);
  color: #1a5a4a;
}

.contact-alert--error {
  background: rgba(180, 60, 60, 0.1);
  border: 1px solid rgba(180, 60, 60, 0.25);
  color: #8b2020;
}

/* Contact info card */
.contact-info-card {
  padding: 24px;
}

.contact-info-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}

.contact-info-item {
  margin-bottom: 16px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
  line-height: 1.5;
}

.contact-info-link {
  color: #2f6f66;
  text-decoration: none;
}

.contact-info-link:hover {
  text-decoration: underline;
}

/* Links card */
.contact-links-card {
  padding: 20px 24px;
  background: var(--bg-soft);
}

.contact-links-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.contact-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-links-list li {
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-links-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-links-list li:last-child {
  padding-bottom: 0;
}

/* Honeypot (hidden) */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* Hero image */
.hero-image{
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 0 auto 24px;
  display: block;
  box-shadow: var(--shadow);
}
@media(max-width:600px){
  .hero-image{
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    margin-bottom: 18px;
  }
}

/* Stage cards cliquables */
.stage-card--link{
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.stage-card--link:hover{
  text-decoration: none;
}
.stage-card--link:focus-visible{
  outline: 3px solid rgba(47,111,102,.35);
  outline-offset: 4px;
}

/* Témoignages home */
.temoignages-section{
  background: var(--bg-soft);
}
.temoignage-card{
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.temoignage-text{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
}
.temoignage-author{
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  color: var(--brand);
}

/* Scroll offset pour ancres stages */
.stage-card[id]{
  scroll-margin-top: var(--anchor-offset, 300px);
}

/* CTA final section */
.cta-final-card{
  text-align: center;
  background: linear-gradient(135deg, rgba(111,143,134,.06) 0%, rgba(111,143,134,.02) 100%);
  border-color: rgba(111,143,134,.15);
  padding: 40px 28px;
}
.cta-final-card .section-title{
  margin-bottom: 8px;
}
.cta-final-text{
  color: var(--muted);
  margin: 0 0 20px;
  max-width: none;
}

/* Brochure card */
.brochure-card{
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(111,143,134,.08) 0%, rgba(111,143,134,.04) 100%);
  border: 1px solid rgba(111,143,134,.18);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.brochure-icon{
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111,143,134,.12);
  border-radius: 14px;
  color: var(--brand);
}
.brochure-content{
  flex: 1;
  min-width: 0;
}
.brochure-title{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.brochure-desc{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.brochure-btn{
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--brand);
  color: #fff;
  font-weight: 650;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(111,143,134,.22);
  transition: background .15s ease, transform .15s ease;
}
.brochure-btn:hover{
  background: var(--brand-2);
  transform: translateY(-1px);
  text-decoration: none;
}
.brochure-btn svg{
  flex-shrink: 0;
}
@media(max-width:700px){
  .brochure-card{
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .brochure-content{
    order: 1;
  }
  .brochure-icon{
    order: 0;
  }
  .brochure-btn{
    order: 2;
    width: 100%;
    justify-content: center;
  }
}

