/* =========================================================
   Kin'Energie - Nadine, kinésiologue à Fayence
   Feuille de style principale
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs */
  --forest:      #12352a;
  --forest-deep: #0b241c;
  --sage:        #3e7c62;
  --sage-mid:    #5c9179;
  --sage-soft:   #9dbcaa;
  --sand:        #e0a566;
  --sand-deep:   #b87c39;
  --mineral:     #edf1ea;
  --mineral-2:   #e3e9de;
  --chalk:       #fbfcf9;
  --ink:         #1b2621;
  --ink-soft:    #4e5c55;
  --line:        rgba(18, 53, 42, 0.12);
  --line-strong: rgba(18, 53, 42, 0.22);

  /* Typo */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-display: clamp(2.7rem, 1.35rem + 5.4vw, 5.6rem);
  --fs-h2:      clamp(1.95rem, 1.2rem + 2.7vw, 3.2rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + 0.6vw, 1.55rem);
  --fs-lead:    clamp(1.05rem, 0.98rem + 0.35vw, 1.28rem);
  --fs-body:    1.0625rem;
  --fs-small:   0.9375rem;
  --fs-eyebrow: 0.78rem;

  /* Espace */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --shell: 1240px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  /* Formes */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 10px rgba(18, 53, 42, 0.06);
  --shadow-md: 0 14px 40px -18px rgba(18, 53, 42, 0.28);
  --shadow-lg: 0 34px 80px -34px rgba(18, 53, 42, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  background: var(--mineral);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "WONK" 1;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

img, video, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

::selection { background: var(--sand); color: var(--forest-deep); }

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--forest);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. Utilitaires de mise en page ---------- */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ink-soft);
}

.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: var(--fs-h2); }

/* ---------- 4. Boutons ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  --btn-bd: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--sand { --btn-bg: var(--sand); --btn-bd: var(--sand); --btn-fg: var(--forest-deep); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--forest); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bg: var(--forest); --btn-fg: #fff; --btn-bd: var(--forest); }
.btn--light { --btn-bg: #fff; --btn-bd: #fff; --btn-fg: var(--forest); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.45); }
.btn--outline-light:hover { --btn-bg: #fff; --btn-fg: var(--forest); --btn-bd: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* ---------- 5. En-tête ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,36,28,0.55), rgba(11,36,28,0));
  opacity: 1;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.header.is-stuck {
  background: rgba(251, 252, 249, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px -22px rgba(18, 53, 42, 0.6);
}
.header.is-stuck::before { opacity: 0; }

.header__inner {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex: none;
  position: relative;
}
.brand__logo { height: 76px; width: auto; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  letter-spacing: -0.012em;
}
.brand__role {
  font-size: 0.63rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.72;
  margin-top: 0.18rem;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__link {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.35rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Couleurs de l'en-tête : clair sur héros, foncé une fois collé */
