@import url("/migration.css");
:root {
  --brown: #6a3f31;
  --blue: #69a1af;
  --blue-deep: #4f8795;
  --beige: #c5ac99;
  --ink: #342823;
  --paper: #fff;
  --soft: #f7f5f3;
  --line: #e2d9d3;
  --shadow: 0 14px 45px rgba(61, 39, 28, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--brown);
  font:
    16px/1.65 Arial,
    Helvetica,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.site-header {
  height: 86px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #f1eeee;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}
.brand img {
  display: block;
  width: min(300px, 30vw);
  height: auto;
}
.links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  font-size: 0.77rem;
  text-transform: uppercase;
  color: #4f7f8c;
  font-weight: 500;
  white-space: nowrap;
}
.links > a,
.links summary {
  transition: color 0.2s ease;
}
.links > a:hover,
.links summary:hover {
  color: var(--brown);
}
.nav-services {
  position: relative;
}
.nav-services summary {
  list-style: none;
  cursor: pointer;
}
.nav-services summary::-webkit-details-marker {
  display: none;
}
.service-menu {
  position: absolute;
  top: 2.1rem;
  right: -1rem;
  background: var(--blue);
  color: #fff;
  width: 232px;
  padding: 0.55rem 0;
  box-shadow: var(--shadow);
  z-index: 70;
}
.service-menu a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
}
.service-menu a:hover {
  background: rgba(255, 255, 255, 0.16);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--brown);
  font-size: 0.86rem;
  text-transform: uppercase;
}
.source-hero {
  height: calc(100svh - 86px);
  min-height: 560px;
  max-height: 800px;
  position: relative;
  overflow: hidden;
  background: #27312f;
  color: #fff;
  display: grid;
  place-items: center;
}
.hero-slides,
.hero-slide,
.source-hero__veil,
#hero-particles {
  position: absolute;
  inset: 0;
}
.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.8s ease,
    transform 8s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.source-hero__veil {
  background: linear-gradient(
    90deg,
    rgba(55, 39, 24, 0.55),
    rgba(24, 42, 48, 0.49)
  );
  z-index: 2;
}
.source-hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
}
.hero-kicker {
  font-size: clamp(1.6rem, 3.1vw, 3.1rem);
  font-weight: 300;
  letter-spacing: 0.17em;
  line-height: 1.1;
  margin: 0 0 0.35rem;
}
.hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
}
.source-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 3.8rem;
}
.source-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0.47rem 2.7rem;
  border: 2px solid currentColor;
  color: #fff;
  background: transparent;
  font-size: 0.73rem;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}
.source-button:hover {
  background: #fff;
  color: var(--brown);
  transform: translateY(-2px);
}
.source-button--dark {
  color: var(--brown);
  border-color: var(--brown);
}
.source-button--dark:hover {
  background: var(--brown);
  color: #fff;
}
.hero-enter {
  opacity: 0;
  animation: enter 0.8s ease forwards;
}
.hero-kicker {
  animation-delay: 0.42s;
}
.hero-title {
  animation-delay: 0.67s;
}
.source-hero__actions {
  animation-delay: 0.95s;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-timer {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.26);
}
.hero-timer span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  animation: timing 7s linear infinite;
}
@keyframes timing {
  to {
    width: 100%;
  }
}
#hero-particles {
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.intro-video {
  padding: 105px 0;
}
.narrow-copy {
  max-width: 1050px;
  text-align: center;
}
.narrow-copy > p {
  max-width: 1040px;
  margin: 0 auto 55px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.42;
  font-weight: 300;
}
.hosted-video {
  display: block;
  width: min(860px, 100%);
  margin: auto;
  box-shadow: var(--shadow);
  background: #111;
}
.source-section {
  padding: 100px 0;
}
.source-heading {
  margin: 0 0 48px;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-weight: 300;
}
.source-heading strong {
  font-weight: 800;
}
.presentation {
  background: #fff;
}
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: start;
}
.source-copy {
  font-size: 1rem;
  color: var(--brown);
}
.source-copy p {
  margin: 0 0 1.22rem;
}
.youtube-frame {
  position: relative;
  aspect-ratio: 16/9;
  margin-bottom: 1.6rem;
  background: #111;
  box-shadow: var(--shadow);
}
.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.signature {
  font-family: Georgia, serif;
  font-size: 1rem;
  margin: 2rem 0 !important;
}
.center {
  text-align: center;
}
.services-section {
  background: #fbfbfa;
}
.source-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 75px;
  margin-bottom: 50px;
}
.source-service {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid #e8e2dd;
  transition: transform 0.22s ease;
}
.source-service:hover {
  transform: translateX(7px);
}
.service-glyph {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  font:
    1.05rem Georgia,
    serif;
}
.source-service b {
  display: block;
  color: var(--brown);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin: 0.15rem 0 0.55rem;
}
.source-service small {
  display: block;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #735c52;
}
.testimonials-source {
  min-height: 510px;
  background: url("media/temoignages.jpg") center/cover fixed;
  position: relative;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}
