/* ==========================================================================
   Le Val Infirmière — design system converted from the source mockup.
   Colors, spacing, radii and animations are kept faithful to the original.
   ========================================================================== */

/* Self-hosted variable fonts (no external Google Fonts dependency — faster, more
   private, and still works if the visitor's network blocks third-party font CDNs). */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/manrope.woff2') format('woff2');
}

:root {
  --cream: #FBF9F4;
  --cream-deep: #F3EFE6;
  --ink: #1E3A4C;
  --ink-soft: #4C6B7D;
  --blue-soft: #EAF3F6;
  --blue-med: #CFE4EC;
  --sage: #E4EEE0;
  --sage-deep: #7C9473;
  --turquoise: #D8EEEA;
  --turquoise-deep: #4F968E;
  --coral: #E8836B;
  --coral-deep: #D66C53;
  --white: #FFFFFF;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --mx: 0; --my: 0; --scrolly: 0;
}

* { box-sizing: border-box; }
/* Several components below set an explicit `display` on elements that are also toggled
   via the native [hidden] attribute (mobile nav panel, cookie banner prefs). Author CSS
   beats the UA stylesheet's default `[hidden]{display:none}`, so without this rule those
   elements would stay visible even while `hidden` is set. This selector's specificity
   (0,1,0 + 0,1,0) beats a single class selector, so it always wins regardless of source order. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--blue-med); }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--cream);
  padding: 12px 20px; z-index: 1000; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- decorative blobs ---------- */
.blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; height: 3200px; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(34px); opacity: 0.5;
  transform: translate(calc(var(--mx) * var(--depth) * 16px), calc(var(--my) * var(--depth) * 16px + var(--scrolly) * var(--depth) * 0.03px));
  transition: transform 0.2s linear;
}
.blob-1 { top: -8%; left: -6%; width: 420px; height: 420px; background: radial-gradient(circle, var(--blue-med), transparent 70%); opacity: 0.6; border-radius: 44% 56% 60% 40% / 50% 44% 56% 50%; }
.blob-2 { top: 15%; right: -10%; width: 360px; height: 360px; background: radial-gradient(circle, var(--sage), transparent 70%); opacity: 0.55; }
.blob-3 { top: 60%; left: -8%; width: 300px; height: 300px; background: radial-gradient(circle, var(--turquoise), transparent 70%); }
.blob-4 { top: 90%; right: -6%; width: 340px; height: 340px; background: radial-gradient(circle, var(--blue-med), transparent 70%); border-radius: 44% 56% 50% 50% / 50%; }
.blob-5 { top: 140%; left: 8%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(232,131,107,0.25), transparent 70%); }
.blob-6 { top: 180%; right: 12%; width: 260px; height: 260px; background: radial-gradient(circle, var(--sage), transparent 70%); }

/* ---------- nav ---------- */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.site-nav.is-scrolled { background: rgba(251,249,244,0.85); backdrop-filter: blur(14px); box-shadow: 0 8px 30px -18px rgba(30,58,76,0.25); }
.site-nav__row { max-width: 1240px; margin: 0 auto; padding: 0 24px; height: 76px; display: flex; align-items: center; justify-content: space-between; }
.site-nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); white-space: nowrap; flex-shrink: 0; }
.site-nav__mark { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-med), var(--sage)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.site-nav__links { display: flex; align-items: center; gap: 6px; }
.site-nav__link { font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 10px 14px; border-radius: 999px; color: var(--ink-soft); white-space: nowrap; transition: background .2s, color .2s; }
.site-nav__link:hover, .site-nav__link.is-active { color: var(--ink); background: var(--blue-soft); }
.site-nav__actions { display: flex; align-items: center; gap: 14px; }
.site-nav__call { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); background: var(--blue-soft); padding: 12px 20px; border-radius: 999px; white-space: nowrap; transition: background .2s; }
.site-nav__call:hover { background: var(--blue-med); }
.btn-cta { background: var(--ink); color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 12px 22px; border-radius: 999px; white-space: nowrap; transition: background .2s, transform .2s; }
.btn-cta:hover { background: var(--coral-deep); transform: translateY(-1px); }
.site-nav__burger { display: none; background: none; border: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; position: relative; }
.site-nav__burger span { position: absolute; left: 10px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s ease; }
.site-nav__burger span:nth-child(1) { top: 17px; }
.site-nav__burger span:nth-child(2) { top: 24px; }
.site-nav__burger span:nth-child(3) { top: 31px; }
.site-nav.is-open .site-nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .site-nav__burger span:nth-child(2) { opacity: 0; }
.site-nav.is-open .site-nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav__mobile { background: rgba(251,249,244,0.98); backdrop-filter: blur(14px); border-top: 1px solid rgba(30,58,76,0.08); padding: 14px 24px 26px; display: flex; flex-direction: column; gap: 2px; }
.site-nav__mobile a { padding: 14px 6px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); border-bottom: 1px solid rgba(30,58,76,0.06); }

