/* ==========================================================================
   SYNAP'SCHOOL — feuille de styles principale
   Charte : orange #E6914F, vert sage #9BAF7E, turquoise #5A9B8E, beige #F5EDE0
   ========================================================================== */

:root {
  --orange:        #E6914F;
  --orange-dark:   #B96835;
  --orange-soft:   #F1B77D;
  --sage:          #9BAF7E;
  --sage-dark:     #657B51;
  --teal:          #3F8178;
  --teal-dark:     #275F58;
  --beige:         #EEF4EC;
  --cream:         #F7FAF6;
  --paper:         #FFFFFF;
  --ink:           #202A27;
  --ink-soft:      #4F5A54;
  --grey:          #778079;
  --grey-line:     #DCE6DA;
  --shadow-sm:     0 2px 10px rgba(32, 42, 39, 0.06);
  --shadow-md:     0 12px 28px rgba(32, 42, 39, 0.09);
  --shadow-lg:     0 20px 46px rgba(32, 42, 39, 0.12);
  --radius-sm:     6px;
  --radius:        8px;
  --radius-lg:     8px;
  --maxw:          1180px;
  --font-serif:    'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-sans:     'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--orange); }

::selection { background: rgba(230, 145, 79, .25); color: var(--ink); }
::-moz-selection { background: rgba(230, 145, 79, .25); color: var(--ink); }

/* Scrollbar moderne (WebKit) */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 12px; height: 12px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb {
    background: var(--orange-soft);
    border-radius: 999px;
    border: 3px solid var(--cream);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--orange); }
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 .6em;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); line-height: 1.08; letter-spacing: -.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
}
.section--tight { padding: 56px 0; }
.section--beige {
  background:
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(230, 145, 79, .06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(155, 175, 126, .08), transparent 60%),
    var(--beige);
}
.section--cream {
  background:
    radial-gradient(ellipse 50% 35% at 100% 50%, rgba(90, 155, 142, .04), transparent 60%),
    var(--cream);
}
.section--paper { background: var(--paper); }

/* Grain texture subtile sur tout le body — touche moderne sans alourdir */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 16px;
  padding: 4px 0;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Focus rings universels (accessibilité moderne) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(230, 145, 79, 0.35);
  border-radius: 4px;
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(227, 218, 203, 0.5);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--orange), var(--sage));
  transition: width .15s linear;
  pointer-events: none;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.site-header__logo img { height: 120px; width: auto; display: block; }
.site-header__logo { display: flex; align-items: center; }
@media (max-width: 860px) {
  .site-header__logo img { height: 84px; }
  .site-header__inner { padding: 6px 18px; }
}
@media (max-width: 480px) {
  .site-header__logo img { height: 64px; }
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a:not(.btn) {
  color: var(--ink);
  font-weight: 600;
  font-size: .98rem;
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  height: 2px; width: 100%;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav a:not(.btn):hover,
.nav a:not(.btn).is-active { color: var(--orange-dark); }
.nav a:not(.btn):hover::after,
.nav a:not(.btn).is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav .btn { padding: 11px 20px; }
/* Bouton header sur la page courante : inerte (pas de rechargement) */
.nav a.btn[aria-current="page"] {
  pointer-events: none;
  cursor: default;
  opacity: .6;
}

.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; position: relative;
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s, top .25s, opacity .2s;
}
.nav-toggle span::before { content: ""; position: absolute; top: -8px; left: 0; }
.nav-toggle span::after  { content: ""; position: absolute; top: 8px;  left: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--grey-line);
    padding: 12px 24px 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .25s;
    align-items: stretch;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--grey-line); }
  .nav a:last-of-type { border-bottom: 0; }
  .nav .btn { margin-top: 10px; text-align: center; }
}

/* ==========================================================================
   Boutons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  cursor: pointer;
  border: 0;
  transition: transform .25s cubic-bezier(.2,.8,.2,1),
              box-shadow .25s cubic-bezier(.2,.8,.2,1),
              background .25s ease, color .2s ease;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(230, 145, 79, .35), 0 6px 18px rgba(230, 145, 79, .35);
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, #E8A35E 100%);
  color: #fff;
  box-shadow:
    0 4px 12px rgba(230, 145, 79, .28),
    0 1px 2px rgba(230, 145, 79, .15);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(230, 145, 79, .40),
    0 2px 4px rgba(230, 145, 79, .20);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink); color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 42, 38, .22);
}
.btn--sage {
  background: linear-gradient(135deg, var(--sage) 0%, #ABBE8E 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(155, 175, 126, .30);
}
.btn--sage:hover {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(155, 175, 126, .38);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 45% at 88% 5%, rgba(230,145,79,.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 5% 95%, rgba(155,175,126,.22), transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 60%, rgba(90, 155, 142, .07), transparent 60%),
    linear-gradient(135deg, #fbfcf8 0%, #eef5f1 100%);
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -120px;
  background: radial-gradient(circle, rgba(230,145,79,.14) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: blob-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  left: -180px; bottom: -200px;
  background: radial-gradient(circle, rgba(155,175,126,.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: blob-drift 28s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 56px;
  align-items: center;
}
.hero__visual {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero__visual img { border-radius: var(--radius); }

.hero__showcase {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
}
.expert-panel {
  position: relative;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  overflow: hidden;
}
.expert-panel::before {
  content: "";
  display: block;
  height: 4px;
  width: 92px;
  background: var(--orange);
  border-radius: 999px;
  margin-bottom: 24px;
}
.expert-panel__mascot {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 92px;
  opacity: .88;
  filter: drop-shadow(0 12px 18px rgba(32, 42, 39, .14));
  pointer-events: none;
}
.expert-panel__eyebrow {
  display: block;
  color: var(--teal-dark);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.expert-panel h2 {
  max-width: 360px;
  margin-bottom: 24px;
}
.method-rail {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  background: var(--grey-line);
  margin-bottom: 20px;
}
.method-rail div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  background: #fbfdf9;
  padding: 14px 16px;
}
.method-rail strong {
  color: var(--orange-dark);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
}
.method-rail span {
  color: var(--ink);
  font-weight: 800;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof-grid div {
  border-left: 3px solid var(--teal);
  padding-left: 12px;
}
.proof-grid strong,
.proof-grid span {
  display: block;
}
.proof-grid strong {
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 3px;
}
.proof-grid span {
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.35;
}
@keyframes mascotte-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes mascotte-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}
@media (max-width: 860px) {
  .hero__showcase { min-height: auto; }
  .expert-panel { padding: 28px; }
  .expert-panel__mascot { width: 70px; opacity: .7; }
  .proof-grid { grid-template-columns: 1fr; }
}
/* Vidéo de Synapi dans le hero (remplace l'image statique) */
.hero__video {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 320px;
  isolation: isolate;
}
.hero__video-glow {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 50% 55%, rgba(90, 155, 142, 0.30), transparent 65%),
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(230, 145, 79, 0.18), transparent 70%);
  filter: blur(8px);
  /* Mascotte statique : pas d'animation pulse */
  pointer-events: none;
}
.hero__video-player {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: #1f1d1a;
  box-shadow:
    0 22px 44px rgba(44, 42, 38, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  display: block;
  object-fit: cover;
  cursor: pointer;
}
.hero__video-caption {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 540px;
  line-height: 1.45;
}
.hero__video-caption span {
  color: var(--orange-dark);
  font-weight: 700;
  margin-right: 4px;
}
@media (max-width: 860px) {
  .hero__video { min-height: auto; }
  .hero__video-player { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video-glow { animation: none; }
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 26px;
  border-top: 1px solid var(--grey-line);
}
.hero__meta strong { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--orange-dark); }
.hero__meta span { color: var(--ink-soft); font-size: .92rem; }

/* Liste de bénéfices sous le hero — claire et rassurante */
.hero__benefits {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
}
.hero__benefits li span {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  box-shadow: 0 4px 10px rgba(155, 175, 126, .35);
}

/* Bandeau de preuves chiffrées — sous le hero, full-width */
.hero__strip {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero__strip > div {
  text-align: center;
  padding: 0 12px;
}
.hero__strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.35rem;
  color: var(--orange-dark);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero__strip span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .hero__strip strong { font-size: 2.7rem; }
  .hero__strip span { font-size: 0.9rem; }
}
@media (max-width: 700px) {
  .hero__strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 36px;
  }
  .hero__strip strong { font-size: 2.35rem; }
  .hero__strip span { font-size: 0.8rem; margin-top: 8px; }
}
@media (max-width: 420px) {
  .hero__strip strong { font-size: 1.9rem; }
  .hero__strip span { font-size: 0.7rem; }
}

