/* =====================================================================
   style.css  —  STYLES PRINCIPAUX (accueil léger : navbar, hero, footer)
   Ambiance : chaude, nature, Zen — moderne et professionnelle.
   ===================================================================== */

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Petits éléments réutilisables ---------- */
.eyebrow {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--terracotta);
}

.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--terracotta-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--teal);
}
.btn-ghost:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 230, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 215, 180, 0.6);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .7rem;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand__logo { width: 62px; height: 62px; border-radius: 50%; box-shadow: var(--shadow-soft); }
.brand__name { font-family: var(--font-title); font-weight: 600; font-size: 1.05rem; color: var(--ink); line-height: 1.15; }
.brand__role { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }

.nav__links { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav__links a {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  padding-block: .2rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: var(--teal-deep); border-radius: 2px; transition: .3s; transform-origin: center; }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding-top: clamp(1.2rem, 2.5vw, 2rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}
/* halo chaud décoratif en fond */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw; height: 55vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at center, rgba(240, 201, 120, 0.45), rgba(240, 201, 120, 0) 62%);
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 1rem 0 1.2rem;
  letter-spacing: -0.01em;
}
.hero__title .script {
  display: block;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
  margin-top: .2rem;
}
.hero__text {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.hero__text strong { color: var(--ink); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.8rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  font-family: var(--font-title);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust span::before { content: "✦"; color: var(--gold); }

/* visuel à droite */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__illustration {
  width: min(88%, 400px);
  filter: drop-shadow(0 25px 45px rgba(23, 57, 63, 0.22));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__leaf {
  position: absolute;
  color: var(--leaf);
  opacity: .5;
  z-index: -1;
}
.hero__leaf--1 { top: 4%; right: 2%; width: 90px; }
.hero__leaf--2 { bottom: 2%; left: 0; width: 70px; transform: rotate(160deg); }

/* =====================================================================
   APERÇU DES SERVICES (liste épurée)
   ===================================================================== */
.services { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.services .eyebrow, .services .section-title { text-align: center; }

/* Paragraphes d'introduction et de conclusion de la page Services */
.services__lead,
.services__closing {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}
.services__lead { margin-bottom: 2.4rem; }
.services__closing { margin-top: 2.6rem; }

.section-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin: .3rem 0 1.6rem;
}

.service-list { list-style: none; max-width: 1040px; margin-inline: auto; display: flex; flex-direction: column; gap: 1.2rem; }
.service-list a {
  display: flex;
  align-items: stretch;
  gap: 1.6rem;
  padding: 0 1.6rem 0 0;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-list a:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.service-list__img {
  width: 280px;
  min-height: 200px;
  flex-shrink: 0;
  object-fit: cover;
}

.service-list__body { flex: 1; align-self: center; padding-block: 1.3rem; }
.service-list__name {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  transition: color .2s ease;
}
.service-list a:hover .service-list__name { color: var(--terracotta); }
.service-list__desc { display: block; color: var(--ink-soft); font-size: 1.05rem; margin-top: .35rem; }

.tag-free {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--white);
  background: var(--teal-deep);
  padding: .15rem .6rem;
  border-radius: var(--radius-pill);
  vertical-align: middle;
  margin-left: .55rem;
  position: relative;
  top: -2px;
}

.service-list__cta {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-pill);
  padding: .6rem 1.2rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.service-list__cta-arrow { transition: transform .25s ease; }
.service-list a:hover .service-list__cta {
  background: var(--terracotta);
  color: var(--white);
}
.service-list a:hover .service-list__cta-arrow { transform: translateX(6px); }

@media (max-width: 560px) {
  .service-list a { flex-direction: column; align-items: stretch; gap: 1rem; padding: 0 0 1.4rem; }
  .service-list__img { width: 100%; height: 200px; min-height: 0; }
  .service-list__body { padding: 0 1.4rem; align-self: stretch; }
  .service-list__cta { align-self: flex-start; margin-left: 1.4rem; }
}

/* =====================================================================
   VOUS VOUS RECONNAISSEZ ? (section empathie, alterne avec À propos)
   ===================================================================== */
.empathy {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: var(--cream-2);   /* bandeau alterné */
}
.empathy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(2rem, 5vw, 4rem);
}
/* Image : alignée sur le bord du contenu (à gauche), grande et pleine hauteur */
.empathy__photo {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
/* Texte : à droite, centré verticalement */
.empathy__body {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.empathy__text { color: var(--ink-soft); font-size: 1.05rem; margin-top: .9rem; }
.empathy__text--strong { color: var(--ink); font-weight: 500; }
.empathy__body .btn { margin-top: 1.4rem; align-self: flex-start; }

/* =====================================================================
   MA MISSION (manifeste — bandeau sarcelle doux, texte mis en valeur)
   ===================================================================== */
.mission {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.mission__card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.4rem, 6vw, 3.8rem) clamp(1.6rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  /* dégradé chaud rappelant le sarcelle du logo */
  background: linear-gradient(160deg, #EAF3F1 0%, #DCEBE9 100%);
  border: 1px solid #C9E0DC;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.mission .eyebrow { color: var(--teal-deep); }
.mission .section-title {
  margin-inline: auto;
  max-width: 24ch;
}
.mission__quote {
  margin: 1.6rem auto 0;
  max-width: 60ch;
  border: 0;
  padding: 0;
}
.mission__quote p {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}
.mission__quote p + p { margin-top: 1rem; }
.mission__sign {
  margin-top: 1.8rem;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--teal-deep);
}

@media (max-width: 780px) {
  .empathy__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  /* En mobile : le texte d'abord, l'image APRÈS */
  .empathy__body { grid-column: 1; grid-row: auto; }
  .empathy__photo { grid-column: 1; grid-row: auto; min-height: 280px; }
}

/* =====================================================================
   COMMENT JE PEUX VOUS ACCOMPAGNER (bandeau mis en évidence)
   ===================================================================== */
.offer {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: var(--cream-2);   /* bandeau alterné */
}
/* Deux colonnes comme « Vous vous reconnaissez ? », mais image À DROITE */
.offer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(2rem, 5vw, 4rem);
}
.offer__body {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer__photo {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.offer .section-title { margin-bottom: 1.4rem; }

.offer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 52ch;
  margin: 0 0 2rem;
  text-align: left;
}
.offer__list li { display: flex; align-items: flex-start; gap: .8rem; color: var(--ink); font-size: 1.02rem; }
.offer__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  margin-top: .1rem;
}
.offer__body .btn { align-self: flex-start; }

@media (max-width: 780px) {
  .offer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  /* En mobile : le texte d'abord, l'image APRÈS */
  .offer__body { grid-column: 1; grid-row: auto; }
  .offer__photo { grid-column: 1; grid-row: auto; min-height: 280px; }
}

/* =====================================================================
   À PROPOS (aperçu court)
   ===================================================================== */
.about-teaser { padding-block: clamp(1.5rem, 4vw, 2.5rem); }
.about-teaser__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.8rem, 5vw, 3.5rem);
  background: var(--cream-2);   /* carte d'accent sur fond cream */
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
}
.about-teaser__photo {
  width: 190px;
  height: 190px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--white);
}
.about-teaser__body { max-width: 60ch; }
.about-teaser__text { color: var(--ink-soft); font-size: 1.05rem; margin: .8rem 0 1.2rem; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--terracotta);
}
.link-more span { transition: transform .25s ease; }
.link-more:hover span { transform: translateX(6px); }