/* ---------- buttons (shared) ---------- */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--coral), var(--coral-deep)); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 17px 30px; border-radius: 999px; box-shadow: 0 10px 24px -12px rgba(214,108,83,0.4); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(214,108,83,0.55); }
.btn-primary__icon { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; background: rgba(255,255,255,0.22); border-radius: 50%; transition: transform .3s ease; }
.btn-primary:hover .btn-primary__icon { transform: translateX(3px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 16px 28px; border-radius: 999px; border: 1.5px solid rgba(30,58,76,0.14); transition: transform .25s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease; }
.btn-secondary:hover { border-color: var(--turquoise-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(30,58,76,0.25); }
.btn-secondary__icon { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; background: var(--blue-soft); border-radius: 50%; font-size: 13px; transition: transform .3s ease; }
.btn-secondary:hover .btn-secondary__icon { transform: scale(1.12) rotate(-8deg); }
.btn-tertiary { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink-soft); padding: 14px 4px; }
.btn-tertiary__underline { background-image: linear-gradient(var(--ink), var(--ink)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0 1.5px; padding-bottom: 2px; transition: background-size .3s ease, color .3s ease; }
.btn-tertiary:hover .btn-tertiary__underline { background-size: 100% 1.5px; color: var(--ink); }
.btn-tertiary__icon { display: inline-block; transition: transform .3s ease; }
.btn-tertiary:hover .btn-tertiary__icon { transform: translateY(3px); }
.btn-white { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); padding: 12px 24px; background: var(--white); border-radius: 999px; white-space: nowrap; transition: background .2s, color .2s; }
.btn-white:hover { background: var(--turquoise-deep); color: var(--white); }
.btn-coral { background: var(--coral); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 16px 28px; border-radius: 999px; animation: pulseRing 2.6s infinite; transition: background .2s, transform .2s; }
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.1); color: var(--cream); font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 16px 28px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); transition: background .2s; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }
.btn-link-light { color: rgba(251,249,244,0.8); font-family: var(--font-display); font-weight: 600; font-size: 15px; padding: 16px 10px; transition: color .2s; }
.btn-link-light:hover { color: var(--cream); }
.btn-outline { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink); padding: 12px 22px; border: 1.5px solid rgba(30,58,76,0.2); border-radius: 999px; display: inline-block; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 1; padding: 150px 24px 90px; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; overflow-x: hidden; }
.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--turquoise-deep); margin: 0 0 14px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-soft); color: var(--ink-soft); font-family: var(--font-display); font-weight: 600; font-size: 13px; padding: 8px 16px; border-radius: 999px; margin-bottom: 24px; }
.hero__title { font-weight: 800; font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 22px; }
.hero__sub { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 480px; margin: 0 0 34px; }
.hero__points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 460px; margin-bottom: 38px; }
.hero__point { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; }
.hero__point-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--blue-med); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__photo { position: relative; }
.hero__photo-blob { position: absolute; inset: -6% -10% -6% 6%; background: linear-gradient(135deg, var(--blue-med) 0%, var(--sage) 100%); border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; opacity: .9; animation: floatSlow 9s ease-in-out infinite; }
.hero__photo-frame { position: relative; border-radius: 38% 62% 60% 40% / 48% 42% 58% 52%; overflow: hidden; aspect-ratio: 4/4.6; box-shadow: 0 30px 60px -20px rgba(30,58,76,0.25); }
.hero__photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.08); filter: blur(6px); transition: opacity 1.1s ease, transform 1.6s cubic-bezier(.16,1,.3,1), filter 1.1s ease; }
.hero__slide.is-active { opacity: 1; transform: scale(1); filter: blur(0); z-index: 1; }
.hero__carousel-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 7px; z-index: 2; }
.hero__carousel-dot { width: 6px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.5); border: none; padding: 0; cursor: pointer; transition: width .4s ease, background .4s ease; }
.hero__carousel-dot.is-active { width: 20px; background: var(--white); }
.hero__bubble { position: absolute; top: 6%; left: -9%; width: 96px; height: 96px; border-radius: 50%; overflow: hidden; border: 4px solid var(--white); box-shadow: 0 14px 30px -12px rgba(30,58,76,0.3); animation: floatSlow2 7s ease-in-out infinite; }
.hero__bubble img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__bubble-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero__bubble-slide.is-active { opacity: 1; z-index: 1; }
.hero__dot { position: absolute; border-radius: 50%; }
.hero__dot--a { bottom: 14%; left: -8%; width: 20px; height: 20px; background: rgba(232,131,107,0.35); animation: floatSlow 6s ease-in-out infinite; }
.hero__dot--b { top: 42%; right: -6%; width: 16px; height: 16px; background: rgba(95,168,160,0.4); animation: floatSlow2 9s ease-in-out infinite; }
.hero__tag { position: absolute; top: -5%; right: 2%; background: var(--white); border-radius: 16px; padding: 10px 16px; box-shadow: 0 16px 40px -14px rgba(30,58,76,0.18); font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero__tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-deep); }
.scroll-cue { display: flex; justify-content: center; margin-top: -40px; position: relative; z-index: 1; }
.scroll-cue span { display: block; width: 4px; height: 8px; border-radius: 2px; background: rgba(30,58,76,0.35); animation: scrollDot 1.6s infinite; }
.scroll-cue::before { content: ''; width: 26px; height: 42px; border: 2px solid rgba(30,58,76,0.25); border-radius: 14px; display: flex; }