@media (max-width: 860px) {
  .hero { padding: 40px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Sous-en-tête (autres pages)
   ========================================================================== */

.subhero {
  background: linear-gradient(135deg, #f8fbf5 0%, #eaf2ee 100%);
  padding: 70px 0 56px;
  border-bottom: 1px solid var(--grey-line);
  overflow: hidden;
}
.subhero h1 { margin-bottom: 14px; }
.subhero .lead { max-width: 760px; }
.subhero .title-mascot {
  display: block;
  position: relative;
  padding-right: 132px;
}
.subhero .title-mascot__img {
  position: absolute;
  right: 8px;
  top: 4px;
  width: 92px;
  opacity: .9;
}
.subhero .title-mascot__text {
  max-width: 820px;
}

/* Subhero en double colonne : texte (gauche) + panneau principes (droite) */
.subhero--dual { padding: 64px 0 56px; }
.subhero--dual .subhero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.subhero__main h1 { margin-bottom: 14px; }
.subhero__main .lead { max-width: 600px; }
/* Panneau principes : pas de carte. Filet tricolore en haut + contenu ouvert. */
.subhero__panel {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 16px 0 0;
  box-shadow: none;
  backdrop-filter: none;
}
.subhero__panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 60%, var(--sage) 100%);
  border-radius: 0;
}
.subhero__panel-title {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.subhero__panel-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 26px; height: 1px;
  background: var(--orange-soft);
}
.subhero__principles {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
}
/* Pas de sous-cards : juste un filet orange à gauche, le panneau parent suffit. */
.subhero__principles li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0 4px 14px;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--orange);
  border-radius: 0;
}

/* Panneau "3 étapes" pour la page inscription : numéros sérifs XL */
.subhero__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
  counter-reset: subhero-step;
}
.subhero__steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-line);
}
.subhero__steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.subhero__steps-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.subhero__steps strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}
.subhero__steps small {
  display: block;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .subhero__steps li { grid-template-columns: 44px 1fr; gap: 14px; }
  .subhero__steps-num { font-size: 1.9rem; }
}
.principle__icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(230, 145, 79, 0.12);
  color: var(--orange-dark);
}
.subhero__principles strong {
  display: block;
  font-size: .98rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}
.subhero__principles small {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.35;
  display: block;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .subhero--dual .subhero__grid { grid-template-columns: 1fr; gap: 32px; }
  .subhero__panel { max-width: 540px; }
}
@media (max-width: 480px) {
  .subhero__panel { padding: 24px 20px 20px; }
  .principle__icon { width: 32px; height: 32px; }
}

/* ==========================================================================
   Cartes / piliers
   ========================================================================== */