.testimonials-source__veil {
  position: absolute;
  inset: 0;
  background: rgba(48, 36, 30, 0.76);
}
.testimonial-stage {
  position: relative;
  z-index: 1;
  min-height: 370px;
  display: grid;
  place-items: center;
}
.quote-mark {
  font:
    4rem/1 Georgia,
    serif;
  margin: 0;
  color: #fff;
}
.testimonial-slide {
  display: none;
  max-width: 850px;
  animation: fade 0.55s ease;
}
.testimonial-slide.is-active {
  display: block;
}
.testimonial-slide h2 {
  text-transform: lowercase;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  margin: 0.2rem 0 1rem;
  font-weight: 400;
}
.testimonial-slide blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.55;
  font-family: Georgia, serif;
  font-style: italic;
}
.testimonial-slide p {
  margin: 1.3rem 0 0;
  font-size: 1rem;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.2rem;
}
.slider-dots button {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.slider-dots button.is-active {
  background: #fff;
}
.contact-source {
  padding-bottom: 112px;
}
.contact-lead {
  font-size: 1.1rem;
  text-align: center;
  margin: -14px auto 2.5rem;
  max-width: 760px;
}
.contact-details {
  display: flex;
  justify-content: center;
  gap: 70px;
  text-align: center;
  margin: 1.3rem 0 2.7rem;
  font-size: 1.15rem;
  font-family: Georgia, serif;
}
.contact-details a,
.contact-details span {
  display: block;
}
.source-contact-form {
  max-width: 720px;
  margin: auto;
}
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.source-contact-form input,
.source-contact-form textarea {
  width: 100%;
  margin: 0 0 18px;
  border: 1px solid #d9cfc9;
  padding: 13px 15px;
  color: var(--brown);
  outline: none;
  background: #fff;
}
.source-contact-form input:focus,
.source-contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(105, 161, 175, 0.17);
}
.source-contact-form textarea {
  height: 138px;
  resize: vertical;
}
.form-send {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.form-feedback {
  display: none;
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.86rem;
}
.quote-band {
  background: var(--blue);
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
.quote-band blockquote {
  margin: 0;
  font:
    clamp(1.45rem, 3vw, 2.5rem)/1.4 Georgia,
    serif;
}
.quote-band p {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  margin: 2rem 0 0;
}
.latest-posts {
  background: #fff;
}
.source-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.source-post {
  display: block;
  color: var(--brown);
}
.source-post img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: saturate(0.82);
}
.source-post span {
  display: block;
  font-size: 1.15rem;
  line-height: 1.35;
}
.source-post small {
  display: block;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-top: 0.8rem;
}
.site-footer {
  background: var(--blue);
  padding: 34px 0;
}
.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.footer img {
  width: min(250px, 100%);
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer p {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.8rem;
}
.cookie-notice {
  position: fixed;
  z-index: 90;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown);
  color: #fff;
  padding: 11px 54px 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}
.cookie-notice span {
  max-width: 680px;
}
.cookie-notice div {
  display: flex;
  gap: 8px;
  white-space: nowrap;
}
.cookie-notice button,
.cookie-notice a {
  color: #fff;
  border: 0;
  background: #895642;
  padding: 0.48rem 0.8rem;
  cursor: pointer;
  font-size: 0.79rem;
}
.cookie-close {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  font-size: 1.6rem !important;
  padding: 0 !important;
}
.cookie-notice.is-hidden {
  transform: translateY(105%);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.page-hero {
  background: #f7f5f3;
  padding: 72px 0 62px;
  border-top: 1px solid #eee0dc;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 0.84rem;
  color: var(--blue);
  margin: 0 0 1rem;
}
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  color: var(--brown);
  font-weight: 300;
}
.page-hero p:not(.breadcrumb) {
  max-width: 760px;
  font-size: 1.08rem;
}
.kicker {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
}
.prose h2 {
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 400;
}
.prose p,
.prose li {
  color: #664b40;
}
.side-card {
  border-top: 3px solid var(--blue);
  padding: 1.45rem;
  background: #f7f5f3;
}
.side-card h3 {
  font-size: 1.5rem;
}
.side-card ul {
  padding-left: 1.2rem;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer {
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.offer.featured {
  background: var(--blue);
  color: #fff;
}
.offer p {
  color: #6e554b;
}
.offer.featured p {
  color: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  border-top: 2px solid var(--blue);
  padding: 1.25rem 0;
}
.service-card .index {
  color: var(--blue);
  font-size: 0.8rem;
}
.service-card h3 {
  font-size: 1.4rem;
  line-height: 1.25;
}
.service-card a,
.article a {
  color: var(--blue);
  font-weight: 700;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.article {
  border-top: 1px solid var(--brown);
  padding-top: 1rem;
}
.article time {
  font-size: 0.76rem;
  color: var(--blue);
  text-transform: uppercase;
}
.article h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.notice,
.integration {
  padding: 1rem;
  background: #eef5f6;
  border-left: 3px solid var(--blue);
}
.contact-info p {
  color: #664b40;
}
.contact-detail {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.form-card {
  padding: 1.5rem;
  background: #f7f5f3;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.form-card label {
  display: grid;
  gap: 0.3rem;
  margin: 0.8rem 0;
  font-size: 0.9rem;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 0.67rem;
  border: 1px solid #d9cfc9;
  background: #fff;
}
.form-card textarea {
  min-height: 120px;
}
.form-card .button {
  margin-top: 0.8rem;
}
.cta-band {
  padding: 58px 0;
  background: var(--blue);
  color: #fff;
}
.cta-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}
.cta-band .button {
  border: 1px solid #fff;
  padding: 0.7rem 1.1rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
}
.button.primary,
.button.dark {
  background: var(--brown);
  color: #fff;
}
.button.outline {
  border: 1px solid var(--brown);
  color: var(--brown);
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 930px) {
  .links {
    gap: 1rem;
    font-size: 0.7rem;
  }
  .presentation-grid {
    gap: 35px;
  }
  .source-services {
    gap: 30px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer img {
    margin: auto;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1160px);
  }
  .site-header {
    height: 72px;
  }
  .brand img {
    width: 218px;
  }
  .menu-toggle {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.8rem;
  }
  .links.open {
    display: flex;
  }
  .nav-services {
    width: 100%;
  }
  .service-menu {
    position: static;
    width: 100%;
    margin-top: 0.45rem;
  }
  .source-hero {
    height: calc(100svh - 72px);
    min-height: 510px;
  }
  .hero-kicker {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
  .hero-title {
    font-size: 2.7rem;
  }
  .source-hero__actions {
    margin-top: 2.8rem;
  }
  .source-button {
    padding: 0.55rem 1.3rem;
  }
  .intro-video,
  .source-section {
    padding: 70px 0;
  }
  .narrow-copy > p {
    margin-bottom: 34px;
    font-size: 1.28rem;
  }
  .presentation-grid,
  .source-services,
  .source-post-grid,
  .form-two {
    grid-template-columns: 1fr;
  }
  .source-services {
    gap: 12px;
  }
  .testimonials-source {
    background-attachment: scroll;
    min-height: 570px;
  }
  .testimonial-stage {
    min-height: 430px;
  }
  .contact-details {
    gap: 18px;
    flex-direction: column;
  }
  .form-send {
    align-items: flex-start;
    flex-direction: column;
  }
  .quote-band {
    padding: 70px 0;
  }
  .cookie-notice {
    padding: 10px 36px 10px 15px;
    display: block;
    font-size: 0.7rem;
  }
  .cookie-notice div {
    margin-top: 8px;
    white-space: normal;
    flex-wrap: wrap;
  }
  .page-hero {
    padding: 52px 0;
  }
  .page-hero h1 {
    font-size: 2.35rem;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .cta-band .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Proposition de refonte — accueil privé */
:root {
  --ink: #172725;
  --ink-soft: #314542;
  --pine: #1d3d39;
  --teal: #477b79;
  --aqua: #a9cfca;
  --paper: #f6f3ef;
  --mist: #e7efeb;
  --warm: #9a664d;
  --sand: #e8ddd4;
  --gold: #d8a95b;
  --line: rgba(23, 39, 37, 0.14);
  --shadow: 0 24px 70px rgba(19, 38, 35, 0.15);
}
.refonte-demo {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
.refonte-demo h1,
.refonte-demo h2,
.refonte-demo h3 {
  font-family: Georgia, "Times New Roman", serif;
}
.refonte-demo .shell {
  width: min(1180px, calc(100% - 56px));
}
.demo-ribbon {
  height: 34px;
  background: var(--ink);
  color: #dfece9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 700;
}
.demo-ribbon span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 169, 91, 0.12);
}
.refonte-demo .site-header {
  height: 88px;
  background: rgba(250, 249, 246, 0.94);
  border: 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(23, 39, 37, 0.09);
}
.refonte-demo .brand {
  min-width: 235px;
}
.refonte-demo .brand img {
  width: min(315px, 30vw);
}
.refonte-demo .links {
  gap: 1.45rem;
  color: var(--pine);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.refonte-demo .links > a,
.refonte-demo .links summary {
  position: relative;
}
.refonte-demo .links > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.refonte-demo .links > a:hover:after {
  transform: scaleX(1);
}
.refonte-demo .service-menu {
  background: var(--ink);
  width: 246px;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.refonte-demo .service-menu a {
  padding: 0.8rem 1rem;
}
.refonte-demo .service-menu a:hover {
  background: var(--teal);
}
.refonte-demo .source-hero {
  height: calc(100svh - 122px);
  min-height: 605px;
  max-height: 890px;
  background: var(--ink);
  isolation: isolate;
}
.refonte-demo .hero-slide {
  transform: scale(1.13);
  transition:
    opacity 1.4s ease,
    transform 8.5s cubic-bezier(0.2, 0.75, 0.32, 1);
}
.refonte-demo .hero-slide.is-active {
  transform: scale(1);
}
.refonte-demo .source-hero__veil {
  background: linear-gradient(
    100deg,
    rgba(11, 29, 28, 0.84) 0%,
    rgba(21, 47, 44, 0.59) 48%,
    rgba(29, 61, 57, 0.28) 100%
  );
  z-index: 2;
}
.refonte-demo .source-hero__content {
  max-width: 850px;
  margin-left: max(0px, calc((100vw - 1180px) / -2));
  padding-left: max(28px, calc((100vw - 1180px) / 2));
  text-align: left;
  z-index: 4;
}
.eyebrow {
  margin: 0 0 1.15rem;
  color: #cae6e1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}
.refonte-demo .hero-kicker {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 2.25vw, 2.1rem);
  letter-spacing: 0.19em;
  margin: 0 0 0.58rem;
  font-weight: 400;
}
.refonte-demo .hero-title {
  font-size: clamp(3.4rem, 7vw, 7.6rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
  font-weight: 500;
}
.hero-lead {
  max-width: 615px;
  margin: 1.65rem 0 0;
  color: #e6eeeb;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}
.refonte-demo .source-hero__actions {
  justify-content: flex-start;
  gap: 14px;
  margin-top: 2.5rem;
}
.refonte-demo .source-button {
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 0.85rem 1.25rem;
  min-height: 46px;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  border-radius: 2px;
}
.refonte-demo .source-button--filled {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.refonte-demo .source-button--filled:hover {
  color: var(--ink);
  background: #e9c27e;
  border-color: #e9c27e;
}
.refonte-demo .source-button--dark {
  color: var(--ink);
  border-color: var(--ink);
}
.refonte-demo .source-button--dark:hover {
  background: var(--ink);
  color: #fff;
}
.hero-orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(210, 239, 232, 0.24);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit--one {
  width: 440px;
  height: 440px;
  right: -120px;
  top: 55px;
}
.hero-orbit--two {
  width: 300px;
  height: 300px;
  right: 115px;
  bottom: -190px;
}
.hero-scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 25px;
  right: max(28px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d7e5e1;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}
.hero-scroll-cue i {
  display: block;
  width: 30px;
  height: 1px;
  background: #d7e5e1;
}
.refonte-demo .hero-timer span {
  background: var(--gold);
}
.section-space,
.refonte-demo .source-section {
  padding: 118px 0;
}
.intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: min(10vw, 140px);
  align-items: center;
}
.section-kicker {
  margin: 0 0 1.1rem;
  color: var(--teal);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.section-kicker--light {
  color: #c5e2dd;
}
.intro-copy h2,
.presentation-copy h2,
.contact-intro h2,
.appointment-grid h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.intro-copy h2 em,
.presentation-copy h2 em,
.contact-intro h2 em,
.appointment-grid h2 em,
.source-heading em {
  color: var(--warm);
  font-weight: 400;
}
.intro-copy > p:not(.section-kicker),
.contact-intro > p:not(.section-kicker),
.appointment-grid > div > p:not(.section-kicker) {
  font-size: 1.06rem;
  color: #52615d;
  max-width: 440px;
  margin: 1.7rem 0 2rem;
}
.intro-video-wrap {
  position: relative;
}
.refonte-demo .hosted-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: #172725;
}
.media-caption {
  position: absolute;
  bottom: -16px;
  left: -22px;
  background: var(--gold);
  padding: 0.5rem 0.72rem;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--pine);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(23, 39, 37, 0.4);
  padding-bottom: 7px;
}
.text-cta span {
  font-size: 1.25rem;
  line-height: 0.6;
  transition: transform 0.2s;
}
.text-cta:hover span {
  transform: translateX(4px);
}
.refonte-demo .presentation {
  background: #fff;
  border-top: 1px solid rgba(23, 39, 37, 0.08);
}
.refonte-demo .presentation-grid {
  grid-template-columns: 100px minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 65px;
}
.presentation-index {
  padding-top: 0.4rem;
  color: var(--teal);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.presentation-index span {
  display: block;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(71, 123, 121, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.presentation-index p {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
}
.presentation-copy h2 {
  font-size: clamp(2.2rem, 4.1vw, 4.3rem);
  margin-bottom: 2rem;
}
.refonte-demo .source-copy {
  font-size: 1rem;
  color: #3d514d;
}
.refonte-demo .source-copy p {
  margin-bottom: 1.25rem;
}
.refonte-demo .signature {
  margin: 2.1rem 0 !important;
  color: var(--warm);
  font-family: Georgia, serif;
  font-size: 1rem;
}
.refonte-demo .presentation-media {
  padding-top: 4.8rem;
}
.refonte-demo .youtube-frame {
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.refonte-demo .youtube-link a {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 700;
}
.refonte-demo .services-section {
  background: var(--paper);
}
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3.7rem;
}
.refonte-demo .source-heading {
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.93;
  font-weight: 500;
}
.section-side-copy {
  max-width: 300px;
  margin: 0 0 0.55rem;
  color: #667672;
  font-size: 0.98rem;
}
.refonte-demo .source-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
  margin: 0 0 3.2rem;
}
.refonte-demo .source-service {
  grid-template-columns: 78px 1fr;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  transition:
    padding 0.25s,
    border-color 0.25s;
}
.refonte-demo .source-service:last-child,
.refonte-demo .source-service:nth-last-child(2) {
  border-bottom: 1px solid var(--line);
}
.refonte-demo .source-service:hover {
  transform: none;
  padding-left: 10px;
  border-color: var(--teal);
}
.refonte-demo .service-glyph {
  width: 46px;
  height: 46px;
  color: var(--pine);
  border: 1px solid var(--teal);
  font:
    700 0.7rem Arial,
    Helvetica,
    sans-serif;
}
.refonte-demo .source-service b {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: none;
  margin: 0 0 0.45rem;
}
.refonte-demo .source-service small {
  font-size: 0.94rem;
  color: #667672;
}
.refonte-demo .source-service i {
  display: block;
  margin-top: 0.8rem;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}
.appointment-section {
  background: var(--pine);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.appointment-section:after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -325px;
  border-radius: 50%;
  border: 1px solid rgba(204, 238, 229, 0.17);
}
.appointment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 105px;
  align-items: center;
}
.appointment-grid h2 {
  font-size: clamp(3.05rem, 6.1vw, 5.8rem);
}
.appointment-grid h2 em {
  color: var(--gold);
}
.appointment-grid > div > p:not(.section-kicker) {
  color: #c8d9d5;
}
.refonte-demo .contact-details {
  display: flex;
  gap: 45px;
  justify-content: flex-start;
  text-align: left;
  margin: 2.3rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}
.refonte-demo .contact-details a {
  color: #fff;
  font-weight: 700;
}
.refonte-demo .contact-details span {
  color: #c8d9d5;
}
.demo-panel {
  position: relative;
  border: 1px solid rgba(216, 232, 227, 0.24);
  background: rgba(248, 250, 248, 0.96);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}
.calendar-demo {
  color: var(--ink);
  padding: 33px 32px 26px;
  border-radius: 4px;
}
.demo-marker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 1.7rem;
  padding: 0.35rem 0.58rem;
  background: rgba(255, 255, 255, 0.13);
  color: #e1f0ec;
  border: 1px solid rgba(224, 242, 236, 0.28);
  border-radius: 999px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.demo-marker i {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(216, 169, 91, 0.23);
}
.calendar-demo .demo-marker {
  position: absolute;
  top: -15px;
  right: 19px;
  background: #264d48;
  border: 0;
}
.calendar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px;
  border-bottom: 1px solid #dce4e1;
  font-size: 1rem;
}
.calendar-top b {
  font-size: 0.68rem;
  background: #e3efeb;
  padding: 0.34rem 0.5rem;
  color: var(--pine);
  border-radius: 3px;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.calendar-days span {
  padding: 0.55rem 0;
  text-align: center;
  font-size: 0.67rem;
  color: #667672;
  line-height: 1.6;
}
.calendar-days b {
  color: var(--ink);
  font-size: 0.95rem;
}
.calendar-days .is-selected {
  color: #fff;
  background: var(--pine);
  border-radius: 3px;
}
.calendar-days .is-selected b {
  color: #fff;
}
.calendar-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calendar-slots button {
  border: 1px solid #bbd2cc;
  background: #fff;
  padding: 0.65rem 0.8rem;
  color: var(--pine);
  font-size: 0.75rem;
}
.calendar-demo > p {
  margin: 1.25rem 0 0;
  color: #71817d;
  font-size: 0.72rem;
}
.reviews-section {
  background: #fff;
}
.refonte-demo .demo-marker--dark {
  margin-bottom: 0;
  color: var(--pine);
  border-color: #b9d0ca;
  background: #edf4f1;
}
.google-demo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 30px 34px;
  border-radius: 4px;
}
.google-demo__identity {
  display: flex;
  align-items: center;
  gap: 14px;
}
.google-g {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #4285f4 0 35%,
    #34a853 35% 54%,
    #fbbc05 54% 72%,
    #ea4335 72%
  );
  color: #fff;
  font:
    700 1.25rem Arial,
    Helvetica,
    sans-serif;
}
.google-demo__identity b,
.google-demo__identity span {
  display: block;
}
.google-demo__identity b {
  font-family: Georgia, serif;
  font-size: 1.15rem;
}
.google-demo__identity span {
  font-size: 0.74rem;
  color: #6e7c79;
}
.google-demo__stars {
  margin-left: auto;
  text-align: right;
}
.google-demo__stars span {
  display: block;
  color: #d99c2d;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
.google-demo__stars small {
  color: #6e7c79;
  font-size: 0.72rem;
}
.google-demo .text-cta {
  margin-left: 2rem;
}
.refonte-demo .testimonials-source {
  min-height: 600px;
  background: url("media/temoignages.jpg") center/cover fixed;
}
.refonte-demo .testimonials-source__veil {
  background: linear-gradient(
    135deg,
    rgba(19, 42, 38, 0.91),
    rgba(51, 77, 72, 0.76)
  );
}
.refonte-demo .testimonial-stage {
  min-height: 460px;
  max-width: 950px;
}
.quote-mark {
  color: var(--gold) !important;
}
.testimonial-label {
  color: #b9ded6 !important;
  text-transform: uppercase;
  font-size: 0.7rem !important;
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.16em;
  margin: 0 0 1.15rem !important;
}
.refonte-demo .testimonial-slide blockquote {
  font-size: clamp(1.24rem, 2.2vw, 1.78rem);
  max-width: 810px;
}
.refonte-demo .testimonial-slide > p:last-child {
  color: #d8b166;
  font-weight: 700;
}
.refonte-demo .slider-dots button {
  border-color: #cfe5df;
}
.refonte-demo .slider-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}
.refonte-demo .contact-source {
  background: var(--mist);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 110px;
  align-items: center;
}
.contact-intro h2 {
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
}
.contact-phone {
  display: grid;
  gap: 0.18rem;
  margin: 2.4rem 0 0 !important;
}
.contact-phone a {
  font-size: 1.18rem;
  color: var(--pine);
  font-weight: 700;
}
.contact-phone span {
  font-size: 0.9rem;
  color: #63736f;
}
.demo-form {
  position: relative;
  background: #fff;
  padding: 38px 36px 32px;
  box-shadow: var(--shadow);
}
.demo-form .demo-marker {
  margin: -54px 0 24px;
}
.refonte-demo .source-contact-form input,
.refonte-demo .source-contact-form textarea {
  border: 0;
  border-bottom: 1px solid #cbd9d5;
  background: #fbfcfb;
  margin: 0 0 13px;
  padding: 15px 14px;
  font-size: 0.94rem;
}
.refonte-demo .source-contact-form input:focus,
.refonte-demo .source-contact-form textarea:focus {
  border-bottom-color: var(--teal);
  box-shadow: 0 3px 0 rgba(71, 123, 121, 0.14);
}
.refonte-demo .source-contact-form textarea {
  height: 142px;
}
.refonte-demo .form-send {
  margin-top: 4px;
}
.refonte-demo .form-feedback {
  max-width: 290px;
  color: var(--teal);
  font-size: 0.79rem;
}
.refonte-demo .quote-band {
  background: #1d3d39;
  padding: 108px 0;
}
.refonte-demo .quote-band blockquote {
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  max-width: 1000px;
  margin: auto;
}
.refonte-demo .quote-band p {
  color: #d6b274;
  margin-top: 1.7rem;
}
.refonte-demo .latest-posts {
  background: var(--paper);
}
.refonte-demo .source-post-grid {
  gap: 26px;
}
.refonte-demo .source-post {
  padding-bottom: 1rem;
}
.refonte-demo .source-post img {
  aspect-ratio: 1.25/1;
  filter: saturate(0.78);
  transition:
    transform 0.45s,
    filter 0.35s;
}
.refonte-demo .source-post:hover img {
  transform: scale(1.015);
  filter: saturate(1);
}
.refonte-demo .source-post span {
  font-family: Georgia, serif;
  font-size: 1.17rem;
  line-height: 1.34;
}
.refonte-demo .source-post small {
  color: var(--warm);
  font-weight: 700;
}
.refonte-demo .site-footer {
  background: #132b29;
  padding: 42px 0;
}
.refonte-demo .footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.76rem;
}
.refonte-demo .footer-links {
  color: #d2e2de;
}
.presentation-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 23, 22, 0.7);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s,
    visibility 0.25s;
}
.presentation-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.presentation-modal__card {
  position: relative;
  width: min(500px, 100%);
  padding: 44px 42px 38px;
  background: #fbfaf7;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  border-top: 4px solid var(--gold);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  border: 0;
  background: transparent;
  color: var(--pine);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.modal-label {
  display: block;
  color: var(--teal);
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.presentation-modal h2 {
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 1.2rem;
}
.presentation-modal p {
  margin: 0.7rem 0;
  color: #53635f;
  font-size: 0.95rem;
  line-height: 1.6;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.modal-primary,
.modal-secondary,
.tour-card button {
  border: 0;
  padding: 0.83rem 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  cursor: pointer;
}
.modal-primary,
.tour-card [data-tour-next] {
  background: var(--pine);
  color: #fff;
}
.modal-primary:hover,
.tour-card [data-tour-next]:hover {
  background: var(--teal);
}
.modal-secondary,
.tour-card [data-tour-end] {
  background: transparent;
  color: var(--pine);
  border: 1px solid #b8c9c3;
}
.tour-card {
  position: fixed;
  z-index: 215;
  right: 22px;
  bottom: 22px;
  width: min(370px, calc(100% - 44px));
  padding: 22px 24px 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transform: translateY(130%);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s;
}
.tour-card.is-visible {
  transform: none;
  opacity: 1;
}
.tour-card__count {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tour-card h2 {
  font-size: 1.5rem;
  line-height: 1.14;
  margin: 0 0 0.65rem;
}
.tour-card p {
  margin: 0;
  color: #586864;
  font-size: 0.9rem;
  line-height: 1.5;
}
.tour-card > div {
  display: flex;
  gap: 8px;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.tour-card button {
  font-size: 0.65rem;
  padding: 0.72rem 0.8rem;
}
.tour-target {
  scroll-margin-top: 100px;
  transition:
    box-shadow 0.35s,
    outline-color 0.35s;
}
.tour-target.is-tour-active {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
  box-shadow: 0 0 0 10px rgba(216, 169, 91, 0.15);
}
@media (max-width: 900px) {
  .refonte-demo .source-hero__content {
    margin: 0;
    padding-left: 0;
  }
  .intro-layout,
  .refonte-demo .presentation-grid,
  .appointment-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .presentation-index {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 0;
  }
  .presentation-index span {
    margin: 0;
  }
  .presentation-index p {
    writing-mode: initial;
    transform: none;
  }
  .refonte-demo .presentation-media {
    padding-top: 0;
    max-width: 680px;
  }
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 2.7rem;
  }
  .section-side-copy {
    max-width: 520px;
  }
  .refonte-demo .source-services {
    gap: 0 36px;
  }
  .google-demo {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .google-demo__stars {
    text-align: left;
    margin: 0;
  }
  .google-demo .text-cta {
    margin-left: 0;
  }
  .refonte-demo .contact-details {
    margin-top: 1.4rem;
  }
  .refonte-demo .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .refonte-demo .footer img {
    margin: auto;
  }
  .refonte-demo .footer-links {
    justify-content: center;
  }
  .refonte-demo .footer-socials {
    order: 3;
  }
}
@media (max-width: 650px) {
  .demo-ribbon {
    height: 31px;
    font-size: 0.56rem;
  }
  .refonte-demo .shell {
    width: min(100% - 34px, 1180px);
  }
  .refonte-demo .site-header {
    height: 70px;
  }
  .refonte-demo .brand img {
    width: 210px;
  }
  .refonte-demo .menu-toggle {
    color: var(--pine);
  }
  .refonte-demo .links {
    top: 70px;
    background: #f8f8f5;
  }
  .refonte-demo .source-hero {
    height: calc(100svh - 101px);
    min-height: 560px;
  }
  .refonte-demo .hero-orbit--one {
    width: 280px;
    height: 280px;
    right: -140px;
    top: 28px;
  }
  .refonte-demo .hero-orbit--two {
    display: none;
  }
  .refonte-demo .hero-kicker {
    font-size: 1rem;
    letter-spacing: 0.13em;
  }
  .refonte-demo .hero-title {
    font-size: 3.45rem;
  }
  .hero-lead {
    font-size: 0.98rem;
  }
  .refonte-demo .source-hero__actions {
    margin-top: 1.9rem;
    align-items: stretch;
    flex-direction: column;
  }
  .refonte-demo .source-button {
    width: 100%;
    min-height: 45px;
  }
  .hero-scroll-cue {
    right: 18px;
    bottom: 18px;
  }
  .section-space,
  .refonte-demo .source-section {
    padding: 78px 0;
  }
  .intro-layout,
  .refonte-demo .presentation-grid,
  .appointment-grid,
  .contact-layout {
    gap: 34px;
  }
  .intro-copy h2,
  .presentation-copy h2,
  .contact-intro h2,
  .appointment-grid h2,
  .refonte-demo .source-heading {
    font-size: 2.7rem;
  }
  .refonte-demo .presentation-grid {
    display: grid;
  }
  .presentation-copy h2 {
    margin-bottom: 1.5rem;
  }
  .refonte-demo .source-services {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .refonte-demo .source-service {
    grid-template-columns: 58px 1fr;
    padding: 1.45rem 0;
  }
  .refonte-demo .source-service:nth-last-child(2) {
    border-bottom: 0;
  }
  .refonte-demo .source-service b {
    font-size: 1.25rem;
  }
  .calendar-demo {
    padding: 28px 20px 22px;
    margin-top: 20px;
  }
  .calendar-days {
    gap: 3px;
  }
  .calendar-slots button {
    flex: 1;
  }
  .google-demo {
    padding: 24px 20px;
  }
  .google-demo__identity {
    width: 100%;
  }
  .refonte-demo .testimonials-source {
    min-height: 560px;
  }
  .refonte-demo .testimonial-stage {
    min-height: 430px;
  }
  .refonte-demo .testimonial-slide blockquote {
    font-size: 1.15rem;
  }
  .demo-form {
    padding: 33px 20px 22px;
    margin-top: 20px;
  }
  .demo-form .demo-marker {
    margin: -50px 0 22px;
    font-size: 0.56rem;
  }
  .refonte-demo .form-two {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .refonte-demo .form-send {
    align-items: stretch;
  }
  .refonte-demo .form-send .source-button {
    width: 100%;
  }
  .presentation-modal__card {
    padding: 36px 26px 27px;
  }
  .presentation-modal h2 {
    font-size: 2rem;
  }
  .modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .modal-primary,
  .modal-secondary {
    width: 100%;
  }
  .tour-card {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }
  .tour-card > div {
    display: grid;
    grid-template-columns: 1fr;
  }
  .tour-card button {
    width: 100%;
  }
}

/* CTA de rendez-vous conservé dans la navigation de la version proposée. */
.refonte-demo .links .nav-cta {
  padding: 0.65rem 0.8rem;
  background: var(--pine);
  color: #fff;
}
.refonte-demo .links .nav-cta:after {
  display: none;
}
.refonte-demo .links .nav-cta:hover {
  background: var(--teal);
  color: #fff;
}

/* Présentation Fathma : parcours visuel de la démo. */
.demo-ribbon {
  position: relative;
}
.demo-ribbon strong {
  color: #fff;
  font-size: inherit;
}
.demo-ribbon b {
  opacity: 0.45;
}
.demo-ribbon button {
  margin-left: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f6ca68;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.demo-ribbon button:hover {
  color: #fff;
}
.presentation-modal {
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(231, 188, 89, 0.22),
      transparent 26%
    ),
    rgba(9, 23, 22, 0.79);
}
.presentation-modal__card {
  width: min(670px, 100%);
  padding: 0;
  background: #fbfaf7;
  border-top: 0;
  overflow: hidden;
}
.presentation-modal__card:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -70px -95px auto;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(29, 61, 57, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(29, 61, 57, 0.035),
    0 0 0 60px rgba(29, 61, 57, 0.02);
}
.presentation-modal__card > * {
  position: relative;
  z-index: 1;
}
.modal-close {
  z-index: 2;
  right: 23px;
  top: 19px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(29, 61, 57, 0.22);
  border-radius: 50%;
  font-size: 1.35rem;
}
.oyha-presents {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 19px 40px;
  background: #172725;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.oyha-presents strong {
  color: #f5c453;
  letter-spacing: 0.16em;
}
.oyha-presents i {
  color: #c3d4cf;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0;
}
.oyha-presents__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 2px solid #f5c453;
  border-radius: 50%;
  font:
    800 0.85rem Arial,
    Helvetica,
    sans-serif;
  color: #f5c453;
}
.oyha-presents__mark:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid #f5c453;
  border-radius: 50%;
}
.modal-intro {
  padding: 38px 42px 0;
}
.modal-label {
  color: #477b79;
  margin-bottom: 1rem;
}
.presentation-modal h2 {
  font-size: clamp(2.4rem, 5vw, 3.45rem);
  letter-spacing: -0.045em;
}
.modal-intro p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.7;
}
.tour-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 31px 42px 0;
  background: #d9e4e0;
  border: 1px solid #d9e4e0;
}
.tour-preview span {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 11px 9px;
  background: #f2f6f4;
  color: #38605b;
  font-size: 0.63rem;
  line-height: 1.25;
}
.tour-preview span:nth-child(2),
.tour-preview span:nth-child(4) {
  background: #e3edeb;
}
.tour-preview b {
  margin-bottom: 8px;
  color: #bf8835;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.modal-note {
  margin: 20px 42px 0;
  padding: 14px 15px;
  border-left: 2px solid #d8a95b;
  background: #f4f1eb;
}
.modal-note > span {
  display: block;
  margin-bottom: 4px;
  color: #477b79;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.modal-note p {
  margin: 0;
  color: #586864;
  font-size: 0.82rem;
  line-height: 1.55;
}
.modal-actions {
  margin: 25px 42px 36px;
}
.modal-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1d3d39;
}
.modal-primary span {
  font-size: 1.05rem;
  line-height: 0;
}
.modal-secondary {
  border-color: rgba(29, 61, 57, 0.4);
}
.tour-card {
  width: min(415px, calc(100% - 44px));
  padding: 21px 23px 20px;
  border-top: 0;
  border-left: 3px solid #d8a95b;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.98);
}
.tour-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d8a95b 0 24%, #1d3d39 24% 100%);
}
.tour-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-card__close {
  width: 28px;
  height: 28px;
  padding: 0 !important;
  border: 1px solid rgba(29, 61, 57, 0.22) !important;
  border-radius: 50%;
  background: #fff !important;
  color: #1d3d39 !important;
  font-size: 1.15rem !important;
  line-height: 1;
}
.tour-card__progress {
  display: flex;
  gap: 5px;
  margin: 13px 0;
}
.tour-card__progress i {
  height: 3px;
  flex: 1;
  background: #dbe5e2;
  transition: background 0.3s;
}
.tour-card__progress i.is-active {
  background: #d8a95b;
}
.tour-card__label {
  display: block;
  color: #477b79;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.tour-card h2 {
  margin-top: 0.45rem;
  font-size: 1.65rem;
}
.tour-card p {
  font-size: 0.94rem;
}
.tour-card [data-tour-end] {
  color: #365a55;
  background: #fff;
}
.tour-target.is-tour-active {
  outline: 0;
  box-shadow:
    inset 0 0 0 3px #d8a95b,
    inset 0 0 0 10px rgba(216, 169, 91, 0.12);
}
.refonte-demo .source-hero.is-tour-active {
  box-shadow:
    inset 0 0 0 3px #d8a95b,
    inset 0 0 0 12px rgba(216, 169, 91, 0.14);
}

/* Refonte des pages intérieures. */
.refonte-inner {
  background: #f6f3ef;
  color: #172725;
}
.refonte-inner h1,
.refonte-inner h2,
.refonte-inner h3 {
  font-family: Georgia, "Times New Roman", serif;
}
.refonte-inner .shell {
  width: min(1180px, calc(100% - 56px));
}
.refonte-inner .site-header {
  height: 88px;
  background: rgba(250, 249, 246, 0.95);
  border: 0;
  box-shadow: 0 1px 0 rgba(23, 39, 37, 0.09);
  backdrop-filter: blur(14px);
}
.refonte-inner .brand {
  min-width: 235px;
}
.refonte-inner .brand img {
  width: min(315px, 30vw);
}
.refonte-inner .links {
  gap: 1.35rem;
  color: #1d3d39;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.refonte-inner .links > a,
.refonte-inner .links summary {
  position: relative;
}
.refonte-inner .links > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: #9a664d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.refonte-inner .links > a:hover:after {
  transform: scaleX(1);
}
.refonte-inner .links .nav-cta {
  padding: 0.65rem 0.8rem;
  background: #1d3d39;
  color: #fff;
}
.refonte-inner .links .nav-cta:after {
  display: none;
}
.refonte-inner .links .nav-cta:hover {
  background: #477b79;
  color: #fff;
}
.refonte-inner .service-menu {
  background: #172725;
  width: 246px;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(19, 38, 35, 0.15);
}
.refonte-inner .service-menu a {
  padding: 0.8rem 1rem;
}
.refonte-inner .service-menu a:hover {
  background: #477b79;
}
.refonte-inner .site-footer {
  background: #132b29;
  padding: 42px 0;
}
.refonte-inner .footer {
  color: #fff;
}
.refonte-inner .footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.76rem;
}
.refonte-inner .footer-links {
  color: #d2e2de;
}
.refonte-inner .page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 89px;
  background: linear-gradient(120deg, #162e2b, #315d58);
  border: 0;
  color: #fff;
}
.refonte-inner .page-hero:before,
.refonte-inner .page-hero:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(215, 238, 230, 0.21);
  border-radius: 50%;
  pointer-events: none;
}
.refonte-inner .page-hero:before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -205px;
}
.refonte-inner .page-hero:after {
  width: 260px;
  height: 260px;
  right: 16%;
  bottom: -185px;
}
.refonte-inner .page-hero .shell {
  position: relative;
  z-index: 1;
}
.refonte-inner .breadcrumb {
  color: #c5e2dd;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.refonte-inner .breadcrumb a {
  color: #f4c978 !important;
  text-decoration: none !important;
}
.refonte-inner .kicker {
  display: block;
  margin: 0 0 1rem;
  color: #f4c978;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.refonte-inner .page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 6vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
.refonte-inner .source-section {
  padding: 100px 0;
}
.refonte-inner .rich-page {
  max-width: 1180px;
}
.refonte-inner .source-button {
  min-height: 44px;
  padding: 0.78rem 1.1rem;
  border: 1px solid #1d3d39;
  color: #1d3d39;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.refonte-inner .source-button:hover {
  background: #1d3d39;
  color: #fff;
}
.refonte-inner .cookie-notice {
  background: #172725;
}

/* Pages Services : le contenu source reste complet, mais sort de la mise en page Elementor. */
.services-detail.refonte-inner .source-section {
  background: #f6f3ef;
}
.services-detail.refonte-inner .service-source-content {
  display: grid;
  gap: 26px;
}
.services-detail.refonte-inner
  .service-source-content
  [class*="elementor-spacer"] {
  display: none;
}
.services-detail.refonte-inner .service-source-content > .elementor-section,
.services-detail.refonte-inner .service-source-content > [data-elementor-type] {
  display: block;
  padding: clamp(26px, 5vw, 60px);
  background: #fff;
  border: 1px solid rgba(23, 39, 37, 0.09);
  box-shadow: 0 18px 45px rgba(19, 38, 35, 0.055);
}
.services-detail.refonte-inner .service-source-content .elementor-section {
  margin: 0;
}
.services-detail.refonte-inner .service-source-content .elementor-container,
.services-detail.refonte-inner .service-source-content .elementor-widget-wrap,
.services-detail.refonte-inner
  .service-source-content
  .elementor-widget-container {
  max-width: none;
}
.services-detail.refonte-inner
  .service-source-content
  .elementor-inner-section
  > .elementor-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 74px);
}
.services-detail.refonte-inner
  .service-source-content
  .elementor-widget-container {
  margin: 0 0 1.2rem;
}
.services-detail.refonte-inner
  .service-source-content
  .elementor-heading-title {
  margin: 0;
  color: #172725;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.48;
  font-weight: 400;
}
.services-detail.refonte-inner
  .service-source-content
  h3.elementor-heading-title {
  margin: 0 0 2.4rem;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 400;
}
.services-detail.refonte-inner
  .service-source-content
  h3.elementor-heading-title
  b {
  color: #9a664d;
}
.services-detail.refonte-inner
  .service-source-content
  p.elementor-heading-title {
  color: #465b56;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.services-detail.refonte-inner .service-source-content strong {
  color: #1d3d39;
}
.services-detail.refonte-inner .service-source-content img {
  max-width: 100%;
  margin: 1rem auto;
  filter: saturate(0.78);
}
.services-detail.refonte-inner
  .service-source-content
  [class*="elementor-button"] {
  min-height: 44px;
  margin-top: 1rem;
  padding: 0.76rem 1.05rem;
  border: 1px solid #1d3d39;
  background: #1d3d39;
  color: #fff !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-detail.refonte-inner
  .service-source-content
  [class*="elementor-button"]:hover {
  background: #477b79;
  border-color: #477b79;
}
.services-detail.refonte-inner .service-source-content .elementor-divider {
  height: 1px;
  margin: 2.6rem 0;
  background: linear-gradient(90deg, #d8a95b, rgba(216, 169, 91, 0));
  overflow: hidden;
}
.services-detail.refonte-inner
  .service-source-content
  .elementor-divider-separator {
  display: none;
}
.services-detail.refonte-inner
  .service-source-content
  .elementor-background-overlay {
  display: none;
}
.services-detail.refonte-inner .service-source-content [data-exline-parallax] {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  margin: -60px -60px 44px;
  padding: 30px;
  background:
    linear-gradient(120deg, rgba(15, 43, 40, 0.88), rgba(57, 94, 87, 0.74)),
    url("/media/uploads/2024/10/PHOTO-2024-08-02-11-47-14-4-2.jpg") center/cover;
}
.services-detail.refonte-inner
  .service-source-content
  [data-exline-parallax]
  .elementor-heading-title {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 6.1rem);
  letter-spacing: -0.05em;
}
.services-detail.refonte-inner
  .service-source-content
  [data-exline-parallax]
  + .elementor-section {
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}
.services-detail.refonte-inner
  .service-source-content
  [data-exline-parallax]
  + .elementor-section
  .elementor-inner-section:first-of-type {
  padding: 40px;
  background: #fff;
}
.services-detail.refonte-inner
  .service-source-content
  [data-exline-parallax]
  + .elementor-section
  img {
  border-radius: 2px;
  box-shadow: 0 20px 45px rgba(19, 38, 35, 0.14);
}

/* Actualités, archives et articles : une lecture éditoriale plus nette. */
.blog-journal-intro {
  padding: 34px 0;
  border-bottom: 1px solid rgba(23, 39, 37, 0.12);
  background: #fff;
}
.blog-journal-intro .shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.blog-journal-intro p {
  max-width: 780px;
  margin: 0;
  color: #536661;
  font:
    clamp(1.1rem, 2vw, 1.5rem)/1.48 Georgia,
    "Times New Roman",
    serif;
}
.blog-journal-intro span {
  color: #477b79;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.blog-index.refonte-inner .source-section {
  background: #f6f3ef;
}
.blog-index.refonte-inner .rich-page {
  max-width: 1250px;
}
.blog-index.refonte-inner .blog-layout {
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 50px;
}
.blog-index.refonte-inner .post-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.blog-index.refonte-inner .post-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(23, 39, 37, 0.1);
  background: #fff;
  box-shadow: 0 16px 35px rgba(19, 38, 35, 0.055);
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}
.blog-index.refonte-inner .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(19, 38, 35, 0.13);
}
.blog-index.refonte-inner .post-card__image {
  overflow: hidden;
}
.blog-index.refonte-inner .post-card__image img {
  aspect-ratio: 1.55/1;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-index.refonte-inner .post-card:hover .post-card__image img {
  transform: scale(1.035);
}
.blog-index.refonte-inner .post-card__body {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 24px 25px 23px;
}
.blog-index.refonte-inner .post-card__body time {
  margin: 0;
  color: #477b79;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.blog-index.refonte-inner .post-category {
  margin-top: 7px;
  color: #9a664d !important;
  font-size: 0.67rem;
  font-weight: 700;
}
.blog-index.refonte-inner .post-card h2 {
  margin: 15px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
}
.blog-index.refonte-inner .post-card h2 a {
  color: #172725 !important;
}
.blog-index.refonte-inner .post-card p {
  margin: 0 0 16px;
  color: #63736f;
  font-size: 0.94rem;
  line-height: 1.65;
}
.blog-index.refonte-inner .text-link {
  margin-top: auto;
  color: #1d3d39 !important;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
}
.blog-index.refonte-inner .text-link:after {
  content: " →";
  color: #d8a95b;
}
.blog-index.refonte-inner .blog-sidebar {
  align-self: start;
  padding: 27px 0 0 25px;
  border-left: 1px solid rgba(23, 39, 37, 0.16);
}
.blog-index.refonte-inner .blog-sidebar section {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(23, 39, 37, 0.12);
}
.blog-index.refonte-inner .blog-sidebar h2 {
  color: #1d3d39;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}
.blog-index.refonte-inner .blog-sidebar li {
  padding: 0.25rem 0;
}
.blog-index.refonte-inner .blog-sidebar a {
  color: #52635f !important;
  font-size: 0.86rem;
  line-height: 1.45;
}
.blog-index.refonte-inner .blog-sidebar a:hover {
  color: #9a664d !important;
}
.blog-index.refonte-inner .pagination {
  gap: 8px;
  margin: 52px 0 0;
}
.blog-index.refonte-inner .pagination a,
.blog-index.refonte-inner .pagination span {
  min-width: 40px;
  border: 1px solid rgba(23, 39, 37, 0.18);
  background: #fff;
  color: #1d3d39;
}
.blog-index.refonte-inner .pagination span,
.blog-index.refonte-inner .pagination a:hover {
  background: #1d3d39;
  border-color: #1d3d39;
  color: #fff;
}
.article-detail.refonte-inner .source-section {
  background: #fff;
}
.article-detail.refonte-inner .article-page {
  max-width: 820px;
  font-size: 1.04rem;
  line-height: 1.82;
}
.article-detail.refonte-inner .article-meta {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 39, 37, 0.14);
  color: #477b79;
}
.article-detail.refonte-inner .article-page__content h2 {
  margin-top: 2.8rem;
  color: #1d3d39;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.article-detail.refonte-inner .article-page__content p,
.article-detail.refonte-inner .article-page__content li {
  color: #405650;
}
.article-detail.refonte-inner .article-page__content img {
  width: 100%;
  height: auto;
  margin: 1.8rem 0;
  box-shadow: 0 16px 35px rgba(19, 38, 35, 0.1);
}
.article-detail.refonte-inner .article-page__content blockquote {
  border-left-color: #d8a95b;
  background: #f4f1eb;
  color: #1d3d39;
}
.article-detail.refonte-inner .article-page a {
  color: #477b79;
}

/* Finition légère de la présentation privée. */
.presentation-modal__card {
  padding: 0 !important;
  border-radius: 28px;
}
.modal-close {
  right: 19px;
  top: 17px;
  background: rgba(255, 255, 255, 0.72);
}
.oyha-presents {
  min-height: 62px;
  margin: 0 !important;
  padding: 17px 34px;
  border-radius: 28px 28px 0 0;
}
.oyha-presents__mark {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.modal-note {
  margin-top: 27px;
  border-radius: 0 12px 12px 0;
}
.modal-actions {
  margin-top: 22px;
}
.tour-card {
  right: 26px;
  bottom: 26px;
  width: min(356px, calc(100% - 40px));
  padding: 20px 22px 21px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 52px rgba(14, 36, 33, 0.2);
}
.tour-card:before {
  left: 22px;
  right: auto;
  width: 44px;
  height: 3px;
  border-radius: 4px;
  background: #d8a95b;
}
.tour-card__top {
  min-height: 24px;
}
.tour-card__count {
  margin: 0;
  color: #527a74;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}
.tour-card__label {
  margin-top: 15px;
  color: #a36d33;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}
.tour-card h2 {
  margin: 0.5rem 0 0.6rem;
  font-size: 1.3rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.tour-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}
.tour-card > div {
  margin-top: 1.1rem;
}
.tour-card button {
  border-radius: 999px;
  padding: 0.72rem 1rem;
}
.tour-card [data-tour-next] {
  min-width: 118px;
}
.tour-card__close {
  width: 26px;
  height: 26px;
  background: #fff !important;
}

/* Transition entre pages, volontairement très brève et discrète. */
.page-transition {
  background: rgba(15, 39, 36, 0.09);
  backdrop-filter: blur(1px);
  clip-path: none;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.13s ease,
    visibility 0.13s ease;
}
.page-transition.is-ready {
  clip-path: none;
  opacity: 0;
  visibility: hidden;
}
.page-transition__logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: scale(0.62);
  opacity: 0;
}
.page-transition__logo img {
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  object-fit: contain !important;
  object-position: center !important;
}
.is-leaving .page-transition {
  clip-path: none;
  opacity: 1;
  visibility: visible;
}
.is-leaving .page-transition__logo {
  animation: transitionMark 0.16s ease-out both;
}
.page-transition__brand {
  display: none;
}
@keyframes transitionMark {
  from {
    opacity: 0;
    transform: scale(0.62);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Correctif des sous-éléments de boutons hérités d’Elementor. */
.services-detail.refonte-inner .service-source-content a.elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1rem;
  padding: 0.76rem 1.05rem;
  border: 1px solid #1d3d39;
  background: #1d3d39;
  color: #fff !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-detail.refonte-inner
  .service-source-content
  a.elementor-button:hover {
  background: #477b79;
  border-color: #477b79;
}
.services-detail.refonte-inner
  .service-source-content
  .elementor-button-content-wrapper,
.services-detail.refonte-inner .service-source-content .elementor-button-text {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

/* Repères délicats de la visite guidée. */
.demo-ribbon a {
  margin-left: 4px;
  color: #f6ca68;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.demo-ribbon a:hover {
  color: #fff;
}
.tour-nav-target {
  position: relative;
}
.nav-tour-guides {
  display: none;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: -29px;
  height: 25px;
  pointer-events: none;
}
.nav-tour-guides i {
  position: absolute;
  top: 0;
  width: 1px;
  height: 16px;
  background: linear-gradient(#d8a95b, rgba(216, 169, 91, 0.18));
  transform-origin: top;
  animation: navGuide 1.15s ease-in-out infinite;
}
.nav-tour-guides i:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -3px;
  border: 3.5px solid transparent;
  border-top-color: #d8a95b;
}
.nav-tour-guides i:nth-child(1) {
  left: 16%;
  animation-delay: 0s;
}
.nav-tour-guides i:nth-child(2) {
  left: 51%;
  animation-delay: 0.16s;
}
.nav-tour-guides i:nth-child(3) {
  left: 83%;
  animation-delay: 0.32s;
}
.tour-nav-target.is-tour-active .nav-tour-guides {
  display: block;
}
.tour-nav-target.is-tour-active > a,
.tour-nav-target.is-tour-active summary {
  color: #a36d33 !important;
}
.tour-nav-target.is-tour-active > a:not(.nav-cta),
.tour-nav-target.is-tour-active summary {
  box-shadow: inset 0 -1px 0 rgba(216, 169, 91, 0.7);
}
.tour-nav-target.is-tour-active {
  box-shadow: none !important;
}
@keyframes navGuide {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-2px);
  }
  50% {
    opacity: 1;
    transform: translateY(2px);
  }
}
@media (max-width: 760px) {
  .nav-tour-guides {
    display: none !important;
  }
  .tour-nav-target.is-tour-active > a,
  .tour-nav-target.is-tour-active summary {
    box-shadow: none;
  }
  .demo-ribbon a {
    margin-left: auto;
  }
}

/* Transition entre pages : le signe du site traverse l’écran sans bloquer la lecture. */
.page-transition {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  background: #17322f;
  clip-path: circle(150% at 50% 50%);
  pointer-events: none;
  transition:
    clip-path 0.36s cubic-bezier(0.7, 0, 0.2, 1),
    visibility 0.36s;
}
.page-transition.is-ready {
  clip-path: circle(0% at 50% 50%);
  visibility: hidden;
}
.page-transition__glow {
  position: absolute;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(238, 246, 242, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(238, 246, 242, 0.045),
    0 0 0 80px rgba(238, 246, 242, 0.025);
}
.page-transition__brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #edf5f2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: 0.02em;
  opacity: 1;
  transition: opacity 0.16s;
}
.page-transition__logo {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 204, 112, 0.75);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.page-transition__logo img {
  display: block;
  width: auto;
  height: 44px;
  max-width: none;
  object-fit: cover;
  object-position: left;
}
.is-leaving {
  overflow: hidden;
}
.is-leaving .page-transition {
  visibility: visible;
  clip-path: circle(150% at 50% 50%);
}
.is-leaving .page-transition__brand {
  animation: transitionBrand 0.35s ease both;
}
@keyframes transitionBrand {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition {
    display: none;
  }
  .refonte-inner .post-card,
  .refonte-inner .post-card__image img {
    transition: none;
  }
}

@media (max-width: 980px) {
  .refonte-inner .links {
    gap: 0.9rem;
    font-size: 0.65rem;
  }
  .services-detail.refonte-inner
    .service-source-content
    .elementor-inner-section
    > .elementor-container {
    grid-template-columns: 1fr;
  }
  .blog-index.refonte-inner .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-index.refonte-inner .blog-sidebar {
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(23, 39, 37, 0.16);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .blog-index.refonte-inner .blog-sidebar section {
    border-bottom: 0;
  }
  .tour-preview {
    margin-left: 28px;
    margin-right: 28px;
  }
  .modal-note,
  .modal-actions {
    margin-left: 28px;
    margin-right: 28px;
  }
  .modal-intro {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 650px) {
  .demo-ribbon {
    gap: 5px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 0.55rem;
  }
  .demo-ribbon button {
    margin-left: auto;
  }
  .presentation-modal {
    padding: 12px;
  }
  .presentation-modal__card {
    max-height: calc(100svh - 24px);
    overflow-y: auto;
  }
  .oyha-presents {
    padding: 15px 22px;
  }
  .modal-intro {
    padding: 25px 22px 0;
  }
  .modal-intro p {
    font-size: 0.9rem;
  }
  .tour-preview {
    margin: 21px 22px 0;
  }
  .tour-preview span {
    min-height: 61px;
    padding: 8px 6px;
    font-size: 0.55rem;
  }
  .tour-preview b {
    margin-bottom: 5px;
    font-size: 0.61rem;
  }
  .modal-note {
    margin: 17px 22px 0;
    padding: 12px;
  }
  .modal-actions {
    margin: 19px 22px 25px;
  }
  .refonte-inner .shell {
    width: min(100% - 34px, 1180px);
  }
  .refonte-inner .site-header {
    height: 70px;
  }
  .refonte-inner .brand img {
    width: 210px;
  }
  .refonte-inner .menu-toggle {
    color: #1d3d39;
  }
  .refonte-inner .links {
    top: 70px;
    background: #f8f8f5;
  }
  .refonte-inner .links .nav-cta {
    width: 100%;
    text-align: center;
  }
  .refonte-inner .page-hero {
    padding: 70px 0 63px;
  }
  .refonte-inner .page-hero h1 {
    font-size: 3rem;
  }
  .refonte-inner .source-section {
    padding: 72px 0;
  }
  .services-detail.refonte-inner .service-source-content > .elementor-section,
  .services-detail.refonte-inner
    .service-source-content
    > [data-elementor-type] {
    padding: 25px 20px;
  }
  .services-detail.refonte-inner
    .service-source-content
    [data-exline-parallax] {
    min-height: 190px;
    margin: -25px -20px 30px;
  }
  .services-detail.refonte-inner
    .service-source-content
    h3.elementor-heading-title {
    font-size: 2.2rem;
  }
  .services-detail.refonte-inner
    .service-source-content
    p.elementor-heading-title {
    font-size: 0.96rem;
  }
  .blog-journal-intro {
    padding: 24px 0;
  }
  .blog-journal-intro .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .blog-index.refonte-inner .post-list {
    grid-template-columns: 1fr;
  }
  .blog-index.refonte-inner .post-card__body {
    min-height: auto;
    padding: 22px 20px;
  }
  .blog-index.refonte-inner .blog-sidebar {
    display: block;
    padding-top: 24px;
  }
  .blog-index.refonte-inner .blog-sidebar section {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(23, 39, 37, 0.12);
  }
  .article-detail.refonte-inner .article-page {
    font-size: 1rem;
  }
  .page-transition__brand {
    font-size: 1rem;
  }
  .page-transition__logo {
    width: 38px;
    height: 38px;
  }
  .page-transition__logo img {
    height: 38px;
  }
  .tour-card__close {
    display: block !important;
  }
}

/* Le dialogue reste volontairement sans fermeture secondaire : deux choix suffisent. */
.presentation-modal.is-open ~ .page-transition {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
}
.presentation-modal__card {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}
.presentation-modal__card:before,
.presentation-modal__card:after {
  display: none;
}
.presentation-modal__card .oyha-presents,
.presentation-modal__card .modal-intro,
.presentation-modal__card .modal-note,
.presentation-modal__card .modal-actions {
  position: relative;
  z-index: 1;
}
.presentation-modal__card > .oyha-presents {
  margin: 0 !important;
  border-radius: 28px 28px 0 0 !important;
}
.client-presents {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 20px 54px;
  background: #16342f;
}
.client-presents img {
  display: block;
  width: min(310px, 68vw);
  height: 38px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.portal-client-presents img {
  width: min(240px, 60vw) !important;
  height: 34px !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: left center !important;
}
@media (max-width: 650px) {
  .client-presents { min-height: 64px; padding: 16px 25px; }
  .client-presents img { width: min(245px, 72vw); height: 31px; }
}

/* Transition de page : la marque Réussir ma reconversion se déploie au départ,
   puis se relâche délicatement à l'arrivée. */
.page-transition {
  display: grid !important;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.94), rgba(239,244,242,.78) 48%, rgba(15,39,36,.16)) !important;
  backdrop-filter: blur(2px);
  clip-path: none !important;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: none !important;
}
.page-transition.is-ready {
  clip-path: none !important;
  animation: reconversion-arrival .34s cubic-bezier(.22,.8,.28,1) both;
}
.page-transition__logo {
  position: relative;
  display: grid !important;
  place-items: center;
  width: min(280px, 62vw) !important;
  height: 74px !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0;
  transform: scale(.82);
}
.page-transition__logo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 10px 22px rgba(26,48,44,.16));
}
.page-transition.is-ready .page-transition__logo {
  animation: reconversion-logo-arrival .34s cubic-bezier(.22,.8,.28,1) both;
}
.is-leaving .page-transition {
  clip-path: none !important;
  opacity: 1;
  visibility: visible;
  animation: reconversion-departure .24s cubic-bezier(.22,.8,.28,1) both;
}
.is-leaving .page-transition__logo {
  animation: reconversion-logo-departure .24s cubic-bezier(.22,.8,.28,1) both !important;
}
@keyframes reconversion-arrival {
  0% { opacity: 1; }
  48% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes reconversion-logo-arrival {
  0% { opacity: 0; transform: scale(.82); }
  38% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.9); }
}
@keyframes reconversion-departure {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes reconversion-logo-departure {
  from { opacity: 0; transform: scale(.84); }
  to { opacity: 1; transform: scale(1); }
}
.route-tour-page .nav-services[open] summary {
  color: #a36d33 !important;
  box-shadow: inset 0 -1px 0 rgba(216, 169, 91, 0.7);
}
@media (max-width: 650px) {
  .presentation-modal__card {
    border-radius: 0 0 22px 22px;
  }
}