@keyframes floatSlow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,-22px); } }
@keyframes floatSlow2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(18px,14px); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(232,131,107,0.35); } 100% { box-shadow: 0 0 0 18px rgba(232,131,107,0); } }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

/* ---------- trust band ---------- */
.trust-band { position: relative; z-index: 1; background: var(--ink); margin-top: 60px; padding: 30px 24px; }
.trust-band__inner { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; align-items: center; }
.trust-band__item { display: flex; align-items: center; gap: 12px; color: var(--cream); flex: 1; min-width: 220px; }
.trust-band__icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }

/* ---------- team ---------- */
.team { position: relative; z-index: 1; background: var(--blue-soft); padding: 120px 24px; overflow: hidden; }
.team__inner { max-width: 1240px; margin: 0 auto; }
.team__row { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 56px; align-items: center; margin-bottom: 100px; }
.team__row--reverse { grid-template-columns: 1.4fr 0.6fr; }
.team__row--reverse .team__photo { order: 2; justify-self: end; }
.team__row--reverse .team__text { text-align: right; }
.team__row--reverse .underline { margin-left: auto; }
.team__photo { position: relative; max-width: 280px; }
.team__photo-blob { position: absolute; inset: -8%; background: linear-gradient(135deg, var(--sage), var(--turquoise)); border-radius: 42% 58% 54% 46% / 46% 54% 46% 54%; opacity: .8; }
.team__photo-frame { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 1/1.15; box-shadow: 0 24px 48px -20px rgba(30,58,76,0.22); }
.team__photo-frame img, .media-placeholder { width: 100%; height: 100%; object-fit: cover; }
.media-placeholder { display: flex; align-items: center; justify-content: center; background: var(--blue-med); color: var(--ink-soft); font-size: 13px; text-align: center; padding: 16px; }
.team__badge { position: absolute; bottom: -24px; right: -16px; background: var(--white); border-radius: 16px; padding: 12px 18px; box-shadow: 0 16px 36px -16px rgba(30,58,76,0.2); font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.team__role { font-size: 15.5px; font-weight: 600; color: var(--ink-soft); margin: 0 0 26px; }
.team__bio { font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 520px; margin: 0 0 28px; }
.underline { width: 56px; height: 3px; background: var(--coral); border-radius: 2px; }
.team__join { max-width: 1240px; margin: 70px auto 0; background: var(--sage); border-radius: 24px; padding: 32px 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.team__join h3 { font-weight: 700; font-size: 18px; margin: 0 0 6px; }
.team__join p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ---------- services ---------- */
.services { position: relative; z-index: 1; padding: 130px 24px 110px; }
.services__inner { max-width: 1240px; margin: 0 auto; }
.services__head { text-align: center; margin-bottom: 64px; }
.services__head h2 { font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 14px; }
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.services__card { background: var(--white); border-radius: 24px; padding: 32px 26px; border: 1.5px solid rgba(30,58,76,0.06); box-shadow: 0 12px 30px -18px rgba(30,58,76,0.12); transition: border-color .3s, box-shadow .3s, transform .1s ease-out; perspective: 600px; }
.services__card:hover { border-color: var(--turquoise-deep); box-shadow: 0 24px 48px -20px rgba(30,58,76,0.18); }
.services__card--wide { grid-column: 1/-1; justify-self: center; width: 100%; max-width: 380px; }
.services__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-med); display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 20px; }
.services__card h3 { font-weight: 700; font-size: 18px; margin: 0 0 10px; }
.services__card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ---------- avis (google reviews) ---------- */
.reviews { position: relative; z-index: 1; padding: 110px 0 120px; }
.reviews__inner { max-width: 1240px; margin: 0 auto; }
.reviews__head { text-align: center; margin-bottom: 44px; padding: 0 24px; }
.reviews__head h2 { font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 10px; }
.reviews__rating { font-size: 15px; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; gap: 8px; }
.reviews__stars { color: #F5B942; letter-spacing: 2px; font-size: 15px; }
.reviews__carousel { position: relative; }
.reviews__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; padding: 6px 24px 6px; scrollbar-width: none; -ms-overflow-style: none; }
.reviews__arrow { position: absolute; top: 42%; transform: translateY(-50%); z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 1px solid rgba(30,58,76,0.08); box-shadow: 0 14px 30px -14px rgba(30,58,76,0.3); font-size: 22px; font-family: var(--font-display); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .2s, box-shadow .2s, color .2s; }
.reviews__arrow:hover { color: var(--coral-deep); transform: translateY(-50%) scale(1.08); box-shadow: 0 18px 36px -14px rgba(30,58,76,0.4); }
.reviews__arrow--prev { left: -4px; }
.reviews__arrow--next { right: -4px; }
@media (max-width: 900px) { .reviews__arrow { width: 38px; height: 38px; font-size: 18px; } .reviews__arrow--prev { left: 2px; } .reviews__arrow--next { right: 2px; } }
@media (max-width: 560px) { .reviews__arrow { display: none; } }
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__card { flex: 0 0 320px; scroll-snap-align: start; background: var(--white); border-radius: 24px; padding: 26px 24px; border: 1.5px solid rgba(30,58,76,0.06); box-shadow: 0 12px 30px -18px rgba(30,58,76,0.12); display: flex; flex-direction: column; gap: 14px; }
.reviews__card .reviews__stars { font-size: 16px; }
.reviews__text { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; flex: 1; }
.reviews__author { display: flex; align-items: center; gap: 12px; }
.reviews__author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.reviews__author div { display: flex; flex-direction: column; font-size: 13px; }
.reviews__author strong { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; }
.reviews__author span { color: var(--ink-soft); font-size: 12px; }
.reviews__actions { text-align: center; margin-top: 36px; padding: 0 24px; }
.reviews__attribution { font-size: 12.5px; color: var(--ink-soft); margin: 14px 0 0; }
.reviews__attribution a { color: var(--ink-soft); text-decoration: underline; }
@media (max-width: 640px) { .reviews__card { flex-basis: 82vw; } }