.grid {
  display: grid;
  gap: 44px 36px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* Tuile de pilier : pas de carte. Accent typographique avec un filet
   orange persistant en haut + icône + titre + texte. Espacement seul. */
.card {
  background: transparent;
  padding: 18px 0 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: transform .3s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--orange);
  transform: none;
  transition: width .35s ease, background .35s ease;
}
.card:hover { transform: none; }
.card:hover::before { width: 56px; }
.card.card--sage::before { background: var(--sage-dark); }
.card.card--teal::before { background: var(--teal); }
.card.card--sage::before { background: linear-gradient(90deg, var(--sage), #B8C9A3); }
.card.card--teal::before { background: linear-gradient(90deg, var(--teal), #7AB5A9); }
.card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(230, 145, 79, .12);
  color: var(--orange-dark);
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.card--sage .card__icon { background: rgba(155, 175, 126, .18); color: var(--sage-dark); }
.card--teal .card__icon { background: rgba(90, 155, 142, .15); color: var(--teal); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin: 0; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap .25s ease, border-color .25s ease, color .25s ease;
}
.card__link:hover {
  gap: 10px;
  border-bottom-color: var(--orange);
  color: var(--orange-dark);
}
.card__link span {
  display: inline-block;
  font-size: .95rem;
  transition: transform .3s ease;
}
.card__link:hover span { transform: translateX(2px); }

/* ==========================================================================
   Étapes (déroulement séance)
   ========================================================================== */

/* Étapes : pas de carte. Numéro XL en sérif sur la gauche, séparateur fin
   horizontal entre chaque, lecture éditoriale verticale. */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: baseline;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--grey-line);
  border-radius: 0;
  padding: 28px 0;
  box-shadow: none;
}
.step:last-child { border-bottom: 1px solid var(--grey-line); }
.step__num {
  counter-increment: step;
  width: auto; height: auto;
  border-radius: 0;
  display: block;
  background: transparent;
  color: var(--orange-dark);
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: right;
  padding-right: 4px;
}
.step__num::before { content: "0" counter(step); }
.step h4 { margin: 0 0 4px; }
@media (max-width: 700px) {
  .step { grid-template-columns: 60px 1fr; gap: 18px; padding: 22px 0; }
  .step__num { font-size: 2.2rem; }
}
.step__time {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: rgba(155, 175, 126, .15);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: 1px;
}
.step p { margin: 6px 0 0; color: var(--ink-soft); }

/* ==========================================================================
   Tarifs
   ========================================================================== */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

.price-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--grey-line);
  box-shadow:
    0 1px 2px rgba(44, 42, 38, 0.04),
    0 4px 12px rgba(44, 42, 38, 0.04);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s cubic-bezier(.2,.8,.2,1),
              border-color .25s ease;
  isolation: isolate;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(44, 42, 38, 0.06),
    0 22px 44px rgba(44, 42, 38, 0.10);
  border-color: var(--orange-soft);
}
.price-card--featured {
  border: 2px solid var(--orange);
  box-shadow:
    0 0 0 1px rgba(230, 145, 79, .15),
    0 12px 32px rgba(230, 145, 79, .18),
    0 4px 8px rgba(44, 42, 38, .06);
  transform: translateY(-4px);
}
.price-card--featured::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange) 0%, transparent 50%, var(--sage) 100%);
  opacity: .6;
  filter: blur(12px);
  animation: featured-glow 4s ease-in-out infinite alternate;
}
@keyframes featured-glow {
  0%   { opacity: .35; }
  100% { opacity: .65; }
}
@media (prefers-reduced-motion: reduce) {
  .price-card--featured::after { animation: none; }
}
.price-card--featured::before {
  /* Libellé personnalisable par carte via style="--featured-label: '...'" */
  content: var(--featured-label, "Le plus complet");
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.price-card__freq { font-size: 1rem; font-weight: 700; color: var(--sage-dark); letter-spacing: 0; text-transform: uppercase; margin-bottom: 8px; }
.price-card__title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 6px; }
.price-card__sub { color: var(--grey); font-size: .95rem; margin-bottom: 22px; }
.price-card__amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange-dark);
  line-height: 1;
}
.price-card__amount span { font-size: 1rem; color: var(--ink-soft); font-family: var(--font-sans); font-weight: 600; }
.price-card__perhour { color: var(--ink-soft); font-size: .95rem; margin: 6px 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--grey-line);
}
.price-card li:last-child { border-bottom: 0; }
.price-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--sage-dark);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; }

.price-note {
  margin-top: 28px;
  padding: 22px 26px;
  background: rgba(155, 175, 126, .12);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
}

/* ==========================================================================
   Horaires
   ========================================================================== */

.schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 700px) { .schedule { grid-template-columns: 1fr; } }
/* Planning : pas de carte. Titre orange + filet en haut + lignes ouvertes. */
.schedule__block {
  background: transparent;
  border: 0;
  border-top: 2px solid var(--orange);
  border-radius: 0;
  padding: 18px 0 0;
}
.schedule__block h3 { color: var(--orange-dark); margin-bottom: 14px; }
.schedule__block ul { list-style: none; padding: 0; margin: 0; }
.schedule__block li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--grey-line);
  display: flex; justify-content: space-between; gap: 16px;
}
.schedule__block li:last-child { border-bottom: 0; }
.schedule__block li strong { font-weight: 700; color: var(--ink); }

/* ==========================================================================
   Formulaire d'inscription
   ========================================================================== */

.form-section {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--grey-line);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.form-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--orange-dark);
  margin: 0 0 6px;
  display: flex; align-items: center; gap: 12px;
}
.form-section h2::before {
  content: "";
  display: inline-block;
  width: 32px; height: 4px;
  background: var(--orange);
  border-radius: 4px;
}
.form-section__intro { color: var(--ink-soft); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; margin-bottom: 14px; }
.form-row--3 { grid-template-columns: repeat(3, 1fr); }
.form-row--full { grid-template-columns: 1fr; }
@media (max-width: 700px) { .form-row, .form-row--3 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.field label .req { color: var(--orange-dark); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-line);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E6914F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Zone d'upload de fichier (photo enfant, attestation assurance) */
.file-drop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px dashed var(--grey-line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  min-height: 64px;
}
.file-drop:hover {
  border-color: var(--orange);
  background: rgba(230, 145, 79, 0.04);
}
.file-drop:focus-within {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 145, 79, .15);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
}
.file-drop__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(230, 145, 79, 0.12);
  color: var(--orange-dark);
}
.file-drop__label {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.file-drop__label strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.file-drop__label small {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.2;
}
.file-drop__filename {
  flex: 1 1 auto;
  text-align: right;
  font-size: .85rem;
  color: var(--ink-soft);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.file-drop__filename:empty::before { content: attr(data-empty); }
.file-drop.is-filled { border-style: solid; border-color: var(--sage-dark); background: rgba(155, 175, 126, 0.06); }
.file-drop.is-filled .file-drop__icon { background: rgba(155, 175, 126, 0.18); color: var(--sage-dark); }
.file-drop.is-filled .file-drop__filename { color: var(--sage-dark); font-style: normal; font-weight: 600; }

@media (max-width: 600px) {
  .file-drop { flex-wrap: wrap; }
  .file-drop__filename { width: 100%; text-align: left; padding-top: 4px; }
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 145, 79, .15);
}
.field textarea { min-height: 90px; resize: vertical; }
.field__hint { font-size: .82rem; color: var(--grey); }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
  font-size: .98rem;
  color: var(--ink);
}
.checkbox input { margin-top: 4px; transform: scale(1.2); accent-color: var(--orange); }

.radio-row { display: flex; gap: 22px; flex-wrap: wrap; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.radio input { transform: scale(1.2); accent-color: var(--orange); }

.signature-pad {
  border: 2px dashed var(--grey-line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  position: relative;
  height: 180px;
  overflow: hidden;
}
.signature-pad canvas { width: 100%; height: 100%; touch-action: none; cursor: crosshair; display: block; }
.signature-pad__hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--grey); pointer-events: none; font-style: italic;
}
.signature-pad.is-drawn .signature-pad__hint { display: none; }

.formulary-actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-top: 14px; padding-top: 22px;
  border-top: 1px solid var(--grey-line);
}
.formulary-actions .btn { min-width: 180px; }