@media (max-width: 640px) {
  .about-teaser__inner { flex-direction: column; text-align: center; }
}

/* =====================================================================
   COMMENT ÇA SE PASSE (démarche en 3 étapes)
   ===================================================================== */
.process {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: var(--cream-2);   /* bandeau alterné */
}
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: 1.8rem;
}
.process-list li { display: flex; gap: 1rem; align-items: flex-start; }
.process-list__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
}
.process-list h3 { font-family: var(--font-title); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: .3rem; }
.process-list p { color: var(--ink-soft); font-size: .95rem; }

@media (max-width: 780px) {
  .process-list { grid-template-columns: 1fr; }
}

/* =====================================================================
   CTA FINAL (bandeau de conversion avant le footer)
   ===================================================================== */
.final-cta { padding-block: clamp(2.5rem, 6vw, 4rem); }
.final-cta__card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.4rem, 6vw, 3.6rem) clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--cream-2);   /* carte d'accent sur fond cream */
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-soft);
}
.final-cta .section-title {
  margin-inline: auto;
  max-width: 22ch;
}
.final-cta__text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 54ch;
  margin: 0 auto 1.8rem;
}
.final-cta__actions {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================================
   SÉPARATEUR VAGUE + FOOTER
   ===================================================================== */
.wave { display: block; width: 100%; height: auto; color: var(--teal-deep); }

.site-footer {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(2.4rem, 5vw, 3.4rem) 1.6rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer__brand { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.footer__brand img { width: 56px; height: 56px; border-radius: 50%; }
.footer__brand strong { font-family: var(--font-title); font-weight: 600; color: var(--white); font-size: 1.15rem; }
.footer__tag { font-family: var(--font-script); font-size: 1.35rem; color: var(--gold-soft); }
.site-footer h4 { font-family: var(--font-title); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .9rem; }
.site-footer a:hover { color: var(--white); }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: .55rem; font-size: .95rem; }
.footer__list--contact li { display: flex; align-items: center; gap: .6rem; }
.footer__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-soft); }

.footer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: background .2s ease, transform .2s ease;
}
.footer__social-btn svg { width: 20px; height: 20px; }
.footer__social-btn:hover { background: var(--gold-soft); color: var(--teal-deep); transform: translateY(-2px); }
.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,0.6);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__illustration { width: min(72%, 320px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .brand__logo { width: 48px; height: 48px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    padding: .8rem var(--gutter) 1.2rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { width: 100%; padding-block: .9rem; font-size: 1.15rem; }
  .nav .btn-primary { display: none; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__list { align-items: center; }
  .footer__social { justify-content: center; }
}

/* =====================================================================
   BOUTON RETOUR EN HAUT
   ===================================================================== */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--terracotta-deep);
  transform: translateY(-3px);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .back-to-top { width: 46px; height: 46px; }
}