/* ---------- parcours ---------- */
.parcours { position: relative; z-index: 1; background: var(--sage); padding: 120px 24px; }
.parcours__inner { max-width: 1000px; margin: 0 auto; }
.parcours__head { text-align: center; margin-bottom: 70px; }
.parcours__head h2 { font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.parcours__track { position: relative; }
.parcours__line { position: absolute; top: 26px; left: 6%; right: 6%; height: 2px; background: rgba(30,58,76,0.12); overflow: hidden; z-index: 0; }
.parcours__line span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sage-deep), var(--turquoise-deep)); transition: width 1.6s cubic-bezier(.16,1,.3,1); }
.parcours__line.is-filled span { width: 100%; }
.parcours__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.parcours__num { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; margin: 0 auto 18px; box-shadow: 0 10px 24px -10px rgba(30,58,76,0.2); }
.parcours__step p { text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 15px; margin: 0; line-height: 1.4; }

/* ---------- infos pratiques ---------- */
.infos { position: relative; z-index: 1; padding: 120px 24px; }
.infos__inner { max-width: 1240px; margin: 0 auto; }
.infos__head { text-align: center; margin-bottom: 60px; }
.infos__head h2 { font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); scroll-margin-top: 100px; }
.infos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.infos__map { grid-column: 1/2; grid-row: 1/4; background: var(--white); border-radius: 28px; padding: 8px; box-shadow: 0 20px 50px -24px rgba(30,58,76,0.18); }
.infos__map-frame { border-radius: 22px; overflow: hidden; height: 100%; min-height: 340px; }
.infos__map-frame iframe { border: 0; width: 100%; height: 100%; min-height: 340px; }
.infos__card { border-radius: 24px; padding: 30px; }
.infos__card--blue { background: var(--blue-soft); }
.infos__card--sage { background: var(--sage); }
.infos__card--turquoise { background: var(--turquoise); }
.infos__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 16px; }
.infos__card h3 { font-weight: 700; font-size: 17px; margin: 0 0 10px; }
.infos__card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 4px; }
.infos__note { font-size: 13px; opacity: .8; margin: 0 0 16px !important; font-style: italic; }
.infos__phone { font-family: var(--font-display); font-weight: 700; font-size: 16px; transition: color .2s; }
.infos__phone:hover { color: var(--coral-deep); }
.infos__email { font-size: 14.5px; color: var(--ink-soft); transition: color .2s; }
.infos__email:hover { color: var(--ink); }
.infos__emergency { background: rgba(232,131,107,0.12); border-radius: 14px; padding: 12px 16px; font-size: 13.5px; font-weight: 600; color: var(--coral-deep); }