.formulary-status {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.formulary-status--info    { background: rgba(90, 155, 142, .12); color: var(--teal); border-left: 4px solid var(--teal); }
.formulary-status--success { background: rgba(155, 175, 126, .18); color: var(--sage-dark); border-left: 4px solid var(--sage); }
.formulary-status--error   { background: rgba(230, 145, 79, .15); color: var(--orange-dark); border-left: 4px solid var(--orange); }

.tarif-radio-list { display: grid; gap: 12px; }
.tarif-radio {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--cream);
  transition: border-color .2s, background .2s;
}
.tarif-radio:hover { border-color: var(--orange-soft); }
.tarif-radio input { margin-top: 4px; accent-color: var(--orange); transform: scale(1.2); }
.tarif-radio__title { font-weight: 700; color: var(--ink); }
.tarif-radio__desc  { color: var(--ink-soft); font-size: .95rem; }
.tarif-radio__price { color: var(--orange-dark); font-weight: 700; margin-left: auto; white-space: nowrap; }
.tarif-radio:has(input:checked) {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 145, 79, .12);
}

/* ==========================================================================
   Listes / objectifs
   ========================================================================== */

.bullet-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.bullet-list--wide {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 18px;
  margin-top: 8px;
}
/* Pilules ovales : trait sombre net (charte ink), illumination orange au hover */
.bullet-list.bullet-list--wide li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px 16px 22px;
  background: rgba(255, 255, 255, 0.4);
  border: 1.8px solid rgba(44, 42, 38, 0.85);
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-size: .95rem;
  line-height: 1.35;
  cursor: default;
  transition: border-color .35s ease, box-shadow .35s ease, background .35s ease, transform .35s ease, color .35s ease;
}
.bullet-list.bullet-list--wide li::before {
  content: "";
  position: relative;
  flex: 0 0 auto;
  left: auto; top: auto;
  transform: none;
  width: 11px; height: 11px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(230, 145, 79, .22);
  transition: box-shadow .35s ease, transform .35s ease, background .35s ease;
}
.bullet-list.bullet-list--wide li:hover {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 4px rgba(230, 145, 79, 0.18),
    0 0 24px -2px rgba(230, 145, 79, 0.45),
    0 12px 28px -14px rgba(230, 145, 79, 0.55);
  transform: translateY(-2px);
}
.bullet-list.bullet-list--wide li:hover::before {
  box-shadow: 0 0 0 5px rgba(230, 145, 79, .32), 0 0 14px rgba(230, 145, 79, .7);
  transform: scale(1.15);
}
@media (max-width: 1000px) { .bullet-list--wide { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 700px) {
  .bullet-list { grid-template-columns: 1fr; }
  .bullet-list--wide { grid-template-columns: 1fr; gap: 12px; }
  .bullet-list.bullet-list--wide li { padding: 14px 22px 14px 18px; font-size: .9rem; }
}
.bullet-list li {
  position: relative;
  padding: 4px 0 4px 26px;
  background: transparent;
  border-radius: 0;
  border: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}
.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  transform: none;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 145, 79, .12);
}

/* ==========================================================================
   Bandeau CTA
   ========================================================================== */

.cta-band {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(155,175,126,.25), transparent 50%),
    linear-gradient(135deg, var(--teal-dark) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: 84px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 640px; margin: 0 auto 26px; }
.cta-band .btn--ghost { color: #fff; border-color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--orange-dark); }
.cta-band .btn--primary { background: #fff; color: var(--orange-dark); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: var(--cream); color: var(--orange-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */

/* ==========================================================================
   Footer 2026 — éditorial, dark, transition douce avec le CTA-band orange
   ========================================================================== */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(230, 145, 79, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(155, 175, 126, 0.05), transparent 70%),
    #17211f;
  color: #d8d3c8;
  padding: 0 0 28px;
  isolation: isolate;
  overflow: hidden;
}
/* Transition douce avec la section précédente (CTA orange ou autre) :
   un dégradé subtil au sommet du footer absorbe la rupture chromatique. */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(230, 145, 79, 0.18) 0%, rgba(230, 145, 79, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.site-footer .container {
  position: relative;
  z-index: 1;
  padding-top: 76px;
  padding-bottom: 0;
}

/* Bloc marque éditorial (h2 sérif XL + tagline) */
.site-footer__brand-block {
  max-width: 720px;
  margin: 0 0 38px;
}
.site-footer__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
}
.site-footer__brand-name::after {
  content: "";
  position: absolute;
  left: 0; bottom: -10px;
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 100%);
}
.site-footer__tagline {
  color: #c9c4b9;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 24px 0 0;
}

/* Séparateur fin entre brand-block et grid */
.site-footer__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 44px;
}

/* Grille 3 colonnes : Lieu (avec photo) / Navigation / Contact */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 56px;
  margin-bottom: 44px;
  align-items: start;
}
.site-footer__col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 12px;
  position: relative;
}
.site-footer__col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 1px;
  background: var(--orange-soft);
  opacity: .9;
}

/* Photo de l'immeuble : vignette éditoriale (plus de bandeau) */
.site-footer__lieu-photo {
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__lieu-photo img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
  transition: transform .9s ease, filter .5s ease;
}
.site-footer__lieu-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}
.site-footer__col--lieu p {
  font-size: .9rem;
  line-height: 1.55;
  color: #c9c4b9;
  margin: 0;
}
.site-footer__col--lieu p strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.site-footer p, .site-footer a { color: #c9c4b9; font-size: .92rem; line-height: 1.65; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--orange-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; line-height: 1.55; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .76rem;
  letter-spacing: .04em;
  color: #8a8478;
}

