/* ==========================================================================
   Éveil des Étoiles — Proposition V3 : identité V1 (« Aube étoilée ») × Kinez.
   Palette lavande / or / sauge / crème + étoiles, MAIS formes joueuses :
   sections à vagues, cartes "blob" arrondies, formes flottantes, rebonds.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..600;1,9..144,400..600&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --green:  #8FC6A2;  --green-d:  #4E8E69;
  --lav:    #B3A0D6;  --lav-d:    #7C66AE;
  --gold:   #F2C14E;  --gold-d:   #C8901F;
  --peach:  #F4A86B;  --peach-d:  #E2884A;
  --cream:  #FCF6EA;
  --white:  #FFFFFF;
  --ink:    #2F3A33;
  --muted:  #6C7468;
  --border: #ECE0CB;
  --footer: #4A3D70;         /* footer : violet profond (identique sidebar back-office) */
  --footer-ink:  #F4E8CF;    /* crème : titres du footer */
  --footer-body: rgba(244,232,207,.82); /* texte courant du footer */
  --footer-mut:  rgba(244,232,207,.55); /* texte secondaire du footer */
  --lav-deep:    #7C66AE;    /* lavande foncé (accents) */

  --radius: 28px;
  --shadow-sm: 0 4px 14px rgba(120, 92, 40, .08);
  --shadow:    0 16px 36px rgba(120, 92, 40, .12);
  --shadow-lg: 0 28px 60px rgba(95, 72, 38, .18);
  --max: 1160px;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
.ph { font-size: 1.5rem; line-height: 1; vertical-align: middle; }
body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--cream); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 560; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1340px; }
.section { padding: 5rem 0; position: relative; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.section-head { max-width: 64ch; margin: 0 auto 3rem; text-align: center; position: relative; z-index: 2; }
.section-head .lead { margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--body); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lav-d); background: #fff; padding: .4rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 1rem; }
.eyebrow::before { content: "✦"; color: var(--gold-d); }

/* ===== Boutons (ronds, rebond) ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.7rem; border-radius: 999px; font-family: var(--body); font-weight: 700; font-size: 1rem; border: 0; cursor: pointer; transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .2s; }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn-gold  { background: linear-gradient(135deg, var(--gold), #F7D26B); color: #5a4410; box-shadow: 0 8px 18px rgba(236,183,64,.35); }
.btn-green { background: var(--green-d); color: #fff; box-shadow: 0 8px 18px rgba(78,142,105,.3); }
.btn-lav   { background: var(--lav-d); color: #fff; box-shadow: 0 8px 18px rgba(124,102,174,.3); }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.08rem; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(252,246,234,.9); backdrop-filter: blur(10px); }
.nav { display: flex; align-items: center; gap: 1.25rem; height: 78px; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 560; font-size: 1.05rem; flex: 0 0 auto; }
.brand > img { height: 60px; width: auto; object-fit: contain; }
.brand .brand-title { height: 30px; width: auto; object-fit: contain; }
.brand span { white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 1.2rem; list-style: none; margin: 0 auto; padding: 0; }
.nav-links a { font-size: .94rem; font-weight: 600; color: var(--ink); white-space: nowrap; padding: .3rem 0; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 3px; border-radius: 3px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.nav-actions .btn { padding: .55rem 1.2rem; font-size: .9rem; }
.nav-cnx { font-weight: 700; color: var(--green-d); white-space: nowrap; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ===== Formes flottantes & étoiles ===== */
.float { animation: floaty 6s ease-in-out infinite; }
.float--slow { animation-duration: 9s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-16px) rotate(var(--rot,0deg)); } }
.blob-deco { position: absolute; border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; opacity: .55; z-index: 0; pointer-events: none; }

/* étoiles "doudou" au contour arrondi (déco) */
.deco-star { position: absolute; z-index: 0; pointer-events: none; color: var(--lav); opacity: .6; }
.deco-star svg { width: 100%; height: 100%; display: block; }
.deco-star svg path { fill: none; stroke: currentColor; stroke-width: 7; stroke-linejoin: round; stroke-linecap: round; }
.deco-star.is-gold { color: var(--gold); opacity: .8; }
.deco-star.is-green { color: var(--green); }