/* ---------- rdv ---------- */
.rdv { position: relative; z-index: 1; background: var(--ink); padding: 130px 24px; overflow: hidden; }
.rdv__blob { position: absolute; top: -15%; right: -10%; width: 520px; height: 520px; border-radius: 44% 56% 58% 42% / 50% 46% 54% 50%; background: linear-gradient(135deg, rgba(207,228,236,0.15), rgba(232,131,107,0.12)); filter: blur(6px); animation: floatSlow 11s ease-in-out infinite; }
.rdv__inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.rdv__inner h2 { font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--cream); margin: 0 0 16px; }
.rdv__intro { font-size: 17px; color: rgba(251,249,244,0.75); margin: 0 0 40px; }
.rdv__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 46px; }
.rdv__trust { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; color: rgba(251,249,244,0.85); font-size: 13.5px; font-weight: 600; }
.rdv__trust > div { display: flex; align-items: center; gap: 8px; }

/* ---------- news ---------- */
.news { position: relative; z-index: 1; padding: 120px 24px; background: var(--blue-soft); }
.news-index { padding: 160px 24px 110px; max-width: 1240px; margin: 0 auto; }
.news-index__empty { color: var(--ink-soft); }
.news-index__pager { display: flex; justify-content: space-between; margin-top: 40px; font-weight: 600; }
.news__inner { max-width: 1240px; margin: 0 auto; }
.news__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.news__head h2 { font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.news__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.news__card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px -18px rgba(30,58,76,0.12); display: block; transition: transform .2s ease; }
.news__card:hover { transform: translateY(-4px); }
.news__card-image { aspect-ratio: 16/10; background: repeating-linear-gradient(135deg, var(--blue-med), var(--blue-med) 10px, var(--blue-soft) 10px, var(--blue-soft) 20px); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--ink-soft); border-radius: 16px 16px 0 0; overflow: hidden; }
.news__card-image img { width: 100%; height: 100%; object-fit: cover; }
.news__card-body { padding: 22px; }
.news__tag { display: inline-block; background: var(--sage); color: var(--sage-deep); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.news__date { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 8px; }
.news__card h3 { font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.news__card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.news-show { padding: 160px 24px 110px; max-width: 800px; margin: 0 auto; }
.news-show__breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 20px; }
.news-show__breadcrumb a { color: var(--ink-soft); }
.news-show__date { color: var(--ink-soft); margin: 6px 0 30px; }

/* ---------- newsletter ---------- */
.newsletter { position: relative; z-index: 1; padding: 100px 24px; }
.newsletter__card { max-width: 760px; margin: 0 auto; background: linear-gradient(135deg, var(--sage), var(--turquoise)); border-radius: 32px; padding: 56px 44px; text-align: center; }
.newsletter__card h2 { font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 12px; }
.newsletter__card > p { font-size: 15.5px; color: var(--ink-soft); margin: 0 0 30px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter__form { display: flex; flex-direction: column; gap: 14px; max-width: 440px; margin: 0 auto; }
.newsletter__row { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__row input { flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 14px; border: 1px solid rgba(30,58,76,0.15); font-family: var(--font-body); font-size: 14.5px; background: var(--white); color: var(--ink); }
.newsletter__row button { background: var(--ink); color: var(--cream); font-family: var(--font-display); font-weight: 700; font-size: 14.5px; padding: 14px 24px; border: none; border-radius: 14px; cursor: pointer; transition: background .2s; }
.newsletter__row button:hover { background: var(--coral-deep); }
.newsletter__consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-soft); text-align: left; }
.newsletter__consent a { color: var(--ink); text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-msg { font-size: 13.5px; font-weight: 600; margin: 4px 0 0; }
.form-msg--ok { color: var(--sage-deep); }
.form-msg--error { color: var(--coral-deep); }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 1; background: var(--cream-deep); padding: 70px 24px 34px; overflow: hidden; }
.site-footer__blob { position: absolute; bottom: -10%; left: -6%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, var(--sage), transparent 70%); opacity: .6; }
.site-footer__inner { max-width: 1240px; margin: 0 auto; position: relative; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.site-footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.site-footer__tagline { font-size: 14px; line-height: 1.6; color: var(--ink-soft); max-width: 320px; margin: 0; }
.site-footer h4 { font-weight: 700; font-size: 14px; margin: 0 0 16px; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.site-footer__links a { color: var(--ink-soft); transition: color .2s; }
.site-footer__links a:hover { color: var(--ink); }
.site-footer__note { font-size: 12.5px; opacity: .75; font-style: italic; }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(30,58,76,0.1); }
.site-footer__bottom p { font-size: 13px; color: var(--ink-soft); margin: 0; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__legal a { font-size: 13px; color: var(--ink-soft); transition: color .2s; }
.site-footer__legal a:hover { color: var(--ink); }
.site-footer__top { width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 1px solid rgba(30,58,76,0.12); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.site-footer__top:hover { background: var(--ink); color: var(--cream); }

/* ---------- mobile action bar ---------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: flex; gap: 10px; padding: 12px 16px; background: rgba(251,249,244,0.95); backdrop-filter: blur(12px); box-shadow: 0 -8px 24px -14px rgba(30,58,76,0.25); }
.mobile-bar__btn { flex: 1; text-align: center; padding: 14px; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; border-radius: 14px; }
.mobile-bar__btn--ghost { color: var(--ink); background: var(--white); border: 1px solid rgba(30,58,76,0.12); }
.mobile-bar__btn--solid { color: var(--white); background: linear-gradient(135deg, var(--coral), var(--coral-deep)); }

/* ---------- click-to-call popover (desktop only — see site.js) ---------- */
.tel-popover { position: fixed; z-index: 300; background: var(--white); border-radius: 14px; padding: 12px 14px; box-shadow: 0 20px 50px -18px rgba(30,58,76,0.35); display: flex; align-items: center; gap: 10px; font-family: var(--font-display); animation: telPopIn .15s ease-out; }
.tel-popover__icon { font-size: 18px; }
.tel-popover__number { font-weight: 700; font-size: 16px; color: var(--ink); white-space: nowrap; }
.tel-popover__copy { background: var(--blue-soft); border: none; border-radius: 8px; padding: 8px 12px; font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: var(--ink); cursor: pointer; white-space: nowrap; transition: background .2s; }
.tel-popover__copy:hover { background: var(--blue-med); }
.tel-popover__copy.is-copied { background: var(--sage); color: var(--sage-deep); }
@keyframes telPopIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 560px; margin: 0 auto; background: var(--white); border-radius: 20px; padding: 22px 26px; box-shadow: 0 24px 60px -20px rgba(30,58,76,0.35); z-index: 200; font-size: 13.5px; color: var(--ink-soft); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.cookie-banner__btn { border: none; border-radius: 999px; padding: 10px 18px; font-family: var(--font-display); font-weight: 600; font-size: 13px; cursor: pointer; }
.cookie-banner__btn--ghost { background: var(--blue-soft); color: var(--ink); }
.cookie-banner__btn--solid { background: var(--ink); color: var(--cream); }
.cookie-banner__prefs { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.cookie-banner__toggle { display: flex; align-items: center; gap: 8px; }

/* ---------- contact / legal / status pages ---------- */
.contact-page, .richtext-section, .status-page { padding: 160px 24px 110px; max-width: 720px; margin: 0 auto; }
.contact-page__emergency { background: rgba(232,131,107,0.12); color: var(--coral-deep); font-weight: 600; padding: 12px 18px; border-radius: 14px; margin-bottom: 30px; }
.contact-form, .newsletter__form { display: flex; flex-direction: column; gap: 14px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Plain field labels stack above their input; the checkbox-consent labels
   (.contact-form__consent, .newsletter__consent) keep their own flex layout. */
.contact-form label:not(.contact-form__consent), .newsletter__form label:not(.newsletter__consent) { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(30,58,76,0.15); font-family: var(--font-body); font-size: 14.5px; background: var(--white); color: var(--ink); }
.contact-form__consent { display: flex; gap: 10px; font-size: 13px; color: var(--ink-soft); align-items: flex-start; }
.richtext { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.richtext h2, .richtext h3 { color: var(--ink); margin: 28px 0 12px; }
.status-page { text-align: center; }
.status-page h1 { font-size: 3rem; }

/* ---------- reveal animation ---------- */
[data-reveal] [data-reveal-item] { opacity: 0; transform: translateY(24px); filter: blur(6px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .9s ease; }
[data-reveal].is-visible [data-reveal-item] { opacity: 1; transform: none; filter: blur(0); }
.services__card[data-reveal], .news__card[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .4s cubic-bezier(.16,1,.3,1); }
.services__card.is-visible[data-reveal], .news__card.is-visible[data-reveal] { opacity: 1; transform: none; }
.parcours__step[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.parcours__step.is-visible[data-reveal] { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
.hide-desktop, .hide-tablet, .hide-mobile { display: block; }
@media (min-width: 1041px) { [data-mobile-bar], .mobile-bar { display: none !important; } }
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr !important; padding-top: 130px !important; }
  .team__row, .team__row--reverse { grid-template-columns: 1fr !important; }
  .team__row--reverse .team__photo { order: 0; justify-self: start; }
  .team__row--reverse .team__text { text-align: left; }
  .team__row--reverse .underline { margin-left: 0; }
  .services__grid { grid-template-columns: repeat(2,1fr) !important; }
  .infos__grid { grid-template-columns: 1fr !important; }
  .infos__map { grid-column: 1/2 !important; grid-row: auto !important; }
  .site-footer__grid { grid-template-columns: 1fr !important; }
  .contact-form__row { grid-template-columns: 1fr !important; }
  .site-nav__links, .site-nav__call { display: none !important; }
  /* The pill CTA is dropped from the top bar on mobile/tablet: the fixed bottom
     action bar already offers the same "Rendez-vous" action, and keeping both
     the brand name and this button inline was overflowing the viewport width,
     pushing the burger button off-screen entirely. */
  .btn-cta { display: none !important; }
  .site-nav__burger { display: flex !important; }
  .site-nav__row { flex-wrap: nowrap; }
  /* The fixed bottom action bar (mobile-bar) overlaps the last ~90px of the page
     on any viewport under 1041px — without this, the footer's legal links and
     "back to top" button render underneath it, unreachable. */
  .site-footer { padding-bottom: 110px; }
}
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr !important; } }
@media (max-width: 700px) {
  .parcours__steps { grid-template-columns: repeat(2,1fr) !important; row-gap: 40px !important; }
  .parcours__line { display: none !important; }
  .news__grid { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] [data-reveal-item], .services__card[data-reveal], .news__card[data-reveal], .parcours__step[data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .blob { transform: none !important; }
}