/* Tablette : Lieu pleine largeur en haut, Navigation + Contact dessous */
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
  }
  .site-footer__col--lieu {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: center;
  }
  .site-footer__col--lieu h4 { grid-column: 1 / -1; margin-bottom: 8px; }
  .site-footer__lieu-photo { margin: 0; }
  .site-footer__lieu-photo img { height: 130px; }
}
@media (max-width: 600px) {
  .site-footer .container { padding-top: 56px; }
  .site-footer__brand-block { margin-bottom: 28px; }
  .site-footer__brand-name { font-size: 2rem; }
  .site-footer__tagline { font-size: .94rem; }
  .site-footer__divider { margin-bottom: 32px; }
  .site-footer__grid {
    grid-template-columns: 1fr 1.55fr;
    gap: 28px 24px;
    margin-bottom: 30px;
  }
  .site-footer__col--lieu {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    gap: 14px;
  }
  .site-footer__lieu-photo img { height: 120px; }
  .site-footer__col a[href^="mailto:"] {
    font-size: .82rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  .site-footer__bottom {
    padding-top: 18px;
    font-size: .7rem;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .site-footer li { overflow-wrap: break-word; }
}

/* ==========================================================================
   Liens utilitaires & mises en page
   ========================================================================== */

.split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
.split.split--top { align-items: start; gap: 64px; margin-bottom: 48px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.split--top { gap: 40px; margin-bottom: 32px; }
}

/* Carte de citation moderne (côté droit du split) */
.quote-block { width: 100%; }
.quote-card {
  position: relative;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: 70px 36px 32px;
  box-shadow: 0 24px 60px -28px rgba(44, 42, 38, 0.22), 0 2px 6px rgba(44, 42, 38, 0.05);
  overflow: hidden;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: -32px; left: 18px;
  font-family: var(--font-serif);
  font-size: 11rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.18;
  pointer-events: none;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.quote-card__cite {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote-card__name {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.quote-card__role {
  font-family: var(--font-sans);
  color: var(--ink-soft);
  font-size: .88rem;
  letter-spacing: 0.02em;
}
.quote-card__role .role-line { display: inline; }
.quote-card__role .role-sep { display: inline; }
@media (max-width: 540px) {
  .quote-card__role .role-line { display: block; }
  .quote-card__role .role-sep { display: none; }
}
@media (max-width: 700px) {
  .quote-card { padding: 52px 24px 26px; }
  .quote-card blockquote { font-size: 1.2rem; }
  .quote-card::before { font-size: 8rem; top: -22px; left: 12px; }
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(155, 175, 126, .18);
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 700;
}

.divider { height: 1px; background: var(--grey-line); border: 0; margin: 36px 0; }

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 700px) { .kpi-row { grid-template-columns: 1fr; } }
.kpi {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  border: 1px solid var(--grey-line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(44, 42, 38, 0.08);
}
.kpi__num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 60%, var(--sage-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange-dark);
  line-height: 1;
  letter-spacing: -.03em;
}
.kpi__label { color: var(--ink-soft); font-weight: 600; margin-top: 10px; font-size: .95rem; }

.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--grey-line);
  display: grid; gap: 14px;
}
.contact-card__row { display: flex; gap: 14px; align-items: flex-start; }
.contact-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(230, 145, 79, .15);
  color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 40px;
  font-size: 1.1rem;
}
.contact-card__row strong { display: block; font-size: .9rem; color: var(--grey); font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.contact-card__row span { display: block; color: var(--ink); }

/* ==========================================================================
   Photo de l'immeuble Le Bihan, intégrée en haut du footer
   ========================================================================== */
.site-footer__photo {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  isolation: isolate;
}
.site-footer__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform .9s ease;
}
.site-footer__photo:hover img { transform: scale(1.05); }
.site-footer__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 31, 0.05) 0%, rgba(23, 33, 31, 0.45) 55%, rgba(23, 33, 31, 1) 100%);
  z-index: 1;
}
.site-footer__photo-overlay {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 22px;
  color: #fff;
  gap: 6px;
}
.site-footer__photo-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer__photo-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--orange-soft);
  opacity: .9;
}
.site-footer__photo-overlay strong {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.site-footer__photo-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.site-footer__photo-overlay a:hover {
  color: var(--orange-soft);
  border-bottom-color: var(--orange-soft);
}
.site-footer__photo-overlay a::after {
  content: "↗";
  font-size: .9rem;
}
@media (max-width: 700px) {
  .site-footer__photo { height: 150px; }
  .site-footer__photo-overlay { padding-bottom: 16px; }
  .site-footer__photo-overlay strong { font-size: 1.25rem; }
  .site-footer__photo-eyebrow { font-size: .62rem; letter-spacing: .22em; }
  .site-footer .container { padding-top: 28px; }
  .site-footer { padding-bottom: 18px; }
  .site-footer p { font-size: .86rem; line-height: 1.55; }
  .site-footer a, .site-footer li { font-size: .86rem; line-height: 1.4; }
  .site-footer h4 {
    font-size: .66rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    letter-spacing: .2em;
  }
  .site-footer h4::after { width: 22px; }
  .site-footer li { margin-bottom: 7px; }
  .site-footer__brand { margin-bottom: 14px; }
  .site-footer__brand img { height: 92px; width: auto; }
  .site-footer__bottom {
    padding-top: 14px;
    font-size: .7rem;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}
@media (max-width: 400px) {
  .site-footer__photo { height: 130px; }
  .site-footer__photo-overlay strong { font-size: 1.1rem; }
}

/* ==========================================================================
   FAQ accordéon
   - Une seule question ouverte à la fois (attribut HTML name="faq")
   - Animation douce d'ouverture
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] {
  border-color: var(--orange-soft);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item summary:hover { color: var(--orange-dark); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  animation: faq-slide-down .25s ease;
}
.faq-item__body p { margin: 0; }
@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after,
  .faq-item__body { transition: none; animation: none; }
}

/* ==========================================================================
   Section fondateur (E-E-A-T)
   Grille équilibrée : carte d'identité (gauche) | texte éditorial (droite)
   ========================================================================== */
.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.founder-text { align-self: center; }

.founder-card {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.78) 0%, rgba(245, 237, 224, 0.55) 100%);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: 40px 36px 34px;
  box-shadow: 0 28px 60px -34px rgba(44, 42, 38, 0.22);
  overflow: hidden;
  isolation: isolate;
}
.founder-card::after {
  content: "";
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 50%, var(--sage) 100%);
  border-radius: 0 0 4px 4px;
}
.founder-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  background: transparent;
  z-index: 0;
  pointer-events: none;
  display: none;
}
.founder-card__halo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 240px;
  margin-bottom: 14px;
}
.founder-card__halo::before {
  content: "";
  position: absolute;
  inset: auto 50% 0 50%;
  transform: translateX(-50%);
  width: 240px; height: 50px;
  background: radial-gradient(ellipse at center, rgba(90, 155, 142, 0.28) 0%, transparent 65%);
  filter: blur(2px);
  z-index: 0;
}
.founder-card__halo img {
  position: relative;
  z-index: 1;
  height: 220px;
  width: auto;
  filter: drop-shadow(0 16px 24px rgba(44, 42, 38, 0.18));
  /* Mascotte statique : pas d'animation floatY */
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.founder-card__id {
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}
.founder-card__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.founder-card__role {
  display: inline-block;
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.founder-credentials {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}
/* Lignes éditoriales : ni fond, ni bordure-cadre. Juste un filet orange à gauche. */
.founder-credentials li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 0 4px 16px;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--orange);
  border-radius: 0;
}
.founder-credentials__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--orange-dark);
  line-height: 1;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.founder-credentials__num svg { color: var(--orange-dark); }
.founder-credentials strong {
  display: block;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}
.founder-credentials small {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { max-width: 540px; margin: 0 auto; padding: 28px 24px 24px; }
  .founder-card__halo { height: 180px; }
  .founder-card__halo img { height: 170px; }
}
@media (max-width: 480px) {
  .founder-card__halo { height: 160px; }
  .founder-card__halo img { height: 150px; }
  .founder-credentials__num { font-size: 1.5rem; min-width: 32px; }
}

/* ==========================================================================
   Section vidéo Synapi
   ========================================================================== */

