/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  /* défilement fluide */
}

body {
  font-family: system-ui, -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
}

.page-scroller {
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: auto;
}

.site-menu {
  position: fixed;
  top: 0rem;
  left: 0;
  width: 100%;
  z-index: 80;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-menu.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

/* Fond du header menu en mobile */
.site-menu-inner {
  background: rgba(247, 244, 239, 0.86);
  border: 1px solid rgba(166, 124, 57, 0.45);
  border-radius: 0;
  box-shadow: 0 10px 22px rgba(36, 26, 16, 0.14);
}

.site-menu-logo-link {
  display: inline-flex;
  align-items: center;
  width: 120px;
  height: 51px;
  overflow: hidden;
}

.site-menu-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 54%;
  transform: scale(1);
}

.site-menu-burger {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(10, 9, 8, 0.85);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.site-menu-burger span {
  width: 16px;
  height: 1.6px;
  background: #d4af37;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu.is-open .site-menu-burger span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}

.site-menu.is-open .site-menu-burger span:nth-child(2) {
  opacity: 0;
}

.site-menu.is-open .site-menu-burger span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

.site-menu-nav {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 1rem;
  left: 1rem;
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(8, 7, 6, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.28);
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.site-menu.is-open .site-menu-nav {
  display: flex;
}

.site-menu-nav a {
  color: #f2eadf;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
}

.site-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  margin-left: auto;
  padding: 0.16rem;
  border: 1px solid rgba(166, 124, 57, 0.32);
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.9);
}

.site-lang-switch a {
  min-width: 1.72rem;
  padding: 0.24rem 0.34rem;
  border-radius: 999px;
  color: #4a3828;
  text-decoration: none;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.site-lang-switch a.is-current {
  background: #a78f68;
  color: #2f2a24;
}

.hero-lang-switch {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.16rem;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(8px);
}

.hero-lang-switch a {
  min-width: 1.72rem;
  padding: 0.24rem 0.34rem;
  border-radius: 999px;
  color: #f8f1e6;
  text-decoration: none;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-lang-switch a.is-current {
  background: #a78f68;
  color: #2f2a24;
}

@media (max-width: 899px) {
  .site-lang-switch {
    margin-left: auto;
  }
}

.site-menu-nav a:hover,
.site-menu-nav a:focus-visible {
  background: rgba(212, 175, 55, 0.14);
  outline: none;
}

.site-menu-nav a.is-active,
.site-menu-nav a.is-current,
.site-menu-nav a[aria-current="location"],
.site-menu-nav a[aria-current="page"] {
  color: #e0bb58;
  background: transparent;
}

@media (min-width: 900px) {
  .site-menu {
    top: 0rem;
  }

  .site-menu-inner {
    padding: 0 1.4rem;
    min-height: 74px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .site-menu-logo {
    width: 100%;
    height: 100%;
    object-position: center;
    transform: none;
  }

  .site-menu-logo-link {
    width: 148px;
    height: 48px;
  }

  .site-menu-burger {
    display: none;
  }

  .site-menu-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.28rem;
    padding: 0.42rem;
    margin-left: auto;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: rgba(8, 7, 6, 0.82);
    box-shadow: none;
  }

  .site-lang-switch {
    margin-left: 0.35rem;
    background: rgba(247, 244, 239, 0.72);
  }

  .site-menu-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.01em;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    padding: 0.68rem 0.9rem;
    border-radius: 6px;
    white-space: nowrap;
  }

  .site-menu-nav a.is-active,
  .site-menu-nav a.is-current,
  .site-menu-nav a[aria-current="location"],
  .site-menu-nav a[aria-current="page"] {
    color: #1f140c;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .site-menu-nav a[data-target="about-jp"][aria-current="location"] {
    background: rgba(190, 143, 58, 0.74);
  }

  .site-menu-nav a[data-target="accompagnement"][aria-current="location"] {
    background: rgba(179, 139, 82, 0.62);
  }

  .site-menu-nav a[data-target="confiance"][aria-current="location"] {
    background: rgba(200, 171, 123, 0.62);
  }

  .site-menu-nav a[data-target="expertises"][aria-current="location"] {
    background: rgba(151, 107, 55, 0.68);
  }

  .site-menu-nav a[data-target="contact"][aria-current="location"] {
    background: rgba(213, 184, 134, 0.62);
  }

  .site-menu-nav a.is-current,
  .site-menu-nav a[aria-current="page"] {
    background: rgba(213, 184, 134, 0.62);
  }
}

@media (max-width: 899px) {
  .page-scroller > section:not(#hero) {
    padding-top: 5rem;
  }

  .page-scroller > section,
  section {
    min-height: calc(100vh - 56px);
  }

  .hero {
    height: calc(100vh - 56px);
  }
}

/* Toutes les sections de la page */
.page-scroller>section {
  min-height: 100vh;
}

/* HERO VIDEO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  scroll-snap-align: start;
  background: #241b16;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.34) saturate(0.75) sepia(0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 249, 236, 0.36), rgba(255, 249, 236, 0.08) 30%, rgba(35, 24, 18, 0.12) 56%, rgba(19, 13, 10, 0.68) 100%),
    linear-gradient(180deg, rgba(40, 28, 22, 0.34) 0%, rgba(29, 21, 17, 0.5) 52%, rgba(18, 13, 10, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0.75rem 1rem;
}

.hero-copy {
  width: min(100%, 44rem);
  margin: 0 auto;
  flex: 1 1 auto;
  padding-bottom: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1.45rem;
  text-align: center;
}

.hero-logo {
  width: min(76vw, 21rem);
  margin: 0 auto;
}

.hero-logo-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.28));
}

.hero-body {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.35rem;
  padding-top: 0.1rem;
}

.hero-text {
  width: min(100%, 22.25rem);
  display: grid;
  justify-items: center;
  color: #f7f1e5;
  text-shadow: 0 8px 22px rgba(10, 7, 5, 0.4);
  text-align: center;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.9rem, 6.6vw, 4.2rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f3e6c3;
  text-wrap: balance;
  transform: translateY(-0.9rem);
}

.hero-title::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.48), rgba(212, 175, 55, 0));
}

.hero-title em {
  font-style: italic;
  color: #d4af37;
}

.hero-text p {
  margin: 0;
  font-size: clamp(1rem, 2.8vw, 1.28rem);
  line-height: 1.58;
  color: rgba(249, 243, 230, 0.92);
  text-wrap: pretty;
}

.hero-rotator {
  position: relative;
  width: 100%;
  min-height: 9.3rem;
  perspective: 1200px;
}

.hero-rotator-item {
  position: absolute;
  inset: 0;
  margin: 0;
  font-size: clamp(1.1rem, 3.05vw, 1.34rem);
  line-height: 1.62;
  color: rgba(249, 243, 230, 0.92);
  text-wrap: pretty;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 18px, -180px) scale(0.82);
  transform-origin: center center;
  transition: opacity 1.55s cubic-bezier(0.22, 1, 0.36, 1), transform 1.55s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}

.hero-rotator-item strong {
  color: #f4e7c5;
  font-weight: 700;
}

.hero-rotator-item.is-active {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-rotator-item.is-exiting {
  visibility: visible;
  opacity: 0;
  transform: translate3d(0, -12px, 90px) scale(1.08);
}

.hero-actions {
  width: min(100%, 20.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.7rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  background: rgba(31, 21, 16, 0.5);
  color: #f8f1e2;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: 0 8px 24px rgba(12, 8, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-action:hover,
.hero-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 14px 36px rgba(12, 8, 6, 0.3);
  outline: none;
}

.hero-action-primary {
  background: linear-gradient(180deg, rgba(223, 200, 131, 0.96), rgba(191, 148, 45, 0.96));
  color: #221912;
  border-color: rgba(241, 221, 163, 0.9);
}

.hero-action-primary:hover,
.hero-action-primary:focus-visible {
  background: linear-gradient(180deg, rgba(232, 211, 149, 1), rgba(198, 155, 48, 1));
}

.hero-band {
  width: 100%;
  margin: 0 auto;
  padding: 0.85rem 0.9rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: 0.015em;
  color: rgba(250, 244, 232, 0.88);
  background: linear-gradient(180deg, rgba(65, 45, 34, 0.5), rgba(29, 21, 17, 0.7));
  border-top: 1px solid rgba(212, 175, 55, 0.32);
  backdrop-filter: blur(6px);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: heroReveal 1.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-reveal-1 {
  transform: translateY(18px) scale(0.96);
  animation-duration: 2.05s;
  animation-delay: 0.18s;
}

.hero-reveal-2 {
  animation-delay: 1.05s;
}

.hero-reveal-3 {
  animation-delay: 2s;
}

.hero-reveal-4 {
  animation-delay: 2.95s;
}

.hero-reveal-5 {
  animation-delay: 3.95s;
}

.hero-reveal-6 {
  animation-delay: 4.8s;
}

.hero-band-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.hero-action {
  font-size: 0.9rem;
  line-height: 1.3;
}

.hero-band-desktop {
  display: none;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 700px) {
  .hero-content {
    padding: clamp(5.75rem, 10vw, 7.5rem) 1.5rem 1.4rem;
  }

  .hero-actions {
    width: auto;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.95rem;
  }

  .hero-action {
    min-height: 3.4rem;
    min-width: 15.5rem;
    width: auto;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-size: 1rem;
  }

  .hero-band {
    width: min(100%, 58rem);
    padding: 0.95rem 1.2rem;
    font-size: 0.98rem;
    line-height: 1.5;
    border: 1px solid rgba(212, 175, 55, 0.22);
  }

  .hero-band-mobile {
    display: none;
  }

  .hero-band-desktop {
    display: inline;
  }

  .hero-rotator {
    min-height: 7.3rem;
  }
}

@media (min-width: 900px) {
  .hero-content {
    padding: clamp(2.5rem, 3.8vh, 3.25rem) 1.75rem 1.1rem;
  }

  .hero-copy {
    width: min(100%, 66rem);
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    gap: 1.05rem;
  }

  .hero-logo {
    width: min(28vw, 27rem);
  }

  .hero-logo.hero-reveal-1 {
    margin-bottom: 0;
  }

  .hero-text {
    width: min(100%, 64rem);
  }

  .hero-title {
    font-size: clamp(3rem, 4vw, 3.95rem);
    line-height: 1.06;
    white-space: nowrap;
    margin-inline: auto;
    margin-top: calc(0.1rem + 50px);
    margin-bottom: 0;
    transform: none;
  }

  .hero-title::after {
    width: 7.5rem;
    margin-top: 0.95rem;
  }

  .hero-text p {
    max-width: 68rem;
    margin-inline: auto;
    font-size: 1.6rem;
    line-height: 1.55;
    text-wrap: balance;
  }

  .hero-rotator {
    width: min(100%, 64rem);
    min-height: 7.4rem;
  }

  .hero-rotator-item {
    font-size: 1.54rem;
    line-height: 1.6;
  }

  .hero-body {
    width: min(100%, 78rem);
    justify-items: center;
    align-content: start;
    gap: 3.35rem;
    padding-top: 1.1rem;
  }

  .hero-band {
    width: min(100%, 62rem);
    padding: 1.05rem 1.8rem;
    font-size: 1.34rem;
    line-height: 1.45;
  }

  .hero-action {
    padding-inline: 1.8rem;
    font-size: 1rem;
  }
}

section {
  scroll-snap-align: start;
  /* L’aimant aligne chaque section en haut */
  min-height: 100vh;
  /* Chaque section = une page entière */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SECTION CONSTAT */

.section-about {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: 4.5rem 1.25rem;
  background:
    radial-gradient(circle at top center, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0) 30%),
    linear-gradient(180deg, #fcfaf6 0%, #f4efe6 100%);
}

.about-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.about-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.about-header h2 {
  margin: 0;
  color: #23180f;
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.about-intro {
  margin: 1.1rem auto 0;
  max-width: 48rem;
  color: #5a4734;
  font-size: 0.98rem;
  line-height: 1.85;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.about-card {
  position: relative;
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(186, 155, 103, 0.18);
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(43, 28, 18, 0.06);
}

.about-card-trigger {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.about-card-media {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 0.45rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.about-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-card:nth-child(1) .about-card-media img,
.about-card:nth-child(2) .about-card-media img {
  transform: scale(1.22);
}

.about-card:nth-child(3) .about-card-media img {
  transform: scale(0.9);
}

.about-card-title,
.about-card h3 {
  margin: 0;
  color: #23180f;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-card-toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(166, 124, 57, 0.28);
  background: rgba(166, 124, 57, 0.06);
  color: #8d6633;
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.about-card-content {
  overflow: hidden;
}

.about-card p {
  margin: 0.9rem 0 0;
  color: #5d4936;
  font-size: 0.94rem;
  line-height: 1.66;
}

.about-card-accent {
  margin-top: 0.95rem;
  padding-top: 0;
  border-top: none;
  color: #3b2b1f;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 759px) {
  .about-grid {
    gap: 0.4rem;
  }

  .about-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(166, 124, 57, 0.18);
  }

  .about-card-trigger {
    grid-template-columns: 4.2rem minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    gap: 0.8rem;
    padding: 0.85rem 0;
    text-align: left;
  }

  .about-card-media {
    width: 4.2rem;
    height: 4.2rem;
    margin: 0;
  }

  .about-card-title {
    display: flex;
    align-items: center;
    min-height: 3rem;
    font-size: 1.06rem;
    line-height: 1.28;
    text-align: left;
  }

  .about-card-content {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.28s ease;
  }

  .about-card.is-open .about-card-content {
    max-height: 20rem;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.15rem;
  }

  .about-card-content > p,
  .about-card-content > .about-card-accent {
    padding-left: 1.15rem;
    padding-right: 0.2rem;
  }

  .about-card p {
    margin-top: 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about-card-content > p + p {
    margin-top: 0.75rem;
  }

  .about-card-accent {
    padding-bottom: 0.95rem;
  }

  .about-card.is-open .about-card-toggle-icon {
    background: rgba(166, 124, 57, 0.12);
  }
}

.about-transition {
  margin-top: -0.2rem;
  padding: 0.35rem 1rem 0;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-transition-text {
  margin: 0;
  color: #2f2419;
  font-size: 1.18rem;
  line-height: 1.75;
  font-weight: 500;
}

.about-transition-line {
  display: block;
  width: min(100%, 58rem);
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, rgba(166, 124, 57, 0), rgba(166, 124, 57, 0.42), rgba(166, 124, 57, 0));
}

.about-transition-arrow {
  display: block;
  margin-top: 0.18rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(166, 124, 57, 0.75);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

/* Fade-in on scroll très subtil */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .section-about {
    padding-inline: 1.5rem;
  }

  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
  }

  .about-card {
    padding: 1.05rem 1.05rem 1.1rem;
  }

  .about-card-trigger {
    cursor: default;
  }

  .about-card-toggle-icon {
    display: none;
  }

  .about-card-content {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 0 !important;
    overflow: visible;
  }
}

@media (min-width: 900px) {
  .section-about {
    padding: 4.6rem 2.4rem;
  }

  .about-inner {
    gap: 2rem;
  }

  .about-header {
    max-width: 900px;
  }

  .about-header h2 {
    font-size: clamp(2rem, 3vw, 2.45rem);
  }

  .about-intro {
    max-width: 52rem;
    font-size: 1rem;
    line-height: 1.9;
  }

  .about-grid {
    gap: 2.35rem;
    align-items: stretch;
  }

  .about-card {
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    padding: 1.15rem 1.2rem 1.2rem;
    height: 100%;
  }

  .about-card-trigger {
    gap: 0.35rem;
  }

  .about-card-title {
    font-size: 1.22rem;
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-card-media {
    width: 8.8rem;
    height: 8.8rem;
    margin-bottom: 0.35rem;
  }

  .about-card-content > p {
    font-size: 0.96rem;
    line-height: 1.75;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .about-card-content > p:not(.about-card-accent) {
    min-height: 6.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .about-card-accent {
    margin-top: auto;
    padding-top: 1rem;
    min-height: 5.4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .about-transition-text {
    font-size: 1.24rem;
    line-height: 1.75;
  }
}

/* SECTION 2 – APPROCHE RATIONNELLE (FOND SOMBRE) */

.section-accompagnement-dark {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 1.5rem 7rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0) 24%),
    linear-gradient(180deg, #0a0908 0%, #16100d 52%, #0b0907 100%);
  color: #f6eedf;
}

.section-accompagnement-dark .accompagnement-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.section-accompagnement-dark .accompagnement-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-accompagnement-dark .accompagnement-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.section-accompagnement-dark .accompagnement-header h2 {
  margin: 0;
  color: #f2e8d3;
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-accompagnement-dark .accompagnement-intro {
  margin: 1.1rem auto 0;
  max-width: 48rem;
  color: rgba(242, 232, 211, 0.84);
  font-size: 0.98rem;
  line-height: 1.85;
}

.section-accompagnement-dark .accompagnement-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.section-accompagnement-dark .accompagnement-pillar {
  background: rgba(43, 31, 24, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.section-accompagnement-dark .accompagnement-pillar-trigger {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.section-accompagnement-dark .accompagnement-pillar-media {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 0.45rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.section-accompagnement-dark .accompagnement-pillar-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-accompagnement-dark .accompagnement-pillar:nth-child(1) .accompagnement-pillar-media img,
.section-accompagnement-dark .accompagnement-pillar:nth-child(2) .accompagnement-pillar-media img {
  transform: scale(1.22);
}

.section-accompagnement-dark .accompagnement-pillar:nth-child(3) .accompagnement-pillar-media img {
  transform: scale(0.9);
}

.section-accompagnement-dark .accompagnement-pillar-title,
.section-accompagnement-dark .accompagnement-pillar h3 {
  margin: 0;
  color: #f5eddc;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-accompagnement-dark .accompagnement-pillar-toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #d4af37;
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.section-accompagnement-dark .accompagnement-pillar-content {
  overflow: hidden;
}

.section-accompagnement-dark .accompagnement-pillar-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.section-accompagnement-dark .accompagnement-pillar-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(241, 232, 214, 0.84);
  font-size: 0.94rem;
  line-height: 1.66;
  text-align: center;
}

.section-accompagnement-dark .accompagnement-pillar-list li::before {
  display: none;
}

.section-accompagnement-dark .accompagnement-signature {
  margin: 0;
  max-width: 58rem;
  text-align: center;
  color: #f1deaf;
  font-size: 1.18rem;
  line-height: 1.75;
  font-weight: 600;
}

.section-accompagnement-dark .accompagnement-transition {
  margin-top: 0.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-accompagnement-dark .accompagnement-transition-line {
  display: block;
  width: min(100%, 58rem);
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.42), rgba(212, 175, 55, 0));
}

.section-accompagnement-dark .accompagnement-transition-arrow {
  display: block;
  margin-top: 0.18rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(212, 175, 55, 0.75);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.section-accompagnement-dark .accompagnement-action {
  display: flex;
  justify-content: center;
}

.section-accompagnement-dark .accompagnement-opportunity-btn {
  min-height: 3.3rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: linear-gradient(180deg, rgba(44, 31, 24, 0.94), rgba(25, 18, 14, 0.98));
  color: #f5e8c6;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.section-accompagnement-dark .accompagnement-opportunity-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.section-accompagnement-dark .accompagnement-opportunity-btn:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.72);
  outline-offset: 3px;
}

@media (max-width: 759px) {
  .section-accompagnement-dark .accompagnement-pillars {
    gap: 0.4rem;
  }

  .section-accompagnement-dark .accompagnement-pillar {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  }

  .section-accompagnement-dark .accompagnement-pillar-trigger {
    grid-template-columns: 4.2rem minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    gap: 0.8rem;
    padding: 0.85rem 0;
    text-align: left;
  }

  .section-accompagnement-dark .accompagnement-pillar-media {
    width: 4.2rem;
    height: 4.2rem;
    margin: 0;
  }

  .section-accompagnement-dark .accompagnement-pillar-title {
    display: flex;
    align-items: center;
    min-height: 3rem;
    font-size: 1.06rem;
    line-height: 1.28;
    text-align: left;
  }

  .section-accompagnement-dark .accompagnement-pillar-content {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.28s ease;
  }

  .section-accompagnement-dark .accompagnement-pillar.is-open .accompagnement-pillar-content {
    max-height: 20rem;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.15rem;
  }

  .section-accompagnement-dark .accompagnement-pillar-list {
    margin-top: 0;
    padding: 0 0.15rem 0.95rem 1.15rem;
    gap: 0.5rem;
  }

  .section-accompagnement-dark .accompagnement-pillar-list li {
    padding-left: 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .section-accompagnement-dark .accompagnement-pillar.is-open .accompagnement-pillar-toggle-icon {
    background: rgba(212, 175, 55, 0.12);
  }
}

@media (min-width: 760px) {
  .section-accompagnement-dark {
    padding-inline: 1.5rem;
  }

  .section-accompagnement-dark .accompagnement-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
  }

  .section-accompagnement-dark .accompagnement-pillar {
    padding: 1.05rem 1.05rem 1.1rem;
  }

  .section-accompagnement-dark .accompagnement-pillar-trigger {
    cursor: default;
  }

  .section-accompagnement-dark .accompagnement-pillar-toggle-icon {
    display: none;
  }

  .section-accompagnement-dark .accompagnement-pillar-content {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 0 !important;
    overflow: visible;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Desktop */

@media (min-width: 900px) {
  .section-accompagnement-dark {
    padding: 5.8rem 2.2rem 7.4rem;
  }

  .section-accompagnement-dark .accompagnement-inner {
    gap: 2.75rem;
  }

  .section-accompagnement-dark .accompagnement-header h2 {
    font-size: clamp(2rem, 3vw, 2.45rem);
  }

  .section-accompagnement-dark .accompagnement-intro {
    max-width: 52rem;
    font-size: 1rem;
    line-height: 1.9;
  }

  .section-accompagnement-dark .accompagnement-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
    align-items: stretch;
  }

  .section-accompagnement-dark .accompagnement-pillar {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    padding: 1.15rem 1.2rem 1.2rem;
  }

  .section-accompagnement-dark .accompagnement-pillar-trigger {
    gap: 0.35rem;
  }

  .section-accompagnement-dark .accompagnement-pillar-title {
    font-size: 1.22rem;
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-accompagnement-dark .accompagnement-pillar-media {
    width: 8.8rem;
    height: 8.8rem;
    margin-bottom: 0.35rem;
  }

  .section-accompagnement-dark .accompagnement-pillar-list {
    margin-top: 1rem;
  }

  .section-accompagnement-dark .accompagnement-pillar-list li {
    font-size: 0.96rem;
    line-height: 1.75;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section-accompagnement-dark .accompagnement-signature {
    font-size: 1.24rem;
    line-height: 1.75;
  }

  .section-accompagnement-dark .accompagnement-opportunity-btn {
    min-height: 3.55rem;
    padding-inline: 2rem;
    font-size: 1rem;
  }
}

/* Animation d'apparition des encarts (cards) */

.section-accompagnement-light .accompagnement-step.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

/* Quand l'observer ajoute .visible */

.section-accompagnement-light .accompagnement-step.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger (décalage léger dans le temps) */

.section-accompagnement-light .accompagnement-step.fade-on-scroll:nth-child(1) {
  transition-delay: 0.05s;
}

.section-accompagnement-light .accompagnement-step.fade-on-scroll:nth-child(2) {
  transition-delay: 0.15s;
}

.section-accompagnement-light .accompagnement-step.fade-on-scroll:nth-child(3) {
  transition-delay: 0.25s;
}

.fund-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.fund-modal[hidden] {
  display: none !important;
}

.fund-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.8);
}

.fund-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  height: min(92vh, 980px);
  max-height: 92vh;
  background: #f7f4ef;
  color: #2b1d12;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(166, 124, 57, 0.35);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.42);
}

.fund-modal-close {
  margin: 0 0 0.7rem auto;
  border: 1px solid rgba(166, 124, 57, 0.45);
  background: rgba(255, 255, 255, 0.95);
  color: #5e4528;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

.fund-modal-title {
  margin: 0 0 0.35rem;
  color: #1f140c;
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.9rem);
}

.fund-modal-meta {
  margin: 0 0 0.85rem;
  color: #7a5c37;
  font-size: 0.86rem;
}

.fund-modal-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(166, 124, 57, 0.24);
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  line-height: 1.65;
  font-size: 0.94rem;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.fund-modal-content > * + * {
  margin-top: 0.75rem;
}

.fund-modal-content p {
  margin: 0.6rem 0;
  color: #3b2a1c;
}

.fund-modal-content h1,
.fund-modal-content h2,
.fund-modal-content h3 {
  margin: 0.8rem 0 0.4rem;
  color: #20140b;
  line-height: 1.25;
}

.fund-modal-content ul,
.fund-modal-content ol {
  margin: 0.55rem 0 0.75rem;
  padding-left: 1.25rem;
}

.fund-modal-content ul {
  list-style: disc;
}

.fund-modal-content ol {
  list-style: decimal;
}

.fund-modal-content li {
  margin: 0.25rem 0;
  color: #3b2a1c;
}

.fund-modal-content strong,
.fund-modal-content b {
  font-weight: 700;
  color: #1f140c;
}

.fund-modal-content u {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fund-modal-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

body.fund-modal-open {
  overflow: hidden;
}

body.fund-modal-open .page-scroller {
  overflow: hidden;
}

@media (max-width: 739px) {
  .fund-modal {
    padding: 0.4rem;
  }

  .fund-modal-panel {
    width: 100%;
    height: min(95vh, 95vh);
    max-height: 95vh;
    border-radius: 12px;
    padding: 0.85rem 0.85rem 1rem;
  }

  .fund-modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.45rem;
  }
}

/* SECTION 3 – SOLUTIONS PATRIMONIALES (FOND CLAIR) */

.section-confiance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 1.25rem;
  background:
    radial-gradient(circle at top center, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0) 30%),
    linear-gradient(180deg, #fcfaf6 0%, #f4efe6 100%);
  color: #23180f;
}

.confiance-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.confiance-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.confiance-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.confiance-header h2 {
  margin: 0;
  color: #23180f;
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.confiance-intro {
  margin: 1.1rem auto 0;
  max-width: 68rem;
  color: #5a4734;
  font-size: 0.98rem;
  line-height: 1.85;
}

.confiance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.confiance-card {
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(186, 155, 103, 0.18);
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(43, 28, 18, 0.06);
}

.confiance-card-media {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 0.45rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.confiance-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.confiance-card h3 {
  margin: 0;
  color: #23180f;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.confiance-card-text {
  margin: 0.9rem 0 0;
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
  color: #5d4936;
  font-size: 0.94rem;
  line-height: 1.72;
  text-align: center;
}

.confiance-toggle {
  margin: 0.55rem auto 0;
  width: 2.65rem;
  min-width: 2.65rem;
  height: 2.65rem;
  min-height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(166, 124, 57, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(246, 238, 224, 0.92));
  color: #5b4430;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.confiance-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(120, 87, 45, 0.12);
  border-color: rgba(166, 124, 57, 0.46);
}

.confiance-toggle:focus-visible {
  outline: 2px solid rgba(166, 124, 57, 0.75);
  outline-offset: 3px;
}

.confiance-toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8d6633;
  font-size: 1.15rem;
  line-height: 1;
  flex: 0 0 auto;
}

.confiance-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.28s ease;
}

.section-confiance .confiance-block.is-open .confiance-content {
  max-height: 36rem;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.95rem;
}

.confiance-inline-link {
  min-height: 2.7rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(166, 124, 57, 0.3);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(247, 240, 227, 0.92));
  color: #6a4e30;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.confiance-inline-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(120, 87, 45, 0.12);
  border-color: rgba(166, 124, 57, 0.48);
}

.confiance-inline-link:focus-visible {
  outline: 2px solid rgba(166, 124, 57, 0.76);
  outline-offset: 3px;
}

.confiance-secondary-slot {
  min-height: 3.1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confiance-secondary-slot[aria-hidden="true"] {
  display: none;
  min-height: 0;
  margin-top: 0;
}

.confiance-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.confiance-list li {
  position: relative;
  padding-left: 0;
  color: #5d4936;
  font-size: 0.94rem;
  line-height: 1.68;
  text-align: center;
}

.confiance-list li::before {
  display: none;
}

.confiance-list li + li {
  padding-top: 0.55rem;
}

.confiance-list li + li::before {
  content: "-";
  display: block;
  margin: 0 auto 0.35rem;
  color: rgba(166, 124, 57, 0.42);
  font-weight: 400;
  line-height: 1;
}

.confiance-detail-link {
  min-height: 2.7rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(166, 124, 57, 0.3);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(247, 240, 227, 0.92));
  color: #6a4e30;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.confiance-detail-link:hover,
.confiance-detail-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(120, 87, 45, 0.12);
  border-color: rgba(166, 124, 57, 0.48);
  text-decoration: none;
  outline: none;
}

.confiance-list-action {
  padding-top: 0.85rem;
  text-align: center;
}

.confiance-list-action::before {
  display: none !important;
}

@media (max-width: 759px) {
  .section-confiance .confiance-grid {
    gap: 0.4rem;
  }

  .section-confiance .confiance-card {
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr) auto;
    grid-template-areas:
      "media title toggle"
      "content content content"
      "secondary secondary secondary";
    align-items: center;
    gap: 0 0.8rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(166, 124, 57, 0.18);
    text-align: left;
  }

  .section-confiance .confiance-card-media {
    grid-area: media;
    width: 4.2rem;
    height: 4.2rem;
    margin: 0;
    cursor: pointer;
  }

  .section-confiance .confiance-card h3 {
    grid-area: title;
    display: flex;
    align-items: center;
    min-height: 3rem;
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.28;
    text-align: left;
    cursor: pointer;
  }

  .section-confiance .confiance-card-text {
    display: none;
  }

  .section-confiance .confiance-toggle {
    grid-area: toggle;
    width: 1.9rem;
    min-width: 1.9rem;
    height: 1.9rem;
    min-height: 1.9rem;
    margin: 0;
    border: 1px solid rgba(166, 124, 57, 0.28);
    background: rgba(166, 124, 57, 0.06);
  }

  .section-confiance .confiance-toggle-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .section-confiance .confiance-content {
    grid-area: content;
  }

  .section-confiance .confiance-block.is-open .confiance-content {
    margin-top: 0.15rem;
  }

  .section-confiance .confiance-list {
    padding: 0 0.15rem 0.95rem 1.15rem;
    gap: 0.5rem;
  }

  .section-confiance .confiance-list li {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .section-confiance .confiance-list-action {
    text-align: center;
  }

  .section-confiance .confiance-list li + li {
    padding-top: 0;
  }

  .section-confiance .confiance-list li + li::before {
    display: none;
  }

  .section-confiance .confiance-secondary-slot {
    grid-area: secondary;
    min-height: 0;
    margin: 0 0 0.95rem;
    justify-content: flex-start;
    padding-left: 1.15rem;
  }

  .section-confiance .confiance-secondary-slot[aria-hidden="true"] {
    display: none;
  }

  .section-confiance .confiance-secondary-slot-desktop {
    display: none;
  }

  .section-confiance .confiance-inline-link {
    min-height: 2.55rem;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}

.partners-strip {
  width: min(100%, 68rem);
  min-height: 0;
  margin: -0.6rem auto 0;
  overflow: hidden;
  display: block;
}

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

.partners-heading h3 {
  margin: 0;
  color: #6a4e30;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.partners-heading-line,
.partners-bottom-line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(166, 124, 57, 0.46), rgba(166, 124, 57, 0.16), rgba(166, 124, 57, 0));
}

.partners-heading-line {
  flex: 1 1 auto;
}

.partners-marquee {
  --partners-gap: 1rem;
  --partners-speed: 34s;
  position: relative;
  margin: 1rem 0 0.95rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-track {
  width: max-content;
  display: flex;
  gap: var(--partners-gap);
  animation: partnersMarquee var(--partners-speed) linear infinite;
  will-change: transform;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-set {
  display: flex;
  align-items: center;
  gap: var(--partners-gap);
}

.partner-logo {
  width: 9.8rem;
  height: 4.35rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(166, 124, 57, 0.16);
  border-radius: 10px;
  background: rgba(255, 252, 246, 0.62);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.partner-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.78) contrast(0.98);
}

.partner-logo-tall img {
  width: auto;
  height: 82%;
  max-width: 100%;
  transform: translateY(-0.24rem);
}

.partner-logo-norma img {
  width: auto;
  height: 84%;
  max-width: 100%;
  transform: translateY(-0.14rem);
}

.partner-logo-vieplus img {
  width: auto;
  height: 82%;
  max-width: 100%;
  transform: translateY(-0.24rem);
}

.partners-bottom-line {
  width: 100%;
  background: linear-gradient(90deg, rgba(166, 124, 57, 0), rgba(166, 124, 57, 0.42), rgba(166, 124, 57, 0));
}

@keyframes partnersMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--partners-gap) / 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }

  .partners-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }
}

@media (max-width: 759px) {
  .partners-strip {
    width: 100%;
    margin-top: 0.35rem;
  }

  .partners-heading {
    gap: 0.75rem;
  }

  .partners-heading h3 {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .partners-marquee {
    --partners-gap: 0.65rem;
    --partners-speed: 26s;
    margin: 0.75rem 0 0.75rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }

  .partner-logo {
    width: 7.4rem;
    height: 3.45rem;
    padding: 0.48rem 0.65rem;
    border-radius: 8px;
  }
}

.confiance-transition {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.confiance-transition-link {
  min-height: 3.2rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(166, 124, 57, 0.32);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(50, 35, 26, 0.96), rgba(28, 20, 15, 0.98));
  color: #f4e7c5;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(43, 28, 18, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.confiance-transition-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(43, 28, 18, 0.18);
  border-color: rgba(166, 124, 57, 0.5);
}

.confiance-transition-link:focus-visible {
  outline: 2px solid rgba(166, 124, 57, 0.68);
  outline-offset: 4px;
}

.confiance-transition-line {
  display: block;
  width: min(100%, 58rem);
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, rgba(166, 124, 57, 0), rgba(166, 124, 57, 0.42), rgba(166, 124, 57, 0));
}

.confiance-transition-arrow {
  display: block;
  margin-top: 0.18rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(166, 124, 57, 0.75);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 760px) and (max-width: 1220px) {
  .section-confiance {
    padding: 5rem 1.7rem;
  }

  .confiance-inner {
    gap: 2.4rem;
  }

  .confiance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    align-items: stretch;
  }

  .confiance-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto auto;
    align-content: start;
    padding: 1.05rem 1.05rem 1.1rem;
    height: 100%;
  }

  .confiance-card-media {
    width: 8rem;
    height: 8rem;
  }

  .confiance-card h3 {
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .confiance-card-text {
    max-width: 15.5rem;
    min-height: 9.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .confiance-toggle {
    margin-top: 0.9rem;
    align-self: center;
  }

  .confiance-card:nth-child(1) .confiance-secondary-slot,
  .confiance-card:nth-child(4) .confiance-secondary-slot {
    min-height: 3.1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .confiance-list-action-mobile {
    display: none;
  }
}

@media (min-width: 1221px) {
  .section-confiance {
    padding: 5.8rem 2.4rem;
  }

  .confiance-inner {
    gap: 1.4rem;
  }

  .confiance-header {
    max-width: 1180px;
  }

  .confiance-header h2 {
    font-size: clamp(2rem, 3vw, 2.45rem);
  }

  .confiance-intro {
    font-size: 1rem;
    line-height: 1.9;
  }

  .confiance-header .confiance-intro:first-of-type {
    max-width: 62rem;
  }

  .confiance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
  }

  .confiance-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    align-content: start;
    padding: 1.15rem 1.2rem 1.2rem;
    height: 100%;
  }

  .confiance-card-media {
    width: 8.8rem;
    height: 8.8rem;
    margin-bottom: 0.35rem;
  }

  .confiance-card h3 {
    font-size: 1.15rem;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .confiance-card-text {
    font-size: 0.96rem;
    line-height: 1.78;
    max-width: 15.75rem;
    min-height: 9.4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .confiance-toggle {
    margin-top: 0.7rem;
    align-self: center;
  }

  .confiance-secondary-slot {
    min-height: 3.2rem;
    margin-top: 0.7rem;
  }

  .confiance-secondary-slot[aria-hidden="true"] {
    display: flex;
    visibility: hidden;
    min-height: 3.2rem;
    margin-top: 0.7rem;
  }

  .confiance-list-action-mobile {
    display: none;
  }

  .confiance-list li {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .partners-strip {
    margin-top: -0.15rem;
  }

  .partners-marquee {
    margin: 0.72rem 0 0.68rem;
  }

  .confiance-transition {
    margin-top: -0.18rem;
  }
}

/* SECTION 5 – EXPERTISE COLLECTIVE (FOND SOMBRE) */

.section-expertises {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 1.25rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0) 24%),
    linear-gradient(180deg, #0a0908 0%, #16100d 52%, #0b0907 100%);
  color: #f6eedf;
}

.expertises-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.expertises-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.expertises-header {
  text-align: center;
  max-width: 62rem;
  margin: 0 auto;
}

.expertises-header h2 {
  margin: 0;
  color: #f2e8d3;
  font-size: clamp(1.8rem, 5vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.expertises-intro {
  margin: 1rem auto 0;
  max-width: 56rem;
  color: rgba(242, 232, 211, 0.84);
  font-size: 0.99rem;
  line-height: 1.82;
}

.expertises-panel {
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background:
    linear-gradient(180deg, rgba(47, 35, 28, 0.95), rgba(30, 22, 18, 0.97)),
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 38%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.expertises-column {
  padding: 1.5rem 1.35rem;
}

.expertises-identity h3,
.expertises-column h3 {
  margin: 0;
  color: #f4ead7;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.expertises-copy p,
.expertises-intro-copy p,
.expertises-approach p {
  margin: 1rem 0 0;
  color: rgba(242, 232, 211, 0.84);
  font-size: 0.97rem;
  line-height: 1.8;
}

.expertises-identity-left {
  margin-bottom: 1rem;
}

.expertises-identity,
.expertises-identity-left {
  text-align: center;
}

.expertises-role {
  text-align: center;
}

.expertises-column-right::before {
  content: "";
  display: block;
  width: min(100%, 14rem);
  height: 1px;
  margin: 0 auto 1.4rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.42), rgba(212, 175, 55, 0));
}

.expertises-domain-list,
.expertises-principles {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.expertises-domain-list li,
.expertises-principles li {
  position: relative;
  padding-left: 1.45rem;
  color: #f2e8d3;
  font-size: 0.96rem;
  line-height: 1.72;
}

.expertises-domain-list li::before,
.expertises-principles li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: 700;
}

.expertises-network-card {
  margin-top: 2.6rem;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 52%);
  padding: 1.15rem 1.2rem;
  text-align: center;
}

.expertises-network-title {
  margin: 0 0 0.4rem;
  color: #f4ead7;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.expertises-network-count {
  margin: 0;
  color: #d4af37;
  font-size: 1.24rem;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.expertises-network-assets {
  margin: 0.8rem 0 0;
  color: #f3e7c2;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.expertises-network-caption {
  margin: 0.2rem 0 0;
  color: rgba(242, 232, 211, 0.78);
  font-size: 0.98rem;
  line-height: 1.45;
}

.expertises-right-top {
  display: grid;
  gap: 1.4rem;
}

.expertises-overline {
  display: block;
  margin: 0 0 0.35rem;
  color: #e0bb58;
  font-size: 0.92rem;
  line-height: 1.25;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}

.expertises-identity h3 {
  margin-top: 0;
}

.expertises-role {
  margin: 0.4rem 0 0;
  color: rgba(242, 232, 211, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.expertises-metrics-list {
  margin: 0.85rem 0 0.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.82rem;
}

.expertises-metrics-list li {
  position: relative;
  padding-left: 1.18rem;
  color: rgba(242, 232, 211, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
}

.expertises-metrics-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -0.08rem;
  color: #d4af37;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}

.expertises-metrics-list strong {
  color: #f3e7c2;
  font-weight: 700;
}

.expertises-quote {
  margin: 0.55rem 0 0;
  padding-top: 0;
  border-top: none;
  color: #f3e7c2;
}

.expertises-quote p {
  margin: 0;
  max-width: 52rem;
  color: rgba(246, 232, 197, 0.95);
  font-size: 1.12rem;
  line-height: 1.72;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.expertises-quote cite {
  display: block;
  margin-top: 0.18rem;
  color: #d4af37;
  font-size: 0.9rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.expertises-portrait {
  position: relative;
  min-height: 15rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.expertises-portrait img {
  display: block;
  width: min(100%, 46rem);
  height: auto;
  object-fit: contain;
}

.expertises-intro-copy {
  width: 100%;
  margin-top: 0.2rem;
}

.expertises-intro-copy p {
  margin-top: 0;
}

.expertises-approach {
  width: 100%;
  max-width: none;
  margin-top: 1.15rem;
  padding-top: 0;
  border-top: none;
}

.expertises-approach p {
  margin-top: 0;
  color: #f3e7c2;
}

.expertises-transition {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}

.expertises-transition-text {
  margin: 0;
  color: #f3e7c2;
  font-size: 1.16rem;
  line-height: 1.7;
  font-weight: 600;
}

.expertises-transition-link {
  margin-top: 1rem;
  min-height: 3.2rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(44, 31, 24, 0.94), rgba(25, 18, 14, 0.98));
  color: #f5e8c6;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.expertises-transition-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.expertises-transition-link:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.72);
  outline-offset: 4px;
}

.expertises-transition-line {
  display: block;
  width: min(100%, 58rem);
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.42), rgba(212, 175, 55, 0));
}

.expertises-transition-arrow {
  display: block;
  margin-top: 0.18rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(212, 175, 55, 0.75);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 900px) {
  .section-expertises {
    padding: 5.6rem 2.2rem;
  }

  .expertises-inner {
    gap: 2.7rem;
  }

  .expertises-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .expertises-column {
    padding: 2rem 2rem 2.15rem;
  }

  .expertises-identity,
  .expertises-identity-left,
  .expertises-role {
    text-align: left;
  }

  .expertises-column-right::before {
    display: none;
  }

  .expertises-network-card {
    margin-top: 5rem;
  }

  .expertises-column-right {
    border-left: 1px solid rgba(212, 175, 55, 0.12);
  }

  .expertises-right-top {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.74fr);
    grid-template-areas:
      "identity portrait"
      "metrics portrait"
      "quote quote";
    align-items: end;
    gap: 0.15rem 0.75rem;
  }

  .expertises-identity {
    grid-area: identity;
  }

  .expertises-portrait {
    grid-area: portrait;
    min-height: 18.8rem;
    align-self: end;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .expertises-portrait img {
    width: min(100%, 24rem);
  }

  .expertises-metrics-list {
    grid-area: metrics;
    margin-top: 0.1rem;
    margin-bottom: 0.95rem;
    max-width: 23rem;
    align-self: end;
  }

  .expertises-quote {
    grid-area: quote;
    margin-top: 0.45rem;
  }

  .expertises-approach {
    margin-top: 1rem;
  }

  .expertises-transition {
    margin-top: 1.1rem;
  }

  .expertises-transition-link {
    margin-top: 1.5rem;
  }
}

/* =========================================
   SECTION — AVIS GOOGLE
   ========================================= */

.section-google-reviews {
  min-height: 82vh;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(32, 117, 78, 0.1), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #efe9df 100%);
  color: #23180f;
}

.google-reviews-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  gap: 1.65rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}

.google-reviews-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.google-reviews-header {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.google-reviews-header h2 {
  margin: 0;
  color: #24180f;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.google-reviews-header p:last-child {
  margin: 1rem auto 0;
  max-width: 820px;
  color: #65513d;
  font-size: 1rem;
  line-height: 1.75;
}

.google-reviews-summary {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.05rem 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  border: 1px solid rgba(166, 124, 57, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 28px rgba(66, 46, 26, 0.14);
}

.google-reviews-badge {
  order: 3;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.google-logo-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0.01em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.google-logo-word span:nth-child(1),
.google-logo-word span:nth-child(4) {
  color: #4285f4;
}

.google-logo-word span:nth-child(2),
.google-logo-word span:nth-child(6) {
  color: #ea4335;
}

.google-logo-word span:nth-child(3) {
  color: #fbbc05;
}

.google-logo-word span:nth-child(5) {
  color: #34a853;
}

.google-reviews-score {
  order: 1;
  color: #251910;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.google-reviews-score strong {
  font-size: 0.9rem;
}

.google-reviews-summary-stars {
  color: #f4b400;
  font-size: 1.14rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: none;
}

.google-reviews-count {
  order: 2;
  color: #251910;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
}

.google-reviews-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.google-review-card {
  min-height: 0;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(166, 124, 57, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(66, 46, 26, 0.09);
}

.google-review-card-head {
  display: flex;
  align-items: center;
}

.google-review-origin {
  margin: 0.12rem 0 0;
  color: #80674e;
  font-size: 0.84rem;
  line-height: 1.25;
}

.google-review-rating-row {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.google-review-stars {
  color: #b88a2c;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.google-review-text {
  margin: 0.65rem 0 0;
  color: #4f3f30;
  font-size: 0.98rem;
  line-height: 1.62;
}

.google-review-author {
  margin: 0;
  color: #251910;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
}

.google-review-date {
  display: inline-flex;
  margin-top: 0;
  color: #80674e;
  font-size: 0.84rem;
  font-weight: 400;
}

.google-review-source {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.55rem;
  color: #7a5520;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.google-review-source:hover {
  color: #251910;
}

.google-review-placeholder {
  min-height: 8rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #65513d;
}

.google-review-placeholder p {
  margin: 0;
  max-width: 42rem;
  line-height: 1.65;
}

.google-reviews-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.google-reviews-link {
  min-height: 3rem;
  padding: 0.72rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(166, 124, 57, 0.28);
  border-radius: 999px;
  background: #24180f;
  color: #f8ead0;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.google-reviews-link:hover,
.google-reviews-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(166, 124, 57, 0.52);
  box-shadow: 0 14px 30px rgba(66, 46, 26, 0.16);
}

.google-reviews-link:focus-visible {
  outline: 2px solid rgba(166, 124, 57, 0.55);
  outline-offset: 4px;
}

.google-reviews-line {
  display: block;
  width: min(100%, 58rem);
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, rgba(166, 124, 57, 0), rgba(166, 124, 57, 0.38), rgba(166, 124, 57, 0));
}

.google-reviews-arrow {
  display: block;
  margin-top: 0.18rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(166, 124, 57, 0.8);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 760px) {
  .google-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .section-google-reviews {
    min-height: 88vh;
    padding: 5.2rem 2.2rem;
  }

  .google-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .google-review-card {
    padding: 1.35rem 1.5rem;
  }
}

/* =========================================
   SECTION — QUESTION / INTROSPECTION
   ========================================= */

.section-question {
  min-height: 90vh;
  padding: 4rem 1.5rem;

  background:
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(66,46,26,0.035)'/%3E%3C/svg%3E"),
    radial-gradient(
      circle at 42% 18%,
      rgba(212, 175, 55, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #fcfaf6 0%, #f2ece2 100%);

  background-size:
    120px 120px,
    cover,
    cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #23180f;
}

.question-contact-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}


/* Conteneur animé */
.question-inner {
  max-width: 780px;
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.question-inner.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Sous-titre "Et vous ?" */
.section-subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a67c39;
  margin-bottom: 0.6rem;
}

/* Titre principal */
.question-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  color: #23180f;
  margin: 0 0 1.3rem 0;
  letter-spacing: -0.01em;
}

/* Petite ligne dorée */
.question-separator {
  width: 80px;
  height: 2px;
  margin: 1.2rem auto 1.8rem auto;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.6),
    rgba(166, 124, 57, 0.95),
    rgba(212, 175, 55, 0.5)
  );
  border-radius: 999px;
}

/* Paragraphe principal */
.question-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a4734;
  margin: 0 auto 2rem auto;
  max-width: 680px;
}

.question-text strong {
  color: #23180f;
  font-weight: 700;
}

/* Citation Platon */
.question-quote {
  max-width: 620px;
  text-align: left;
  margin: 0 auto 1rem auto; /* raccourci car pas de bouton */
  color: #6a4e30;
}

.question-quote p {
  margin: 0;
  color: #5a4734;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-style: italic;
  line-height: 1.7;
}

.question-quote cite {
  display: block;
  margin-top: 0.3rem;
  color: #a67c39;
  font-size: 0.86rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .question-title {
    font-size: 1.8rem;
  }
  .question-text {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  .section-question {
    min-height: 100vh;
    padding: 5.2rem 2.2rem;
    text-align: left;
  }

  .question-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
    align-items: start;
    gap: 4.5rem;
  }

  .question-inner {
    max-width: none;
  }

  .question-separator {
    margin-left: 0;
    margin-right: 0;
  }

  .question-text {
    margin-left: 0;
    margin-right: 0;
  }

  .question-quote {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-panel .contact-header {
    margin-bottom: 1rem;
  }

  .contact-panel .section-kicker-light {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-bottom: 0.6rem;
    font-weight: 400;
  }

  .contact-panel .contact-header h2 {
    font-size: 1.35rem;
    line-height: 1.22;
  }

  .contact-panel .contact-intro {
    display: none;
  }

  .contact-panel .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-panel .contact-info {
    display: contents;
  }

  .contact-panel .contact-info .contact-block:first-child {
    order: 1;
  }

  .contact-panel .contact-form-card {
    order: 2;
    width: 100%;
  }

  .contact-panel .contact-info .contact-block:last-child {
    order: 3;
  }

  .contact-panel .contact-info .contact-block:first-child h3,
  .contact-panel .contact-note {
    display: none;
  }

  .contact-panel .contact-lines-inline {
    width: min(100%, 27rem);
    flex-direction: row;
    justify-content: space-between;
    gap: 2.4rem;
    margin: 0.15rem 0 0.45rem;
  }

  .contact-panel .contact-col {
    flex: 1 1 0;
    min-width: 0;
  }

  .contact-panel .contact-label {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .contact-panel .contact-line {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .contact-panel .contact-form-card {
    border-radius: 16px;
    padding: 1.45rem 1.35rem;
    box-shadow: 0 18px 44px rgba(43, 28, 18, 0.16);
  }

  .contact-panel .contact-block h3 {
    margin-bottom: 0.55rem;
  }

  .contact-panel .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
}

/* =========================================
   SECTION — POURQUOI SAPIENS INVEST (MOBILE FIRST)
   ========================================= */

/* SECTION FOND + STRUCTURE */
.section-pourquoi {
  background: #f8f6f2;
  padding: 4rem 1.4rem 11rem;
  color: #2e2a27;
  display: flex;
  justify-content: flex-start;
}

.pourquoi-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Kicker */
.section-pourquoi .section-kicker-dark {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a57d3f;
  margin-bottom: 0.6rem;
  text-align: center;
}

/* Titre — version mobile */
.pourquoi-title {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  text-align: center;
}

/* Ligne dorée */
.pourquoi-separator {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(166, 124, 57, 0.9),
    rgba(212, 175, 55, 0.8)
  );
  border-radius: 999px;
  margin: 1rem auto 1.2rem auto;
}

.pourquoi-toggle {
  margin: 0 auto 1.6rem;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(166, 124, 57, 0.7);
  border-radius: 999px;
  background: linear-gradient(180deg, #f3e8d6 0%, #e8d6bc 100%);
  color: #6b4f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pourquoi-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(120, 87, 45, 0.22);
  border-color: rgba(166, 124, 57, 0.9);
}

.pourquoi-toggle:focus-visible {
  outline: 2px solid rgba(166, 124, 57, 0.8);
  outline-offset: 2px;
}

.pourquoi-toggle-icon {
  font-weight: 600;
  transform: translateY(-1px);
}

.pourquoi-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease;
}

.section-pourquoi.is-open .pourquoi-content {
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
}

/* Paragraphes */
.pourquoi-text p {
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3b3734;
  text-align: left;
}

.pourquoi-text {
  width: 100%;
}

/* Animation fade-up + blur */
.section-pourquoi .fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(3px);
  transition: opacity 0.9s ease-out,
              transform 0.9s ease-out,
              filter 0.9s ease-out;
}

.section-pourquoi .fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================================
   DESKTOP (min 900px)
   ========================================= */
@media (min-width: 900px) {

  .section-pourquoi {
    padding: 6rem 1.8rem 11rem;
  }

  .section-pourquoi .section-kicker-dark {
    font-size: 0.9rem;
  }

  .pourquoi-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .pourquoi-separator {
    width: 70px;
    margin-bottom: 1.4rem;
  }

  .pourquoi-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
  }
}

/* =========================================
   SECTION CONTACT — MOBILE FIRST
   ========================================= */

.section-contact {
  background: radial-gradient(
      circle at 15% 0%,
      rgba(166, 124, 57, 0.22),
      transparent 55%
    ),
    linear-gradient(180deg, #151213 0%, #100f12 100%);
  padding: 4rem 1.2rem;
  color: #f5f5f5;
  display: flex;
  justify-content: center;
}

.contact-panel {
  width: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: #23180f;
  display: block;
}

.contact-panel .contact-inner {
  width: 100%;
  max-width: none;
}

.contact-panel .section-kicker-light {
  color: #a67c39;
}

.contact-panel .contact-header h2 {
  color: #23180f;
}

.contact-panel .contact-intro {
  color: #5a4734;
}

.contact-panel .contact-block h3 {
  color: #23180f;
}

.contact-panel .contact-label,
.contact-panel .contact-note {
  color: #7a6651;
}

.contact-panel .contact-line a,
.contact-panel .social-links li a {
  color: #6a4e30;
}

.contact-panel .social-icon {
  border-color: rgba(166, 124, 57, 0.45);
  color: #8f6b33;
}

.contact-inner {
  max-width: 1040px;
}

/* En-tête */

.section-contact .section-kicker-light {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.contact-header h2 {
  font-size: 1.5rem; /* mobile */
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem 0;
}

.contact-intro {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d7d0c6;
  margin: 0 0 1.4rem 0;
}

/* Grille : base mobile en colonne */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

/* Carte formulaire */

.contact-form-card {
  background: #f8f6f2;
  color: #281f16;
  border-radius: 14px;
  padding: 1.2rem 1.1rem 1.2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.contact-form label,
.contact-form .label-inline {
  font-size: 0.82rem;
  font-weight: 500;
  color: #3a2c21;
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid #d3c6b4;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b88a3b;
  box-shadow: 0 0 0 1px rgba(184, 138, 59, 0.4);
}

/* Radios créneau de rappel */

.contact-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.1rem;
}

.contact-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #d3c6b4;
  font-size: 0.8rem;
  cursor: pointer;
  background: #fbfaf8;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-radio-group input[type="radio"] {
  accent-color: #b88a3b;
}

.contact-radio-group label:hover {
  border-color: #b88a3b;
}

/* Bouton submit */

.contact-submit {
  margin-top: 0.4rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #b88a3b 50%,
    #d4af37 100%
  );
  color: #1d150a;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* INFOS / COORDONNÉES */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-block h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
}

/* Téléphone + email côte à côte */

.contact-lines-inline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0.3rem 0 0.6rem 0;
}

.contact-col {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #c8bca8;
  margin-bottom: 0.15rem;
}

.contact-line {
  margin: 0;
  font-size: 0.82rem;
}

.contact-line a {
  color: #f2e6c9;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 0.1rem;
  font-size: 0.78rem;
  color: #b2a598;
}

@media (max-width: 899px) {
  .contact-panel .contact-info {
    display: contents;
  }

  .contact-panel .contact-info .contact-block:first-child {
    order: 1;
  }

  .contact-panel .contact-form-card {
    order: 2;
  }

  .contact-panel .contact-info .contact-block:last-child {
    order: 3;
  }

  .contact-panel .contact-note {
    display: none;
  }
}

/* Réseaux sociaux */

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.social-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #f5f1e7;
  text-decoration: none;
}

.social-links li a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(244, 230, 200, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Animation via fade-on-scroll (même système que le reste du site) */

.section-contact .fade-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}

.section-contact .fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: #100f12;
  color: #f2e8dc;
  border-top: 1px solid rgba(214, 175, 78, 0.2);
}

.site-footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 1.35rem;
}

.site-footer-grid {
  display: grid;
  gap: 1.45rem;
}

.site-footer-column {
  min-width: 0;
}

.site-footer-column h3 {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0 0 0.55rem 0;
  color: #e0bb58;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer-cncgp-logo {
  display: block;
  width: min(100%, 8.25rem);
  height: auto;
  margin: 0.35rem 0 0.8rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.3rem;
}

.site-footer-column p,
.site-footer-links a {
  color: rgba(242, 232, 220, 0.9);
  font-size: 0.96rem;
  line-height: 1.72;
  text-decoration: none;
}

.site-footer-column p + p {
  margin-top: 0.5rem;
}

.site-footer-column a:hover,
.site-footer-column a:focus-visible,
.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  text-decoration: underline;
  color: #f2e6c9;
  outline: none;
}

.site-footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.site-footer-lines {
  margin: 0.8rem 0 0;
}

@media (max-width: 899px) {
  .site-footer-lines {
    display: block;
  }

  .site-footer-lines .contact-col + .contact-col {
    margin-top: 0.8rem;
  }
}

.site-footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 175, 78, 0.14);
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
}

.site-footer-bottom p,
.site-footer-bottom a {
  color: rgba(242, 232, 220, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer-bottom a:hover,
.site-footer-bottom a:focus-visible {
  color: #f6d98d;
  outline: none;
}

/* =========================================
   DESKTOP (min-width: 900px)
   ========================================= */

@media (min-width: 900px) {
  .section-contact {
    padding: 5.5rem 2rem 5rem;
  }

  .contact-header h2 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }

  .contact-intro {
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
  }

  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .contact-form-card,
  .contact-info {
    flex: 1;
  }

  .contact-form-card {
    padding: 2rem 2rem 1.9rem;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  }

  .contact-form label,
  .contact-form .label-inline {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.6rem 0.7rem;
  }

  .contact-block h3 {
    font-size: 1.1rem;
  }

  .contact-line {
    font-size: 0.9rem;
  }

  .social-links li a {
    font-size: 0.95rem;
  }

  .social-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .contact-panel {
    align-self: start;
    padding: 0;
  }

  .contact-panel .section-kicker-light {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a67c39;
    margin-bottom: 0.6rem;
    line-height: 1;
    font-weight: 400;
  }

  .contact-panel .contact-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-panel .contact-form-card {
    box-shadow: 0 18px 44px rgba(43, 28, 18, 0.16);
  }

  .site-footer-inner {
    width: min(1220px, calc(100% - 3rem));
    padding: 3.6rem 0 1.5rem;
  }

  .site-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .site-footer-lines {
    display: block;
  }

  .site-footer-lines .contact-col + .contact-col {
    margin-top: 0.8rem;
  }

  .site-footer-lines .contact-line a {
    display: inline-block;
  }

  .site-footer-lines .contact-line a + a {
    margin-top: 0.25rem;
  }

  .site-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.1rem;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }

  .site-footer-bottom a {
    justify-self: end;
  }
}

/* =========================================
   BOUTON FLOTTANT — OR + HALO ANIMÉ
   ========================================= */

.floating-contact-btn {
  position: fixed;
  bottom: 1.2rem;
  right: 1rem;
  z-index: 9999;

  width: auto;
  min-width: 52px;
  height: 52px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 0.95rem 0 0.9rem;
  text-decoration: none;

  /* Corps du bouton or */
  background: linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.98),
      rgba(184, 138, 59, 0.94),
      rgba(212, 175, 55, 0.98)
    );
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transform: translateY(0);
  opacity: 0.94;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;

  overflow: visible; /* pour laisser respirer le halo */
}

/* Icône SVG enveloppe */
.floating-contact-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.floating-contact-label {
  color: #1a1209;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* Style des formes de l'enveloppe */
.floating-contact-icon rect,
.floating-contact-icon polyline {
  stroke: #1a1209; /* très foncé pour contraster avec l'or */
  stroke-width: 1.6;
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* Halo animé très subtil autour du bouton */
.floating-contact-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.45),
    0 0 38px rgba(212, 175, 55, 0.25);
  opacity: 0;
  pointer-events: none;
  animation: sapiensHalo 4.5s ease-out infinite;
}

/* Animation du halo */
@keyframes sapiensHalo {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  15% {
    opacity: 0.55;
    transform: scale(1);
  }
  35% {
    opacity: 0.25;
    transform: scale(1.05);
  }
  60% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

/* État masqué (hero + contact via JS) */
.floating-contact-btn.floating-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

/* Hover (desktop) */
.floating-contact-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  opacity: 1;
}

/* Desktop : un peu plus grand */
@media (min-width: 900px) {
  .floating-contact-btn {
    bottom: 2rem;
    right: 2rem;
    min-width: 60px;
    height: 60px;
    padding: 0 1.15rem 0 1rem;
  }

  .floating-contact-icon {
    width: 24px;
    height: 24px;
  }

  .floating-contact-label {
    font-size: 0.95rem;
  }
}

/* Scroll par section sur mobile (finger scroll) */
@media (pointer: coarse) {
  html, body {
    scroll-behavior: smooth;
  }

  .page-scroller {
    scroll-snap-type: none;
    overscroll-behavior-y: contain;
  }

  /* Chaque section plein écran "accroche" le scroll */
  section {
    scroll-snap-align: start;
  }
}