.sky { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; color: var(--gold); }
.star { position: absolute; display: block; filter: drop-shadow(0 1px 2px rgba(206,158,44,.28)); animation-name: star-float; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.star__in { display: block; width: 100%; height: 100%; transform-origin: center; animation-name: star-twinkle; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.star svg { display: block; width: 100%; height: 100%; }
.star.is-sparkle svg { animation: star-spin 18s linear infinite; }
@keyframes star-float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes star-twinkle { 0%,100% { opacity: .3; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes star-spin   { to { transform: rotate(360deg); } }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #EFEAF7 0%, #EAF3EC 55%, var(--cream) 100%); padding: 3.5rem 0 6rem; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 em { font-style: italic; color: var(--lav-d); }
.hero p { font-size: 1.2rem; color: var(--muted); max-width: 46ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__photo { position: relative; }
.hero__photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 48% 52% 56% 44% / 52% 46% 54% 48%; box-shadow: var(--shadow-lg); border: 8px solid #fff; }
.hero__badge { position: absolute; background: #fff; border-radius: 18px; padding: .75rem 1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .92rem; z-index: 3; }
.hero__badge .dot { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.hero__badge.b1 { top: 1.5rem; left: -1rem; } .hero__badge.b1 .dot { background: var(--green-d); }
.hero__badge.b2 { bottom: 2rem; right: -1rem; } .hero__badge.b2 .dot { background: var(--gold); color: #5a4410; }

/* ===== Bande colorée à grosses vagues (style Kinez) ===== */
.band { position: relative; background: linear-gradient(160deg, #8E79B8, #7C66AE); color: #fff; padding: 6rem 0; }
.band .container { position: relative; z-index: 2; }
.band h2 { color: #fff; }
.band .lead { color: rgba(255,255,255,.85); }
.band .eyebrow { background: rgba(255,255,255,.18); color: #fff; box-shadow: none; }
.band .eyebrow::before { color: #fff; }
.band__wave { position: absolute; left: 0; right: 0; line-height: 0; z-index: 1; }
.band__wave svg { display: block; width: 100%; height: 52px; }
.band__wave--top { top: -1px; }
.band__wave--bottom { bottom: -1px; }

/* ===== Vagues de séparation ===== */
.wave { display: block; line-height: 0; position: relative; z-index: 1; }
.wave svg { display: block; width: 100%; height: 64px; }
.wave--up { margin-bottom: -1px; }
.wave--down { margin-top: -1px; }

/* ===== Sections couleur ===== */
.section--white { background: var(--white); }

/* ===== À propos (portrait) ===== */
.about-home { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; }
.about-home__media { position: relative; max-width: 420px; margin: 0 auto; }
.about-home__media .hero__photo img { aspect-ratio: 1/1; }
.about-home__badge { position: absolute; left: 50%; bottom: -18px; transform: translateX(-50%); white-space: nowrap; background: #fff; color: var(--ink); font-size: .92rem; padding: .55rem 1.2rem; border-radius: 999px; box-shadow: var(--shadow); z-index: 2; }
.about-home__badge strong { color: var(--lav-d); }
.about-home__text .eyebrow { margin-bottom: 1rem; }
.about-home__text h2 { margin: 0 0 .3rem; }
.about-home__text .lead { color: var(--lav-d); font-weight: 600; margin-bottom: 1.2rem; }
.about-home__text > p { color: var(--muted); margin: 0 0 1rem; }
.about-home__chips { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.2rem 0 1.6rem; }
.about-home__chips li { background: #F3EFFA; color: var(--lav-d); font-weight: 600; font-size: .85rem; padding: .4rem .9rem; border-radius: 999px; }
@media (max-width: 880px) { .about-home { grid-template-columns: 1fr; gap: 2.5rem; } .about-home__text { text-align: center; } .about-home__chips { justify-content: center; } }
.section--mint  { background: #EAF3EC; }
.section--lilac { background: #EFEAF7; }

/* ===== Cartes blob ===== */
.grid { display: grid; gap: 1.75rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; z-index: 2; background: #fff; border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-sm); transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s; }
.card:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: var(--shadow); }
.card__icon { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 1.1rem; color: #fff; border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; background: var(--green-d); }
.card__icon .ph { font-size: 32px; }
.card__icon.c-gold { background: var(--gold); color: #5a4410; } .card__icon.c-peach { background: var(--peach); } .card__icon.c-lav { background: var(--lav-d); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }
.card.text-center { text-align: center; }
.card.text-center .card__icon { margin-inline: auto; }

/* ===== Cartes pastel "softcard" (style Kinez) ===== */
.softcard {
  position: relative; z-index: 2; text-align: center;
  background: var(--sc-bg, #EFEAF7);
  border-radius: 40px;
  padding: 2.5rem 1.75rem;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.softcard::before {
  content: ""; position: absolute; inset: 9px;
  border: 2px dashed var(--sc-line, rgba(124,102,174,.4));
  border-radius: 32px; pointer-events: none;
}
.softcard:hover { transform: translateY(-10px); }
.softcard__icon { color: var(--sc-ink, var(--lav-d)); margin-bottom: 1.1rem; }
.softcard__icon { text-align: center; }
.softcard__icon .ph { font-size: 60px; }
.softcard h3 { margin-bottom: .3rem; }
.softcard .sub { font-weight: 800; color: var(--sc-ink, var(--lav-d)); font-size: .92rem; margin-bottom: .5rem; }
.softcard p { color: var(--muted); margin: 0; font-size: .96rem; }
.sc-lav   { --sc-bg: #EFEAF7; --sc-line: rgba(124,102,174,.4); --sc-ink: var(--lav-d); }
.sc-mint  { --sc-bg: #E7F3EA; --sc-line: rgba(78,142,105,.42); --sc-ink: var(--green-d); }
.sc-gold  { --sc-bg: #FCEFD2; --sc-line: rgba(200,144,31,.45); --sc-ink: var(--gold-d); }
.sc-peach { --sc-bg: #FCE6DA; --sc-line: rgba(226,136,74,.5); --sc-ink: var(--peach-d); }
.softcard blockquote { margin: 0; }
.softcard .stars { color: var(--gold-d); letter-spacing: 2px; margin-bottom: .6rem; }
.softcard .quote { font-style: italic; color: var(--ink); }
.softcard .author { display: block; font-family: var(--display); font-weight: 560; color: var(--sc-ink); margin-top: .9rem; }

/* ===== Témoignage "capsule" (forme Kinez) ===== */
.tmcard { position: relative; z-index: 2; margin: 0; text-align: center; background: var(--sc-bg, #FCE6DA); border-radius: 90px 90px 84px 84px / 64px; padding: 2.5rem 2rem; }
.tmcard::before { content: ""; position: absolute; inset: -12px; border: 2px dashed var(--sc-line, rgba(226,136,74,.5)); border-radius: 100px; pointer-events: none; }
.tmavatar { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem; display: grid; place-items: center; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.tmavatar img { width: 100%; height: 100%; object-fit: cover; }
.tmavatar span { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--sc-ink, var(--lav-d)); }
.tmcard .stars { color: var(--gold-d); letter-spacing: 2px; margin-bottom: .6rem; }
.tmcard .quote { font-style: italic; color: var(--ink); margin-bottom: 1rem; }
.tmcard .author { font-family: var(--display); font-weight: 560; color: var(--ink); }
.tmcard .role { color: var(--muted); }

/* carrousel témoignages */
/* Logo en filigrane, grand, à droite en arrière-plan de la section témoignages */
.tm-section { position: relative; overflow: hidden; }
.tm-bg-logo { position: absolute; right: -70px; top: 50%; transform: translateY(-50%);
  width: 560px; max-width: 46%; opacity: .1; pointer-events: none; z-index: 0; user-select: none; }
.tm-section > .container { position: relative; z-index: 1; }
@media (max-width: 900px) { .tm-bg-logo { right: -110px; width: 360px; opacity: .07; } }

.tm-carousel { position: relative; }
/* Slider scroll-snap : chaque carte est un point d'ancrage, elles s'alignent
   toujours proprement (jamais coupées). Le padding loge le cadre pointillé
   décoratif (::before inset -12px) pour qu'il ne soit pas rogné par le scroll. */
.tm-track {
  display: flex; gap: 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 20px 20px 24px; scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tm-track::-webkit-scrollbar { display: none; }
/* Exactement 3 cartes pleines par vue (3 largeurs + 2 gaps = 100%) : aucun débord partiel */
.tm-track > .tmcard { flex: 0 0 calc((100% - 4rem) / 3); scroll-snap-align: start; }
@media (max-width: 900px) { .tm-track > .tmcard { flex-basis: calc((100% - 2rem) / 2); } }
@media (max-width: 620px) { .tm-track > .tmcard { flex-basis: 100%; } }
.tm-nav { display: flex; gap: .7rem; justify-content: center; margin-top: 1.8rem; }
.tm-arrow { width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--lav-d); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s, transform .2s; }
.tm-arrow:hover { background: var(--ink); transform: translateY(-2px); }
.tm-arrow:disabled { opacity: .35; cursor: default; transform: none; }
.tm-arrow .ph { font-size: 21px; }

/* Offres — cartes pastel à liseré pointillé (cohérent avec les softcards) */
.offercard { position: relative; display: flex; flex-direction: column; background: var(--sc-bg, #fff); border-radius: 40px; padding: 2.25rem; color: var(--ink); transition: transform .28s cubic-bezier(.34,1.56,.64,1); }
.offercard h3 { color: var(--ink); }
.offercard::before { content: ""; position: absolute; inset: 9px; border: 2px dashed var(--sc-line, rgba(124,102,174,.4)); border-radius: 32px; pointer-events: none; z-index: 0; }
.offercard > * { position: relative; z-index: 1; }
.offercard:hover { transform: translateY(-10px); }
.offercard .badge { align-self: flex-start; background: #fff; }
.offercard h3 { margin: 0 0 .3rem; }
.offercard__duration { font-family: var(--display); font-weight: 600; color: var(--sc-ink, var(--green-d)); margin-bottom: .7rem; }
.offercard p { color: var(--muted); flex-grow: 1; margin: 0 0 1.25rem; }
.offercard .btn { margin-top: auto; align-self: flex-start; }

/* Offres */
.offer { display: flex; flex-direction: column; }
.offer .price { font-family: var(--display); font-size: 1.9rem; font-weight: 600; color: var(--green-d); margin: .25rem 0; }
.offer .price small { font-family: var(--body); font-size: .85rem; color: var(--muted); font-weight: 600; }
.offer ul { list-style: none; padding: 0; margin: 1rem 0 1.25rem; display: grid; gap: .5rem; }
.offer li { display: flex; gap: .5rem; }
.offer li::before { content: "✦"; color: var(--gold-d); }
.offer .btn { margin-top: auto; }
.badge { display: inline-block; padding: .3rem .85rem; border-radius: 999px; font-size: .8rem; font-weight: 700; background: #EAF3EC; color: var(--green-d); margin-bottom: .8rem; }
.badge.is-peach { background: #FCE9D8; color: var(--peach-d); } .badge.is-lav { background: #EDE6F7; color: var(--lav-d); }

/* Témoignages */
.tcard { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
.tcard .stars { color: var(--gold-d); letter-spacing: 2px; margin-bottom: .8rem; }
.tcard p { font-style: italic; }
.tcard .author { font-family: var(--display); font-weight: 560; color: var(--lav-d); }

/* CTA — gros panneau pêche "doudou" à liseré pointillé */
.cta { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 1.5rem auto; background: #FCE6DA; border-radius: 64px 64px 60px 60px / 80px 80px 64px 64px; padding: 3.5rem 2.5rem; }
.cta::before { content: ""; position: absolute; inset: -14px; border: 2px dashed rgba(226,136,74,.55); border-radius: 72px; pointer-events: none; }
.cta h2 { color: var(--ink); }
.cta p { color: #7a5a44; }
.cta .hero__actions { justify-content: center; }
.cta .eyebrow { background: #fff; color: var(--peach-d); }
.cta .eyebrow::before { color: var(--peach-d); }

/* Section "Nos valeurs" : cartes pastel d'origine sur photo parallax (fond transparent) */
.values-parallax { position: relative; background-image: url('../image/hero-2.png'); background-size: cover; background-position: center; background-attachment: fixed; }
.values-parallax::before { content: ""; position: absolute; inset: 0; z-index: 0; background: rgba(252,246,234,.55); pointer-events: none; }
.values-parallax > .container { position: relative; z-index: 1; }
@media (max-width: 820px) { .values-parallax { background-attachment: scroll; } }
@media (prefers-reduced-motion: reduce) { .values-parallax { background-attachment: scroll; } }

/* ===== Footer ===== */
.site-footer { position: relative; background: linear-gradient(180deg, #4A3D70, #322C49); color: var(--footer-body); padding: 6rem 0 1.5rem; overflow: visible; }
.footer-clouds { position: absolute; top: 1px; left: 0; right: 0; transform: translateY(-100%); line-height: 0; color: var(--footer); pointer-events: none; z-index: 2; }
.footer-clouds svg { display: block; width: 100%; height: 64px; }
.footer-star { position: absolute; z-index: 1; color: rgba(255,255,255,.22); pointer-events: none; }
.footer-star svg { width: 100%; height: 100%; } .footer-star svg path { fill: none; stroke: currentColor; stroke-width: 7; stroke-linejoin: round; }
.footer-star.s-gold { color: rgba(247,206,91,.55); }
.footer-star.s-white { color: rgba(255,255,255,.28); }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr 1fr 1.1fr .9fr; gap: 2.5rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff; transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .2s, color .2s; }
.social:hover { transform: translateY(-4px) rotate(-6deg); background: var(--gold); color: #5a4410; }
.social .ph { font-size: 20px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer-contact li { display: flex; gap: .65rem; align-items: center; }
.footer-contact .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(236,183,64,.2); color: var(--gold); flex: 0 0 auto; }
.footer-contact .ic .ph { font-size: 18px; }
.site-footer h4 { font-family: var(--display); color: var(--footer-ink); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a { color: var(--footer-body); transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.footer-brand { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 22px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.footer-brand img { height: 200px; width: auto; max-width: 100%; object-fit: contain; }
.footer-brand strong { font-family: var(--display); color: var(--footer-ink); font-size: 1.1rem; }
.footer-bottom { border-top: 1px solid rgba(244,232,207,.16); margin-top: 2.5rem; padding-top: 1.25rem; text-align: center; font-size: .88rem; color: var(--footer-mut); }

/* ===== Ruban comparaison ===== */
.compare-ribbon { background: var(--ink); color: #fff; text-align: center; font-size: .9rem; padding: .55rem 1rem; }
.compare-ribbon a { color: var(--gold); font-weight: 700; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .hero__grid { grid-template-columns: 1fr; gap: 2rem; } .hero__photo { max-width: 380px; margin: 0 auto; } .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 680px) {
  .nav-links { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: .25rem; background: var(--cream); padding: 1rem 1.5rem; box-shadow: var(--shadow); display: none; }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-actions { display: none; }
  .nav-cta-mobile { display: block; margin-top: .35rem; }
  .nav-cta-mobile .btn { width: 100%; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* ===== Menu déroulant « Nos accompagnements » ===== */
.nav-links .has-submenu { position: relative; }
.nav-links .submenu-trigger { cursor: pointer; }
.nav-links .has-submenu::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: .8rem; }
.nav-links .caret { font-size: .68em; opacity: .65; }
.nav-links .submenu {
  list-style: none; margin: 0; padding: .4rem;
  position: absolute; top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 270px; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 200;
}
.nav-links .has-submenu:hover > .submenu,
.nav-links .has-submenu:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-links .submenu li { margin: 0; }
.nav-links .submenu a { display: block; padding: .65rem .85rem; border-radius: 10px; white-space: nowrap; font-weight: 600; }
.nav-links .submenu a::after { display: none; }
.nav-links .submenu a:hover { background: #EFEAF7; color: var(--lav-d); }

@media (max-width: 680px) {
  .nav-links .submenu {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; background: transparent; border: 0; box-shadow: none;
    padding: .1rem 0 .35rem .9rem; margin: 0;
  }
  .nav-links .submenu a { white-space: normal; padding: .5rem .25rem; }
  .nav-links .caret { display: none; }
}

/* Footer : coordonnées sous la marque + liens documents non encore renseignés */
.footer-grid .footer-contact { margin-top: 1.25rem; }
.site-footer .footer-soon { color: rgba(244,232,207,.4); cursor: default; }

/* Footer : encart certifications (Qualiopi + handicap) */
.footer-certifs { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 2.5rem; background: #fff; border-radius: 18px; padding: 1.25rem 1.75rem; margin: 2.5rem auto 0; max-width: 620px; box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.footer-certif { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.footer-certif img { height: 64px; width: auto; object-fit: contain; }
.footer-certif p { margin: 0; max-width: 320px; font-size: .72rem; line-height: 1.4; color: #4a5247; }

/* Accueil : légende sous le portrait + mise en avant formation */
.about-home__caption { text-align: center; font-weight: 700; color: var(--lav-d); margin: .9rem 0 0; }
.formation-feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.5rem; max-width: 720px; margin: 0 auto; text-align: center; }
.formation-feature .badge { display: inline-block; background: #F8E7B4; color: var(--gold-d); font-weight: 700; font-size: .8rem; letter-spacing: .02em; padding: .3rem .85rem; border-radius: 999px; margin-bottom: .9rem; }
.formation-feature h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0 0 .4rem; }
.formation-feature__tag { font-family: var(--display); font-style: italic; color: var(--lav-d); font-size: 1.1rem; margin: 0 0 1rem; }
.formation-feature__meta { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.5rem; padding: 0; margin: 1.2rem 0 1.6rem; }
.formation-feature__meta li { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--ink); }
.formation-feature__meta .ph { color: var(--gold-d); font-size: 1.15rem; }