.video-section {
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(90, 155, 142, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(230, 145, 79, 0.10), transparent 60%),
    var(--beige);
}
.video-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .video-block { grid-template-columns: 1fr; gap: 28px; }
}
.video-block__intro h2 { margin-bottom: 14px; }
.video-block__intro .lead { margin-bottom: 22px; }
.video-block__hints {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.video-block__hints li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .98rem;
}
.video-block__hints li span {
  color: var(--orange-dark);
  font-weight: 700;
  flex: 0 0 auto;
}
.video-block__player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1f1d1a;
  aspect-ratio: 16 / 9;
  isolation: isolate;
}
.video-block__player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-block__player::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================================
   Mascotte d'illustration (sections internes)
   ========================================================================== */

.title-mascot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
/* ── TAILLE STANDARD DES MASCOTTES ──
   Tous les PNG mascotte sont recadrés au contenu (zéro marge transparente).
   Une seule règle de hauteur garantit une taille visuelle identique partout :
   190px desktop / 120px mobile. Largeur auto selon le ratio de chaque pose. */
.title-mascot__img {
  flex: 0 0 auto;
  height: 190px;
  width: auto;
  filter: drop-shadow(0 8px 14px rgba(44, 42, 38, 0.16));
  /* Mascottes statiques : pas de transition */
}
/* Mascottes statiques : pas d'effet hover */
.title-mascot:hover .title-mascot__img { transform: none; }
/* Mascotte alignée sur le titre h2 (pas centrée verticalement avec tout le bloc) */
.title-mascot--at-title { align-items: flex-start; gap: 20px; }
.title-mascot--at-title .title-mascot__img {
  margin-top: 22px; /* compensation pour aligner la main sur le h2, pas sur l'eyebrow */
}
@media (max-width: 700px) {
  .title-mascot__img { height: 120px; }
  .title-mascot--at-title .title-mascot__img { margin-top: 14px; }
}
.title-mascot__text { flex: 1 1 auto; }
.title-mascot__text h2,
.title-mascot__text h3 { margin-bottom: 6px; }
@media (max-width: 600px) {
  .title-mascot { gap: 14px; }
  /* Pas de width forcée ici : la hauteur standard (120px mobile) est définie
     plus haut, width: auto préserve le ratio de chaque pose. */
  .subhero .title-mascot { padding-right: 0; }
  .subhero .title-mascot__img { right: 0; top: 4px; opacity: .5; }
  .subhero .eyebrow { padding-right: 66px; }
}

/* ── HALO LUMINEUX derrière la mascotte taxi (bloc transport) ──
   Même langage visuel que les halos des blocs 1 et 3 (perso-banner__halo). */
.taxi-halo {
  position: relative;
}
.taxi-halo::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 145, 79, 0.8), transparent 68%);
  filter: blur(40px);
  opacity: 0.75;
  pointer-events: none;
}

/* ── SÉANCE DÉCOUVERTE : carte prix + bouton sur une ligne (desktop),
   note « sous réserve » en une ligne sous la carte. ── */
.decouverte-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 10px 0 14px;
}
.decouverte-row .perso-price { flex: 0 0 auto; min-width: 240px; }
/* Spécificité renforcée : la règle .perso-banner__cta (align-self: flex-start),
   déclarée plus bas dans le fichier, l'emporterait sur un simple .decouverte-cta */
.decouverte-row .decouverte-cta { margin: 0; align-self: center; } /* centré sur la hauteur de la carte prix */
.decouverte-row .decouverte-cta span { white-space: nowrap; } /* libellé du bouton sur une seule ligne */
/* Le PNG Curieux est recadré au contenu (zéro marge), contrairement au
   calendrier qui garde ~20 % de marges transparentes : on compense pour
   une taille VISUELLE identique (420px fichier ≈ 338px de contenu). */
.perso-banner__mascot.decouverte-mascot { max-height: 338px; }
@media (max-width: 760px) {
  .perso-banner__mascot.decouverte-mascot { max-height: 225px; }
}
@media (max-width: 700px) {
  .decouverte-row { flex-direction: column; align-items: stretch; gap: 18px; }
  .decouverte-row .perso-price { min-width: 0; }
  .decouverte-cta { justify-content: center; }
}

/* ── COMPARATIF PÉRIODE / ANNÉE (page tarifs) ──
   Côte à côte sur desktop ; empilé en pleine largeur sur mobile
   (deux colonnes à 390px = cartes filiformes illisibles). */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }
}

/* ── BANDEAU HORAIRES (page tarifs) ──
   2 colonnes sur desktop, empilé sur mobile. Les unités horaires
   ("Accueil 15h00") restent insécables mais le conteneur peut replier. */