.header .brand,
.header .nav__link { color: #fff; }
.header.is-stuck .brand,
.header.is-stuck .nav__link { color: var(--forest); }
.header.is-stuck .nav__cta { --btn-bg: var(--forest); --btn-bd: var(--forest); --btn-fg: #fff; }
.header:not(.is-stuck):not(.header--solid) .nav__cta { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.5); }
.header:not(.is-stuck):not(.header--solid) .nav__cta:hover { --btn-bg: #fff; --btn-fg: var(--forest); --btn-bd: #fff; }

/* Pages internes : en-tête toujours clair */
.header--solid { background: rgba(251,252,249,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.header--solid::before { opacity: 0; }
.header--solid .brand, .header--solid .nav__link { color: var(--forest); }
.header--solid .nav__cta,
.header--solid.is-stuck .nav__cta { --btn-bg: var(--forest); --btn-bd: var(--forest); --btn-fg: #fff; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.header .burger { color: #fff; }
.header.is-stuck .burger, .header--solid .burger { color: var(--forest); }

/* Panneau mobile */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--forest);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.4rem var(--gutter) 3rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; }
.drawer__close {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.drawer__nav { margin-top: auto; margin-bottom: auto; display: grid; gap: 0.4rem; padding: 2.5rem 0; }
.drawer__nav a {
  font-family: var(--display);
  font-size: clamp(2rem, 10vw, 3rem);
  font-variation-settings: "SOFT" 30, "WONK" 1;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.drawer__foot { display: grid; gap: 0.6rem; font-size: 0.95rem; justify-items: start; }
.drawer__foot a { color: rgba(255,255,255,0.85); text-decoration: none; }
.drawer__foot .btn { color: var(--forest-deep); margin-bottom: 0.7rem; }

/* ---------- 6. Héros ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(-1.5%, -1.5%, 0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(11,36,28,0.82) 0%, rgba(11,36,28,0.5) 38%, rgba(11,36,28,0.05) 68%, rgba(11,36,28,0.2) 100%),
    linear-gradient(to top, rgba(11,36,28,0.5), rgba(11,36,28,0) 48%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  width: 100%;
  color: #fff;
}
.hero__eyebrow {
  color: var(--sand);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: var(--fs-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  letter-spacing: -0.025em;
  margin: 0 0 1.3rem;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--sand);
  font-variation-settings: "SOFT" 60, "WONK" 1;
}
.hero__lead {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
  margin-bottom: 0.9rem;
}
.hero__tags {
  font-size: 0.78rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.1rem;
}

/* ---------- 7. Bandeau des motifs ---------- */
.motifs {
  background: var(--sage-mid);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.75rem);
}
.motifs__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2.2rem;
}
.motifs__head h2 {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  margin: 0;
}
.motifs .eyebrow { color: var(--forest-deep); margin: 0 0 0.7rem; }

.motifs__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.motifs__col { text-align: center; }
.motifs__img {
  width: min(210px, 62%);
  aspect-ratio: 1;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.14);
  transition: transform 0.5s var(--ease);
}
.motifs__col:hover .motifs__img { transform: translateY(-6px); }
.motifs__img img { width: 100%; height: 100%; object-fit: cover; }

.motifs__col ul { display: grid; gap: 1.15rem; justify-items: center; }
.motifs__col a {
  display: inline-block;
  max-width: 26ch;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.motifs__col a:hover,
.motifs__col a:focus-visible {
  color: var(--forest-deep);
  border-bottom-color: var(--forest-deep);
}

.motifs__hint {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ---------- 8. À propos ---------- */
.about { background: var(--mineral); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.42fr) minmax(0, 0.82fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}
.about__media { position: relative; }
.about__portrait {
  aspect-ratio: 341 / 520;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--mineral-2);
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

.about__video { min-width: 0; }

.about__body h2 { font-size: var(--fs-h2); }
.about__certif {
  display: inline-block;
  margin: 1.8rem 0 2rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
}

/* ---------- 9. Vidéo verticale du cabinet ---------- */
.room__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 608 / 1080;
  background: var(--forest);
}
.room__frame video { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- 11. Cartes de soins ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}
.card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mineral-2); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
}
.card h3 { font-size: var(--fs-h3); margin: 0; }
.card p { color: var(--ink-soft); font-size: var(--fs-small); margin: 0; }
.card__more {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.card__more svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.card__more:hover svg { transform: translateX(4px); }

/* Sections sur fond crème */
.themes { background: var(--chalk); }

/* ---------- 12. Histoire / repères ---------- */
.history { background: var(--forest); color: #fff; }
.history .eyebrow { color: var(--sand); }
.history__body { max-width: 62ch; margin-inline: auto; }
.history h2 { font-size: var(--fs-h2); }
.history p { color: rgba(255,255,255,0.78); font-size: var(--fs-lead); line-height: 1.65; }

/* ---------- 13. Témoignages ---------- */
.reviews { background: var(--mineral); }
.reviews .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* Widget d'avis externe (Elfsight) */
.reviews__widget:not(:empty) { margin-bottom: clamp(1rem, 2vw, 1.5rem); }

/* ---------- 14. FAQ ---------- */
.faq__list { display: grid; gap: 0.7rem; }
.faq__item {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq__item[open] { border-color: var(--sage-soft); box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
  color: var(--forest);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq__answer { padding: 0 1.4rem 1.35rem; color: var(--ink-soft); font-size: var(--fs-small); }

/* ---------- 15. Bandeau d'appel ---------- */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
.cta img.cta__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.cta::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(11,36,28,0.86), rgba(18,53,42,0.7));
}
.cta h2 { font-size: var(--fs-h2); margin-bottom: 0.6rem; }
.cta p { color: rgba(255,255,255,0.82); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }
.cta .btn-row { justify-content: center; }

/* ---------- 16. Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--chalk);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 0.9rem 1.05rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 165px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(62, 124, 98, 0.16);
}
.form__note { font-size: 0.82rem; color: var(--ink-soft); margin: 0; }
.form__status {
  border-radius: var(--r-md);
  padding: 0.9rem 1.1rem;
  font-size: var(--fs-small);
  font-weight: 600;
  display: none;
}
.form__status.is-ok { display: block; background: rgba(62,124,98,0.12); color: var(--sage); }
.form__status.is-error { display: block; background: rgba(184, 80, 60, 0.12); color: #a24634; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.infos { display: grid; gap: 1.6rem; }
.info-card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.6rem;
}
.info-card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.info-card p, .info-card li { font-size: var(--fs-small); color: var(--ink-soft); }
.info-card a { color: var(--forest); font-weight: 600; }
.info-card ul { display: grid; gap: 0.45rem; }

.tarifs { display: grid; gap: 0.6rem; margin-top: 0.4rem; }
.tarifs li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed var(--line-strong);
}
.tarifs li:last-child { border-bottom: 0; }
.tarifs span:first-child { flex: 1; color: var(--ink); font-weight: 600; }
.tarifs span:last-child {
  font-family: var(--display);
  font-size: 1.35rem;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  color: var(--sage);
}

.map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--mineral-2);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 17. Pied de page ---------- */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.72);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: var(--fs-small);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}
.footer h4 {
  color: #fff;
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer a:hover { color: var(--sand); }
.footer ul { display: grid; gap: 0.55rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer__about { max-width: 34ch; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.socials a:hover { background: var(--sand); border-color: var(--sand); color: var(--forest-deep); }
.socials svg { width: 17px; height: 17px; }

.footer__bottom {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1.2rem; }

.disclaimer {
  background: var(--mineral-2);
  padding-block: 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- 18. Bouton flottant ---------- */
.fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.fab svg { width: 17px; height: 17px; }

/* ---------- 19. Page interne : bannière ---------- */
.pagehead {
  background: var(--forest);
  color: #fff;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.pagehead::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -30%;
  width: 46vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(62,124,98,0.55), rgba(62,124,98,0) 68%);
  pointer-events: none;
}
.pagehead .eyebrow { color: var(--sand); }
.pagehead h1 { font-size: clamp(2.4rem, 1.5rem + 3.6vw, 4.2rem); margin-bottom: 0.7rem; }
.pagehead p { color: rgba(255,255,255,0.78); max-width: 58ch; font-size: var(--fs-lead); }
.crumbs {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--sand); }

/* ---------- 20. Prose (mentions légales) ---------- */
.prose h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.prose a { color: var(--sage); font-weight: 600; }

/* ---------- 21. Révélations au défilement ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---------- 22. Adaptatif ---------- */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 940px) {
  :root { --header-h: 66px; }
  .nav { display: none; }
  .burger { display: grid; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .about__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .about__body { grid-column: 1 / -1; order: 1; }
  .contact__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__scrim {
    background: linear-gradient(to top,
      rgba(11,36,28,0.93) 10%,
      rgba(11,36,28,0.78) 42%,
      rgba(11,36,28,0.48) 78%,
      rgba(11,36,28,0.55) 100%);
  }
  .fab { display: inline-flex; }
  .footer { padding-bottom: 5.5rem; }
}

@media (max-width: 620px) {
  .about__certif { border-radius: var(--r-md); line-height: 1.5; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .motifs__cols { grid-template-columns: minmax(0, 1fr); gap: 2.75rem; }
  .motifs__img { width: min(190px, 55%); }
  .hero { min-height: 88svh; }
  .hero .btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .hero .btn-row .btn:first-child { grid-column: 1 / -1; }
  .hero .btn { padding-inline: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .drawer, .fab, .cta, .map { display: none !important; }
  body { background: #fff; color: #000; }
}