.horaires-band {
  max-width: 1100px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  box-shadow: 0 4px 16px rgba(44, 42, 40, 0.06);
  align-items: center;
}
.horaires-band__col { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.horaires-band__head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--ink); font-size: 1rem;
}
.horaires-band__dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; flex: 0 0 auto;
}
.horaires-band__sep { background: #e6e6e6; width: 1px; height: 100%; min-height: 50px; }
.horaires-band__times {
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;            /* replie proprement sur petit écran */
  align-items: baseline;
  gap: 2px 8px;
}
.horaires-band__times .t { white-space: nowrap; }
.horaires-band__times .lbl { opacity: 0.6; }
.horaires-band__times strong { color: var(--ink); }
.horaires-band__times .sep { opacity: 0.4; }
@media (max-width: 720px) {
  /* Les 2 jours restent côte à côte ; les horaires passent en 3 lignes
     (Accueil / Séance / Fermeture) dans chaque colonne. */
  .horaires-band { grid-template-columns: 1fr 1px 1fr; gap: 14px; padding: 18px 16px; }
  .horaires-band__head { font-size: 0.92rem; }
  .horaires-band__times {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-left: 0;
    font-size: 0.8rem;
  }
  .horaires-band__times .sep { display: none; }
}

/* Mascotte ancrée dans un coin de section */
.section-mascot {
  position: relative;
  isolation: isolate;
}
.section-mascot__img {
  position: absolute;
  z-index: 0;
  width: 180px;
  opacity: 0.92;
  filter: drop-shadow(0 12px 22px rgba(44, 42, 38, 0.18));
  pointer-events: none;
}
.section-mascot__img--right { right: -20px; bottom: -20px; }
.section-mascot__img--left  { left: -30px; top: -10px; }
.section-mascot > .container { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .section-mascot__img { width: 110px; opacity: 0.7; }
  .section-mascot__img--right { right: 8px; bottom: 8px; }
  .section-mascot__img--left  { left: 8px; top: 8px; }
}

/* Mascotte "peek" qui sort d'un bloc (carte, citation) */
.peek-mascot { position: relative; }
.peek-mascot__img {
  position: absolute;
  z-index: 3;
  height: 190px;
  width: auto;
  right: -22px;
  top: -86px;
  filter: drop-shadow(0 14px 22px rgba(44, 42, 38, 0.22));
  pointer-events: none;
}
@media (max-width: 700px) {
  .peek-mascot__img { height: 120px; width: auto; right: -8px; top: -58px; opacity: .9; }
}

/* Plus de cartes pleines : juste un filet orange à gauche pour signaler
   un encart éditorial. Pas de fond, pas d'ombre. */
.expertise-card,
.mascot-note {
  position: relative;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--orange);
  border-radius: 0;
  box-shadow: none;
}
.expertise-card {
  padding: 34px;
  overflow: hidden;
}
.expertise-card__mascot {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 84px;
  opacity: .85;
  filter: drop-shadow(0 12px 18px rgba(32, 42, 39, .15));
  pointer-events: none;
}
.expertise-card h3 {
  max-width: 380px;
  padding-right: 76px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(63, 129, 120, .12);
}
.mascot-note {
  min-height: 300px;
  padding: 32px 30px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.mascot-note__img {
  position: absolute;
  right: 20px;
  top: 14px;
  height: 190px;
  width: auto;
  opacity: .86;
  filter: drop-shadow(0 12px 18px rgba(32, 42, 39, .15));
  pointer-events: none;
  /* NB : pas de transform ici — le verrouillage global "transform: none !important"
     sur les mascottes l'écraserait. L'orientation passe par un fichier miroir
     (mascotte-curieux-miroir.png). */
}
.mascot-note__body {
  max-width: 420px;
  padding-top: 118px;
}
.mascot-note p {
  color: var(--ink-soft);
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .expertise-card { padding: 28px; }
  .expertise-card__mascot { width: 58px; opacity: .68; }
  .expertise-card h3 { padding-right: 48px; }
  .mascot-note { min-height: 220px; padding: 28px; }
  .mascot-note__img { height: 120px; width: auto; opacity: .7; }
  .mascot-note__body { padding-top: 78px; }
}

/* Animation douce d'apparition */
/* Apparition au scroll : fondu opacité uniquement, plus aucun déplacement
   (évite que les mascottes/blocs bougent à l'arrivée). */
.fade-in { opacity: 0; transition: opacity .6s ease; }
.fade-in.is-visible { opacity: 1; }

/* ════════════════════════════════════════════════════════════════════
   MASCOTTES — verrouillage global : aucune image de mascotte ne bouge
   (apparition, hover parent, hover enfant, animation infinie, etc.)
   ════════════════════════════════════════════════════════════════════ */
.title-mascot__img,
.mascot-note__img,
.expert-panel__mascot,
.peek-mascot__img,
.founder-card__halo img,
.perso-banner__mascot,
.mascot-glow img,
img[src*="mascotte"],
img[src*="mascot/"],
img[src*="Un%20rythme"],
img[src*="Un rythme"],
img[alt*="ascotte" i],
img[alt*="ascotte" i]{
  animation: none !important;
  transform: none !important;
}
/* Hovers sur conteneurs de mascottes : pas de translation des enfants */
.title-mascot:hover .title-mascot__img,
.mascot-note:hover .mascot-note__img,
.expert-panel:hover .expert-panel__mascot,
.peek-mascot:hover .peek-mascot__img,
.founder-card:hover .founder-card__halo img,
.perso-banner:hover .perso-banner__mascot,
.mascot-glow:hover img {
  transform: none !important;
}

/* Print : si l'utilisateur imprime quand même */
@media print {
  .site-header, .site-footer, .nav-toggle, .formulary-actions, .cta-band { display: none !important; }
  .form-section { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  body { background: #fff; }
}

/* ════════════════════════════════════════════════════════════════════
   MODALE DE CONTACT UNIVERSELLE (Web3Forms)
   ════════════════════════════════════════════════════════════════════ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.contact-modal.is-open {
  display: flex;
  opacity: 1;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 30, 36, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.contact-modal__panel {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  padding: 36px 32px 28px;
  animation: contactModalSlide 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes contactModalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(28, 30, 36, 0.06);
  border: none;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-modal__close:hover { background: rgba(28, 30, 36, 0.12); }
.contact-modal__head { margin-bottom: 18px; }
.contact-modal__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 6px;
}
.contact-modal__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.15;
}
.contact-modal__intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-modal__field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.contact-modal__field input,
.contact-modal__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(228, 218, 200, 0.9);
  border-radius: 10px;
  background: #FBF7F0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.contact-modal__field input:focus,
.contact-modal__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 145, 79, 0.15);
}
.contact-modal__field textarea { min-height: 110px; }
.contact-modal__status {
  font-size: 0.9rem;
  padding: 0;
  border-radius: 8px;
  line-height: 1.5;
}
.contact-modal__status:empty { display: none; }
.contact-modal__status--info {
  padding: 10px 14px;
  background: rgba(63, 129, 120, 0.08);
  color: var(--teal);
}
.contact-modal__status--success {
  padding: 10px 14px;
  background: rgba(122, 142, 95, 0.12);
  color: var(--sage-dark);
  font-weight: 600;
}
.contact-modal__status--error {
  padding: 10px 14px;
  background: rgba(185, 104, 53, 0.10);
  color: var(--orange-dark);
}
.contact-modal__status a { color: inherit; text-decoration: underline; }
.contact-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
  flex-wrap: wrap;
}
.contact-modal__actions .btn { padding: 11px 22px; }
@media (max-width: 520px) {
  .contact-modal { padding: 12px; }
  .contact-modal__panel { padding: 28px 22px 22px; border-radius: 16px; }
  .contact-modal__actions { flex-direction: column-reverse; }
  .contact-modal__actions .btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════════
   TARIFS — Hero compact 2 colonnes (tarifs.html)
   ════════════════════════════════════════════════════════════════════ */
.tarifs-hero {
  position: relative;
  background: linear-gradient(135deg, #f8fbf5 0%, #eef4ec 55%, #f5efe4 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(228, 218, 200, 0.55);
  overflow: hidden;
  isolation: isolate;
}
.tarifs-hero__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}
.tarifs-hero__halo--orange {
  width: 360px; height: 360px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(230, 145, 79, 0.6), transparent 70%);
}
.tarifs-hero__halo--sage {
  width: 320px; height: 320px;
  bottom: -120px; left: -60px;
  background: radial-gradient(circle, rgba(122, 142, 95, 0.45), transparent 70%);
}
.tarifs-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.tarifs-hero__main { display: flex; flex-direction: column; gap: 16px; }
.tarifs-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
  margin: 4px 0 0;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.tarifs-hero__accent {
  color: var(--orange-dark);
  font-style: italic;
  font-weight: 600;
}
.tarifs-hero__lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 58ch;
}
/* Chips d'ancrage */
.tarifs-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.tarifs-chip {
  --chip-color: var(--sage-dark);
  --chip-color-2: var(--sage);
  --chip-tint: rgba(122, 142, 95, 0.10);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--chip-tint);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(8px);
}
.tarifs-chip__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  background: linear-gradient(135deg, var(--chip-color-2) 0%, var(--chip-color) 100%);
  color: #fff;
  border-radius: 999px;
  /* Sans-serif pour les chiffres : la serif (chiffres elzéviriens) était
     peu lisible à cette taille sur pastille colorée */
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 10px -4px var(--chip-tint);
}
.tarifs-chip__lbl {
  color: var(--ink);
  font-weight: 600;
}
.tarifs-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px var(--chip-color);
  background: #fff;
  border-color: var(--chip-color);
}

/* Variantes colorées — palette de marque */
.tarifs-chip--sage {
  --chip-color: var(--sage-dark);
  --chip-color-2: var(--sage);
  --chip-tint: rgba(122, 142, 95, 0.22);
}
.tarifs-chip--teal {
  --chip-color: var(--teal);
  --chip-color-2: #5AA59A;
  --chip-tint: rgba(63, 129, 120, 0.22);
}
.tarifs-chip--orange {
  --chip-color: var(--orange-dark);
  --chip-color-2: var(--orange);
  --chip-tint: rgba(230, 145, 79, 0.28);
}

/* Highlights chiffrés à droite */
.tarifs-hero__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}
.tarifs-highlight {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(228, 218, 200, 0.7);
  box-shadow: 0 18px 40px -20px rgba(44, 42, 38, 0.22);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.tarifs-highlight::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--teal);
  border-radius: 4px 0 0 4px;
}
.tarifs-highlight--alt::before { background: var(--orange-dark); }
.tarifs-highlight__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tarifs-highlight__big {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tarifs-highlight--alt .tarifs-highlight__big { color: var(--orange-dark); }
.tarifs-highlight__big em {
  font-style: italic;
  color: var(--orange-dark);
  font-weight: 700;
}
.tarifs-highlight--alt .tarifs-highlight__big em { color: var(--teal); }
.tarifs-highlight__unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.tarifs-highlight__sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Responsive hero */
@media (max-width: 880px) {
  .tarifs-hero { padding: 40px 0 36px; }
  .tarifs-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .tarifs-hero__highlights { flex-direction: row; }
  .tarifs-highlight { flex: 1; padding: 18px 18px; }
  .tarifs-highlight__big { font-size: 1.7rem; }
}
@media (max-width: 560px) {
  .tarifs-hero__highlights { flex-direction: column; }
  .tarifs-highlight { flex: none; }
  .tarifs-chip { font-size: 0.85rem; padding: 8px 14px 8px 8px; }
  .tarifs-chip__n { min-width: 28px; height: 24px; font-size: 0.85rem; }
}

/* ════════════════════════════════════════════════════════════════════
   FORMULE PERSONNALISÉE — bandeau premium (tarifs.html)
   ════════════════════════════════════════════════════════════════════ */
.perso-section {
  position: relative;
  overflow: hidden;
}
.perso-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 56px 60px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(251,247,240,0.92) 100%);
  box-shadow:
    0 30px 60px -20px rgba(44, 42, 38, 0.18),
    0 0 0 1px rgba(228, 218, 200, 0.6);
  overflow: hidden;
  isolation: isolate;
}
/* Halos décoratifs en arrière-plan */
.perso-banner__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}
.perso-banner__halo--orange {
  width: 320px; height: 320px;
  top: -100px; right: 5%;
  background: radial-gradient(circle, rgba(230, 145, 79, 0.55), transparent 70%);
}
.perso-banner__halo--sage {
  width: 260px; height: 260px;
  bottom: -80px; left: -40px;
  background: radial-gradient(circle, rgba(122, 142, 95, 0.45), transparent 70%);
}

/* Contenu textuel */
.perso-banner__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.eyebrow--accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: linear-gradient(120deg, rgba(230,145,79,0.15), rgba(122,142,95,0.12));
  border: 1px solid rgba(230, 145, 79, 0.35);
  border-radius: 999px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  width: max-content;
}
.eyebrow--accent::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.perso-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.perso-banner__lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 52ch;
}

/* Cards prix */
.perso-banner__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}
.perso-price {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 20px;
  text-align: center;
  border: 1px solid rgba(228, 218, 200, 0.7);
  box-shadow:
    0 10px 25px -12px rgba(44, 42, 38, 0.12),
    inset 0 0 0 0 transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.perso-price::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: currentColor;
  opacity: 0.85;
}
.perso-price--short { color: var(--teal); }
.perso-price--long  { color: var(--orange-dark); }
.perso-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px -12px rgba(44, 42, 38, 0.22);
}
.perso-price__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.perso-price__amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: inherit;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.perso-price__unit {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.perso-price__days {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Note explicative */
.perso-banner__note {
  display: flex;
  align-items: flex-start; /* le point reste calé sur la 1re ligne si le texte se replie */
  gap: 10px;
  margin: 4px 0 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.perso-banner__note em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}
.perso-banner__dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em; /* centre le point sur la 1re ligne de texte */
}

/* CTA */
.perso-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px -10px rgba(230, 145, 79, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.perso-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(230, 145, 79, 0.7);
}
.perso-banner__cta svg {
  transition: transform 0.2s ease;
}
.perso-banner__cta:hover svg {
  transform: translateX(3px);
}

/* Visuel mascotte à droite — fond fondu dans le site, statique */
.perso-banner__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.perso-banner__mascot {
  max-width: 100%;
  max-height: 420px;
  height: auto;
  /* Le détourage réel des pixels clairs vers la transparence est fait
     côté JS (voir script en bas de tarifs.html). Une drop-shadow douce
     est appliquée une fois le détourage actif. */
  filter: drop-shadow(0 18px 28px rgba(44, 42, 38, 0.22));
}

/* Responsive */
@media (max-width: 880px) {
  .perso-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 28px;
    border-radius: 22px;
  }
  .perso-banner__visual {
    order: -1;
    min-height: 240px;
  }
  .perso-banner__mascot { max-height: 280px; }
  .perso-banner__title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .perso-banner__prices { gap: 10px; }
  .perso-price { padding: 18px 14px; }
  .perso-price__amount { font-size: 2rem; }
}
@media (max-width: 480px) {
  .perso-banner { padding: 32px 20px; }
  .perso-banner__cta { width: 100%; justify-content: center; }
}
