@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@400;450;500;600;700&display=swap');

:root {
  --green: #034230;
  --green-2: #0b5a43;
  --cream: #f6f1e8;
  --cream-2: #fbf8f1;
  --sand: #d8c7aa;
  --sand-2: #c9b38b;
  --ink: #151b18;
  --muted: #68736d;
  --line: rgba(3, 66, 48, 0.14);
  --white: #ffffff;
  --radius-xl: 34px;
  --shadow-soft: 0 28px 80px rgba(3, 66, 48, .08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Jost", "Futura", "Avenir Next", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(3,66,48,.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 42%, #f0e6d5 100%);
  background-size: 96px 96px, auto;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 92px;
  padding: 0 clamp(20px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 241, 232, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(210px, 24vw, 360px);
  max-width: 44vw;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 62px;
  display: block;
  object-fit: contain;
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--green);
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.nav a {
  opacity: .82;
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .24s ease;
}

.nav a:hover {
  opacity: 1;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  margin: 5px auto;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 92px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(76px, 10vw, 128px) 24px;
  background:
    radial-gradient(circle at 84% 10%, rgba(216, 199, 170, .58), transparent 31%),
    radial-gradient(circle at 12% 72%, rgba(3, 66, 48, .13), transparent 35%),
    linear-gradient(135deg, #fbf8f1 0%, var(--cream) 48%, #ecdfcc 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(3, 66, 48, .12);
  width: min(780px, 88vw);
  height: min(780px, 88vw);
  border-radius: 50%;
  right: -210px;
  top: -250px;
}

.hero-bg::after {
  width: min(460px, 54vw);
  height: min(460px, 54vw);
  right: 8%;
  top: 18%;
  border-color: rgba(3, 66, 48, .09);
}

.plane {
  pointer-events: none;
  user-select: none;
}

.plane-hero {
  position: absolute;
  width: clamp(120px, 18vw, 250px);
  right: clamp(16px, 10vw, 120px);
  top: clamp(120px, 18vw, 190px);
  opacity: .22;
  transform: rotate(-8deg);
  filter: blur(.1px);
  animation: drift 8s ease-in-out infinite;
}

.plane-hero-small {
  position: absolute;
  width: clamp(70px, 10vw, 120px);
  left: clamp(20px, 11vw, 120px);
  bottom: clamp(80px, 10vw, 130px);
  opacity: .18;
  transform: rotate(21deg);
  animation: driftAlt 9s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) rotate(-8deg); }
  50% { transform: translate3d(18px,-16px,0) rotate(-3deg); }
}

@keyframes driftAlt {
  0%, 100% { transform: translate3d(0,0,0) rotate(21deg); }
  50% { transform: translate3d(-16px,13px,0) rotate(15deg); }
}

.hero-content {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: var(--green);
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(54px, 8.4vw, 116px);
  line-height: .82;
  letter-spacing: -0.066em;
}

.hero-text {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: clamp(17px, 1.65vw, 22px);
  color: #26352f;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(3, 66, 48, .22);
}

.button.secondary {
  border: 1px solid rgba(3, 66, 48, .22);
  color: var(--green);
  background: rgba(255,255,255,.45);
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 122px) clamp(22px, 4vw, 54px);
  max-width: 1240px;
  margin: 0 auto;
}

.has-plane {
  overflow: visible;
}

.plane-section {
  position: absolute;
  width: clamp(58px, 8vw, 112px);
  right: clamp(20px, 5vw, 70px);
  top: 44px;
  opacity: .11;
  transform: rotate(-11deg);
}

.plane-section-left {
  left: clamp(20px, 4vw, 54px);
  right: auto;
  transform: rotate(18deg);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 7vw, 78px);
  align-items: start;
}

h2 {
  font-size: clamp(39px, 5.2vw, 76px);
  line-height: .9;
  letter-spacing: -0.056em;
  margin-bottom: 24px;
}

.intro p,
.split p,
.contact-card p {
  font-size: clamp(18px, 1.7vw, 21px);
  color: #2e3934;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.six { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.card,
.steps article,
.profile,
.contact-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.46));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 2.8vw, 34px);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 118px;
  height: 96px;
  background: url("assets/paper-plane-original.png") center / contain no-repeat;
  opacity: .045;
  transform: rotate(-8deg);
}

.card span,
.steps span {
  color: var(--sand-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.card h3,
.steps h3,
.profile h3 {
  color: var(--green);
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 14px 0 12px;
}

.card p,
.steps p,
.profile p {
  color: var(--muted);
  margin-bottom: 0;
}

.challenges {
  max-width: none;
  background:
    radial-gradient(circle at 82% 14%, rgba(216,199,170,.18), transparent 28%),
    linear-gradient(135deg, var(--green), #052d23);
  color: var(--white);
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 54px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 54px));
}

.challenges::after {
  content: "";
  position: absolute;
  right: 8vw;
  top: 40px;
  width: min(280px, 38vw);
  height: 220px;
  background: url("assets/paper-plane-original.png") center / contain no-repeat;
  opacity: .12;
  transform: rotate(-14deg);
}

.challenges h2,
.challenges .section-label { color: var(--white); }
.challenges .section-label { opacity: .72; }
.challenges p { color: rgba(255,255,255,.78); }

.challenge-list ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.challenge-list li {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
}

.steps article::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 34px;
  right: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(3,66,48,.20), transparent);
  transform: translateY(-20px);
}

.team-grid {
  display: grid;
  gap: 22px;
}

.profile {
  display: grid;
  grid-template-columns: minmax(190px, 240px) 1fr;
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 2.8vw, 30px);
}

.profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  filter: saturate(.94) contrast(1.02);
  box-shadow: 0 22px 60px rgba(3,66,48,.12);
}

.role {
  color: var(--green) !important;
  font-weight: 800;
  margin-bottom: 12px !important;
}

.link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.contact {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 54px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 54px));
}

.contact-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(216,199,170,.22), transparent 32%),
    linear-gradient(135deg, var(--green), #0a5a43);
  color: white;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(34px, 6vw, 72px);
  padding: clamp(34px, 5vw, 62px);
  border: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -36px;
  width: 240px;
  height: 190px;
  background: url("assets/paper-plane-original.png") center / contain no-repeat;
  opacity: .13;
  transform: rotate(-12deg);
}

.contact-card h2,
.contact-card .section-label { color: white; }
.contact-card p { color: rgba(255,255,255,.78); }

.contact-details {
  display: grid;
  gap: 10px;
  align-self: end;
  font-size: clamp(16px, 1.6vw, 18px);
  position: relative;
  z-index: 2;
}

.contact-details span { color: rgba(255,255,255,.72); }
.contact-details a { font-weight: 800; }

.footer {
  border-top: 1px solid var(--line);
  padding: 36px clamp(22px, 4vw, 54px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .cards.six { grid-template-columns: repeat(2, 1fr); }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { height: 76px; }

  .brand img { height: 40px; }

  .menu-toggle { display: inline-block; z-index: 60; }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(246,241,232,.96);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .nav a:hover {
    background: rgba(3,66,48,.06);
  }

  .nav a::after { display: none; }

  .intro-grid, .split, .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cards.three, .cards.six, .cards.four, .steps {
    grid-template-columns: 1fr;
  }

  .profile {
    grid-template-columns: 1fr;
  }

  .profile img {
    max-width: 340px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    background-size: 64px 64px, auto;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    max-width: 190px;
  }

  .brand img {
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 78px 18px 88px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 76px);
    line-height: .86;
  }

  h2 {
    font-size: clamp(38px, 13vw, 56px);
    line-height: .92;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .card, .steps article, .profile, .contact-card {
    border-radius: 24px;
  }

  .plane-hero {
    right: -28px;
    top: 100px;
    opacity: .12;
  }

  .plane-hero-small,
  .plane-section {
    display: none;
  }

  .challenges::after,
  .contact-card::after {
    opacity: .08;
  }
}


/* Logo transparent TED — meilleure lisibilité */
.site-header {
  min-height: 92px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  background: transparent !important;
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .site-header {
    height: 82px;
    min-height: 82px;
  }

  .brand {
    width: clamp(190px, 46vw, 280px);
    max-width: 62vw;
  }

  .brand img {
    max-height: 56px;
  }

  .nav {
    top: 92px;
  }
}

@media (max-width: 620px) {
  .brand {
    width: clamp(170px, 58vw, 235px);
    max-width: 64vw;
  }

  .brand img {
    height: auto;
    max-height: 48px;
  }

  .site-header {
    padding: 0 16px;
  }
}


/* Utilisation du véritable avion papier issu du logo */
.plane,
.card::after,
.challenges::after,
.contact-card::after {
  mix-blend-mode: multiply;
}

.plane-hero {
  opacity: .30;
  width: clamp(140px, 20vw, 280px);
}

.plane-hero-small {
  opacity: .20;
}

.card::after {
  opacity: .07;
  width: 142px;
  height: 116px;
}

.contact-card::after,
.challenges::after {
  opacity: .18;
}

/* Profils plus premium et lisibles */
.profile {
  grid-template-columns: minmax(220px, 285px) 1fr;
  align-items: stretch;
}

.profile img {
  height: 100%;
  min-height: 360px;
}

.profile div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile p + p {
  margin-top: 14px;
}

.profile .link {
  width: max-content;
}

/* Responsive renforcé iPhone / petits écrans */
@media (max-width: 900px) {
  .profile {
    grid-template-columns: minmax(180px, 300px) 1fr;
    gap: 24px;
  }

  .profile img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .profile {
    grid-template-columns: 1fr;
  }

  .profile img {
    width: min(100%, 360px);
    height: auto;
    min-height: 0;
    justify-self: center;
  }

  .profile div {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .site-header {
    height: 74px;
    min-height: 74px;
  }

  .brand {
    width: 168px;
    max-width: 58vw;
  }

  .brand img {
    max-height: 44px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav {
    top: 82px;
    left: 10px;
    right: 10px;
  }

  .hero {
    padding: 64px 16px 72px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 66px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .hero-text,
  .intro p,
  .split p,
  .contact-card p {
    font-size: 16px;
  }

  .card,
  .steps article,
  .profile,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .profile h3 {
    font-size: 25px;
  }

  .role {
    font-size: 14px;
    line-height: 1.35;
  }

  .profile p {
    font-size: 15px;
  }

  .plane-hero {
    width: 150px;
    top: 92px;
    right: -38px;
  }
}

@media (max-width: 375px) {
  .brand {
    width: 150px;
  }

  h1 {
    font-size: 43px;
  }

  .button {
    min-height: 50px;
    font-size: 14px;
  }

  .profile p {
    font-size: 14.5px;
  }
}


/* Textes À propos et équipe — version plus fidèle au site original */
.intro-grid > div p + p {
  margin-top: 18px;
}

.profile h3 {
  text-transform: none;
}

.profile .role {
  letter-spacing: .01em;
}

@media (min-width: 901px) {
  .profile {
    grid-template-columns: minmax(230px, 300px) 1fr;
  }
}

@media (max-width: 760px) {
  .intro-grid > div p + p {
    margin-top: 14px;
  }
}


/* UX premium façon Apple : header permanent, clair, intuitif */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--sand));
  z-index: 80;
  pointer-events: none;
}

.site-header {
  position: fixed !important;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  top: 14px;
  width: auto;
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(3, 66, 48, .10);
  background: rgba(246, 241, 232, .72);
  border: 1px solid rgba(3, 66, 48, .14);
}

main#top {
  padding-top: 0;
}

.hero {
  padding-top: clamp(140px, 14vw, 180px);
}

.nav a {
  border-radius: 999px;
  padding: 9px 13px;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(3, 66, 48, .08);
  opacity: 1;
}

.hero-visual {
  margin: clamp(42px, 6vw, 72px) auto 0;
  width: min(920px, 92vw);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(3,66,48,.12);
  border: 1px solid rgba(3,66,48,.10);
  background: rgba(255,255,255,.55);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.icon-card .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 14px;
  background: rgba(3, 66, 48, .06);
  margin-bottom: 18px;
}

.card {
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
}

@media (hover: hover) {
  .card:hover,
  .profile:hover,
  .steps article:hover {
    transform: translateY(-5px);
    border-color: rgba(3, 66, 48, .24);
    box-shadow: 0 36px 110px rgba(3, 66, 48, .12);
    background: rgba(255,255,255,.78);
  }
}

.quick-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  gap: 8px;
}

.quick-dock a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(3, 66, 48, .92);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(3, 66, 48, .22);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease;
}

.quick-dock a:hover {
  transform: translateY(-2px);
  background: var(--green-2);
}

/* meilleur confort de lecture sur iPhone */
@media (max-width: 900px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    border-radius: 28px;
  }

  .hero {
    padding-top: 120px;
  }

  .nav {
    position: fixed;
    top: 96px !important;
    left: 10px;
    right: 10px;
    border-radius: 26px;
    background: rgba(246,241,232,.96);
  }

  .nav a {
    padding: 15px 14px;
  }

  .hero-visual {
    border-radius: 26px;
    width: 100%;
  }

  .quick-dock {
    right: 14px;
    bottom: 14px;
  }

  .quick-dock a {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 112px;
  }

  .hero-visual {
    margin-top: 34px;
  }

  .icon-card .icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .quick-dock {
    display: none;
  }

  .site-header {
    border-radius: 24px;
  }
}

/* micro-ajustement écrans très petits type iPhone SE */
@media (max-width: 390px) {
  .brand {
    width: 142px !important;
  }

  .site-header {
    left: 8px;
    right: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 104px;
  }
}


/* Version plus rythmée et moins monotone */
.hero-visual {
  display: none !important;
}

.section {
  scroll-margin-top: 130px;
}

.fields,
.approach {
  background:
    radial-gradient(circle at 88% 10%, rgba(216,199,170,.20), transparent 26%),
    rgba(255,255,255,.32);
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 54px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 54px));
}

.fields .section-heading,
.fields .cards,
.approach .section-heading,
.approach .steps {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.expertises {
  border-top: 1px solid rgba(3,66,48,.10);
  border-bottom: 1px solid rgba(3,66,48,.10);
}

.section-heading h2::after,
.intro-grid h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 22px;
  border-radius: 99px;
  background: var(--sand);
}

.challenges {
  background:
    radial-gradient(circle at 85% 15%, rgba(216,199,170,.20), transparent 26%),
    linear-gradient(135deg, #034230 0%, #052f24 100%);
}

.values {
  background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(216,199,170,.16));
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 54px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 54px));
}

.values .section-heading,
.values .cards {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact ultra simple */
.contact-simple {
  grid-template-columns: .85fr 1.15fr;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.contact-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 28px;
  color: var(--green);
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(3,66,48,.16);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbf8f1;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(3,66,48,.55);
  box-shadow: 0 0 0 4px rgba(3,66,48,.08);
  background: white;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  background: var(--green);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: var(--green-2);
}

.form-note {
  margin: 0 !important;
  color: rgba(3,66,48,.62) !important;
  font-size: 13px !important;
}

/* Plus d’impact visuel sans perdre l’utilisateur */
.card h3,
.steps h3 {
  font-size: clamp(21px, 1.8vw, 27px);
}

.card p,
.steps p {
  font-size: 15.5px;
}

.icon-card .icon {
  background: rgba(216,199,170,.26);
}

.profile {
  background:
    linear-gradient(135deg, rgba(255,255,255,.80), rgba(246,241,232,.62));
}

/* Mobile contact naturel */
@media (max-width: 900px) {
  .contact-simple {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    gap: 18px;
  }

  .contact-details {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .fields,
  .approach,
  .values {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-form {
    border-radius: 22px;
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 15px;
  }

  .contact-form textarea {
    min-height: 132px;
  }
}


/* Version DA poussée — premium, fluide, interactive */
body {
  font-family: "Jost", "Futura", "Avenir Next", system-ui, sans-serif !important;
  letter-spacing: -0.015em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 10%, rgba(216,199,170,.18), transparent 28%),
    radial-gradient(circle at 86% 38%, rgba(3,66,48,.08), transparent 30%),
    radial-gradient(circle at 42% 88%, rgba(216,199,170,.16), transparent 26%);
}

p {
  letter-spacing: -0.01em;
}

h1, h2 {
  text-wrap: balance;
}

h3 {
  letter-spacing: -0.045em;
}

.hero-content {
  perspective: 1200px;
}

.hero .eyebrow {
  opacity: 0;
  animation: heroFade .8s ease .15s forwards;
}

.hero h1 {
  opacity: 0;
  transform: translateY(22px) scale(.985);
  animation: heroRise .95s cubic-bezier(.16,1,.3,1) .28s forwards;
}

.hero-text {
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise .9s cubic-bezier(.16,1,.3,1) .55s forwards;
}

.hero-actions {
  opacity: 0;
  transform: translateY(16px);
  animation: heroRise .9s cubic-bezier(.16,1,.3,1) .76s forwards;
}

@keyframes heroFade {
  to { opacity: 1; }
}

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

/* Bande histoire pour casser la monotonie */
.story-strip {
  max-width: 1180px;
  margin: -42px auto 0;
  padding: 0 clamp(18px, 4vw, 54px) 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 3;
}

.story-item {
  padding: 22px;
  border: 1px solid rgba(3,66,48,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(3,66,48,.07);
  min-height: 150px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.story-item span {
  color: var(--sand-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.story-item strong {
  display: block;
  margin: 14px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: .95;
  color: var(--green);
  letter-spacing: -0.045em;
}

.story-item p {
  color: var(--muted);
  margin: 0;
}

.story-item.is-visible,
.story-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.84);
  border-color: rgba(3,66,48,.22);
}

/* Avion scroll : accompagne le déroulé puis se pose */
.scroll-plane {
  position: fixed;
  z-index: 65;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50vw, -25vh, 0) rotate(-8deg) scale(.72);
  transition: opacity .25s ease;
  filter: drop-shadow(0 16px 22px rgba(3,66,48,.16));
}

.scroll-plane img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.is-scrolling .scroll-plane {
  opacity: .88;
}

/* Effet texte qui arrive progressivement */
.reveal-text {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(7px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .9s cubic-bezier(.16,1,.3,1);
}

.reveal-text.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .06s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .18s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .30s; }

/* Cartes interactives premium */
.card,
.profile,
.steps article,
.story-item {
  will-change: transform;
}

.card::before,
.profile::before,
.steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(216,199,170,.32), transparent 38%);
  transition: opacity .25s ease;
}

.card:hover::before,
.profile:hover::before,
.steps article:hover::before {
  opacity: 1;
}

.card,
.profile,
.steps article {
  position: relative;
  transform-style: preserve-3d;
}

.icon-card .icon {
  transition: transform .25s ease, background .25s ease;
}

.icon-card:hover .icon {
  transform: translateY(-3px) rotate(-3deg);
  background: rgba(216,199,170,.38);
}

/* Sections encore mieux définies */
.intro,
.expertises,
.team,
.contact {
  border-top: 1px solid rgba(3,66,48,.08);
}

.fields::before,
.approach::before,
.values::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 22%, rgba(255,255,255,.14));
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .42;
}

/* Typo profil plus clean */
.profile h3 {
  text-transform: none !important;
  font-size: clamp(29px, 3vw, 44px) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.profile .role {
  text-transform: none;
  font-size: 15px;
  color: #0f5842 !important;
}

.profile p {
  line-height: 1.62;
}

/* Contact plus premium mais direct */
.contact-form {
  transform: translateZ(0);
}

.contact-form input,
.contact-form textarea {
  font-family: "Jost", "Futura", "Avenir Next", system-ui, sans-serif !important;
}

.contact-form button {
  position: relative;
  overflow: hidden;
}

.contact-form button::after {
  content: "→";
  margin-left: 10px;
  transition: transform .2s ease;
}

.contact-form button:hover::after {
  transform: translateX(4px);
}

/* Accessibilité : réduit les animations si demandé par l’utilisateur */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-plane {
    display: none;
  }
}

@media (max-width: 900px) {
  .story-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-bottom: 20px;
  }

  .story-item {
    min-height: auto;
  }

  .scroll-plane {
    display: none;
  }
}

@media (max-width: 620px) {
  .story-item strong {
    font-size: 30px;
  }

  .profile h3 {
    font-size: 34px !important;
  }
}


/* Correction : suppression de l’avion volant façon “mouche” */
.scroll-plane {
  display: none !important;
}

/* Avion utilisé comme signature posée, jamais comme objet parasite */
.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  width: clamp(48px, 6vw, 86px);
  height: clamp(48px, 6vw, 86px);
  right: 0;
  top: 6px;
  background: url("assets/paper-plane-original.png") center / contain no-repeat;
  opacity: .10;
  transform: rotate(-10deg);
  pointer-events: none;
}

.contact .section-heading::after,
.team .section-heading::after {
  opacity: .13;
}

@media (max-width: 760px) {
  .section-heading::after {
    display: none;
  }
}

/* Nouvelle section de rythme visuel */
.visual-moments {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 54px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 54px));
  background:
    radial-gradient(circle at 15% 20%, rgba(216,199,170,.26), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(246,241,232,.10));
  border-top: 1px solid rgba(3,66,48,.08);
  border-bottom: 1px solid rgba(3,66,48,.08);
}

.visual-moments .section-heading,
.visual-moments .moments-grid {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.moments-grid article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(3,66,48,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.42));
  box-shadow: 0 24px 70px rgba(3,66,48,.07);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.moments-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(3,66,48,.12), transparent 26%);
  pointer-events: none;
}

.moments-grid article::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -18px;
  width: 130px;
  height: 130px;
  background: url("assets/paper-plane-original.png") center / contain no-repeat;
  opacity: .08;
  transform: rotate(-8deg);
}

.moments-grid span {
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: .9;
  color: var(--green);
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

.moments-grid p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* Plus de variété visuelle section par section */
.intro {
  background:
    linear-gradient(135deg, rgba(255,255,255,.50), rgba(246,241,232,.22));
  border-radius: 42px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.expertises .cards.six .card:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(246,241,232,.55));
}

.expertises .cards.six .card:nth-child(even) {
  background: linear-gradient(180deg, rgba(247,241,231,.86), rgba(255,255,255,.48));
}

.steps article:nth-child(2),
.steps article:nth-child(4) {
  transform: translateY(28px);
}

.team .profile:nth-child(2) {
  background: linear-gradient(135deg, rgba(3,66,48,.07), rgba(255,255,255,.74));
}

.team .profile:nth-child(3) {
  background: linear-gradient(135deg, rgba(216,199,170,.20), rgba(255,255,255,.72));
}

/* Réduction des animations trop “gadget”, conservation du premium */
.reveal-text {
  filter: blur(4px) !important;
}

@media (max-width: 1080px) {
  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps article:nth-child(2),
  .steps article:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 700px) {
  .moments-grid {
    grid-template-columns: 1fr;
  }

  .moments-grid article {
    min-height: 165px;
  }

  .visual-moments {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro {
    border-radius: 30px;
  }
}


/* Correction bug flou : aucun texte ne doit rester illisible */
.reveal-text,
.reveal-text.is-visible,
.contact-copy,
.contact-copy *,
.contact-card h2,
.contact-card p,
.contact-details,
.contact-details * {
  filter: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.reveal-text {
  transform: translateY(18px);
}

.reveal-text.is-visible {
  transform: translateY(0);
}

/* Mise en valeur éditoriale des mots clés */
strong {
  font-weight: 850;
  color: var(--green);
}

.hero strong,
.contact-card strong,
.challenges strong {
  color: inherit;
}

.hero-text strong {
  color: var(--green);
  background: linear-gradient(180deg, transparent 58%, rgba(216,199,170,.44) 0);
}

/* Corps plus clair, plus premium */
body {
  font-weight: 450;
}

p {
  line-height: 1.62;
}

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  color: #33433c;
}

/* Section visuelle utile : relie les 3 domaines */
.ecosystem {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 54px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 54px));
  background:
    radial-gradient(circle at 18% 20%, rgba(216,199,170,.22), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.40), rgba(246,241,232,.08));
  border-top: 1px solid rgba(3,66,48,.08);
  border-bottom: 1px solid rgba(3,66,48,.08);
}

.ecosystem-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.ecosystem-visual {
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(3,66,48,.12);
  background: rgba(255,255,255,.72);
  box-shadow: 0 32px 90px rgba(3,66,48,.10);
}

.ecosystem-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* On enlève les effets expérimentaux qui pouvaient polluer */
.scroll-plane,
.visual-moments {
  display: none !important;
}

/* Plus de variété, mais sobre */
.fields .card:nth-child(1),
.expertises .card:nth-child(1),
.expertises .card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(216,199,170,.17));
}

.fields .card:nth-child(2),
.expertises .card:nth-child(2),
.expertises .card:nth-child(5) {
  background: linear-gradient(180deg, rgba(246,241,232,.86), rgba(255,255,255,.62));
}

.fields .card:nth-child(3),
.expertises .card:nth-child(3),
.expertises .card:nth-child(6) {
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(3,66,48,.055));
}

/* Contact : bien lisible, aucune zone floue */
.contact-card {
  backdrop-filter: none !important;
}

.contact-copy {
  color: white;
}

.contact-copy h2,
.contact-copy p,
.contact-copy .section-label {
  color: white !important;
}

.contact-copy p {
  color: rgba(255,255,255,.82) !important;
}

.contact-copy .contact-details a,
.contact-copy .contact-details strong {
  color: white !important;
}

/* Rythme des catégories */
.section-heading {
  max-width: 840px;
}

.cards.six {
  align-items: stretch;
}

.card {
  min-height: 260px;
}

.fields .card {
  min-height: 230px;
}

/* responsive de la section écosystème */
@media (max-width: 980px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-visual {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .ecosystem {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ecosystem-visual {
    border-radius: 24px;
  }

  .card {
    min-height: auto;
  }
}


/* Refonte éditoriale : moins “cards IA”, plus luxe, lignes, hiérarchie */
body {
  font-family: "Jost", "Futura", "Avenir Next", system-ui, sans-serif !important;
  font-weight: 400;
  letter-spacing: .005em;
}

p, li, input, textarea, button {
  font-family: "Jost", "Futura", "Avenir Next", system-ui, sans-serif !important;
}

p {
  font-size: 17px;
  line-height: 1.72;
  color: #394842;
}

.nav {
  font-family: "Jost", "Futura", "Avenir Next", system-ui, sans-serif;
  letter-spacing: .02em;
}

.hero-text {
  font-weight: 400;
  letter-spacing: .005em;
}

.hero-text strong,
.lead strong,
.intro strong {
  font-weight: 600;
}

/* Supprimer le sentiment de rectangles arrondis partout */
.card,
.steps article {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-top: 1px solid rgba(3,66,48,.18) !important;
  padding: 28px 0 34px !important;
  min-height: 0 !important;
  backdrop-filter: none !important;
}

.card::after,
.card::before,
.steps article::before,
.section-heading::after {
  display: none !important;
}

.cards {
  gap: 0 !important;
}

.cards.three,
.cards.six,
.cards.four {
  border-bottom: 1px solid rgba(3,66,48,.18);
}

.card h3,
.steps h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: .93 !important;
  letter-spacing: -0.055em;
  margin: 14px 0 16px !important;
}

.card p,
.steps p {
  max-width: 92%;
  font-size: 16px !important;
  line-height: 1.65;
}

.card span,
.steps span {
  display: inline-flex;
  color: var(--green) !important;
  opacity: .54;
  margin-bottom: 2px;
}

/* Pictos plus discrets, pas “template” */
.icon-card .icon {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  background: transparent !important;
  margin: 0 0 20px !important;
  opacity: .75;
}

/* Section domaines : en colonnes éditoriales */
.fields .cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px !important;
}

/* Expertises : grille éditoriale asymétrique */
.expertises .cards.six {
  grid-template-columns: repeat(2, 1fr) !important;
  column-gap: 78px !important;
}

.expertises .card:nth-child(1),
.expertises .card:nth-child(4) {
  padding-top: 54px !important;
}

/* Valeurs : très sobre, presque manifeste */
.values .cards.four {
  grid-template-columns: repeat(4, 1fr);
  gap: 34px !important;
}

/* Méthode : timeline horizontale, pas cartes */
.steps {
  position: relative;
  gap: 48px !important;
}

.steps::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(3,66,48,.18);
}

.steps article {
  border-top: 0 !important;
  padding-top: 44px !important;
}

.steps span {
  position: relative;
  z-index: 2;
  background: var(--cream);
  padding-right: 12px;
}

/* Section écosystème : réparer l’image + enlever le côté Facebook/broken */
.ecosystem-visual {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 1px solid rgba(3,66,48,.14) !important;
  background: #f7f1e7 !important;
  padding: 0;
  min-height: 0;
}

.ecosystem-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* Section histoire : moins cartes, plus manifeste */
.story-strip {
  max-width: 1240px;
  margin: -26px auto 0;
  padding-bottom: 52px;
  gap: 0;
  border-top: 1px solid rgba(3,66,48,.16);
  border-bottom: 1px solid rgba(3,66,48,.16);
}

.story-item {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 34px 30px;
  min-height: auto;
}

.story-item + .story-item {
  border-left: 1px solid rgba(3,66,48,.16) !important;
}

.story-item strong {
  font-size: clamp(38px, 4vw, 62px);
}

/* Profils : conserver des portraits, mais enlever le côté gros bloc IA */
.profile {
  border-radius: 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(3,66,48,.18) !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 46px 0 !important;
  grid-template-columns: minmax(230px, 300px) 1fr !important;
}

.profile img {
  border-radius: 0 !important;
  box-shadow: 0 22px 65px rgba(3,66,48,.12);
}

.profile h3 {
  font-size: clamp(40px, 5vw, 76px) !important;
}

.profile .role {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(3,66,48,.72) !important;
}

.team-grid {
  border-bottom: 1px solid rgba(3,66,48,.18);
}

/* Contact : garder forme douce seulement là où ça a du sens */
.contact-card {
  border-radius: 34px !important;
}

.contact-form {
  border-radius: 22px !important;
}

/* Avion original : signature subtile, pas un élément décoratif omniprésent */
.plane-section {
  opacity: .07 !important;
}

.plane-hero,
.plane-hero-small {
  opacity: .12 !important;
}

/* Interactions beaucoup plus sobres */
@media (hover: hover) {
  .card:hover,
  .profile:hover,
  .steps article:hover,
  .moments-grid article:hover {
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .card:hover h3,
  .steps article:hover h3 {
    color: #0b5a43;
  }
}

/* Version mobile éditoriale */
@media (max-width: 980px) {
  .fields .cards.three,
  .expertises .cards.six,
  .values .cards.four,
  .steps {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .story-strip {
    grid-template-columns: 1fr;
  }

  .story-item + .story-item {
    border-left: 0 !important;
    border-top: 1px solid rgba(3,66,48,.16) !important;
  }

  .profile {
    grid-template-columns: 1fr !important;
  }

  .profile img {
    width: min(100%, 360px);
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 620px) {
  p {
    font-size: 15.5px;
  }

  .card h3,
  .steps h3 {
    font-size: 34px !important;
  }

  .profile h3 {
    font-size: 44px !important;
  }

  .story-item {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-card {
    border-radius: 24px !important;
  }
}


/* ===== Refonte de la section Vision intégrée : composant vivant, pas image statique ===== */
.ecosystem {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 54px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 54px));
  background:
    radial-gradient(circle at 18% 24%, rgba(216,199,170,.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.30), rgba(246,241,232,.08));
  border-top: 1px solid rgba(3,66,48,.08);
  border-bottom: 1px solid rgba(3,66,48,.08);
}

.ecosystem-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.ecosystem-copy {
  position: sticky;
  top: 138px;
  align-self: start;
}

.ecosystem-note {
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: .02em;
  color: rgba(3,66,48,.62);
}

.ecosystem-stage {
  position: relative;
  min-height: 980px;
}

.ecosystem-track {
  position: sticky;
  top: 130px;
  height: 72vh;
  min-height: 600px;
  border-top: 1px solid rgba(3,66,48,.12);
  border-bottom: 1px solid rgba(3,66,48,.12);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.18));
}

.ecosystem-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,66,48,.06) 1px, transparent 1px);
  background-size: 110px 100%;
  opacity: .22;
  pointer-events: none;
}

.ecosystem-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(216,199,170,.18), transparent 24%);
  pointer-events: none;
}

.domain,
.ted-core {
  position: absolute;
  width: clamp(160px, 16vw, 230px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transition:
    transform .18s linear,
    opacity .18s linear,
    box-shadow .25s ease,
    border-color .25s ease;
  will-change: transform;
}

.domain {
  border: 1px solid rgba(3,66,48,.16);
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 60px rgba(3,66,48,.08);
}

.domain-inner,
.ted-core-inner {
  width: 100%;
  height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.domain-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(3,66,48,.52);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}

.domain h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: .9;
  color: var(--green);
}

.domain p {
  margin: 0;
  font-size: 15px;
  color: #53615b;
  line-height: 1.35;
}

.domain-transport {
  left: 7%;
  top: 10%;
}

.domain-voyage {
  right: 7%;
  top: 10%;
}

.domain-hospitalite {
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
}

.ted-core {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.78);
  background: var(--green);
  box-shadow: 0 30px 80px rgba(3,66,48,.18);
  opacity: .28;
  border: 0;
}

.ted-core-inner strong {
  color: white;
  font-size: clamp(44px, 5vw, 70px);
  line-height: .9;
  letter-spacing: -.05em;
}

.ted-core-inner span {
  margin-top: 10px;
  color: rgba(216,199,170,.95);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
}

.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ecosystem-lines path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.ecosystem-lines .line-1,
.ecosystem-lines .line-2 {
  stroke: rgba(3,66,48,.28);
}

.ecosystem-lines .line-3 {
  stroke: rgba(216,199,170,.9);
}

.ecosystem-track[data-progress="active"] .domain,
.ecosystem-track[data-progress="active"] .ted-core {
  transition: none;
}

/* positions during progress are driven by CSS variables */
.ecosystem-track {
  --p: 0;
}

.domain-transport {
  transform:
    translate(
      calc(var(--p) * 185px),
      calc(var(--p) * 122px)
    )
    scale(calc(1 - var(--p) * .16));
}

.domain-voyage {
  transform:
    translate(
      calc(var(--p) * -185px),
      calc(var(--p) * 122px)
    )
    scale(calc(1 - var(--p) * .16));
}

.domain-hospitalite {
  transform:
    translateX(-50%)
    translate(
      0px,
      calc(var(--p) * -170px)
    )
    scale(calc(1 - var(--p) * .16));
}

.ted-core {
  transform:
    translate(-50%, -50%)
    scale(calc(.78 + var(--p) * .24));
  opacity: calc(.28 + var(--p) * .72);
}

.domain {
  opacity: calc(1 - var(--p) * .08);
}

.domain-transport,
.domain-voyage,
.domain-hospitalite {
  box-shadow: 0 20px 60px rgba(3,66,48,.08);
}

.ecosystem-stage.is-near .domain {
  box-shadow: 0 28px 76px rgba(3,66,48,.10);
  border-color: rgba(3,66,48,.24);
}

/* section variety elsewhere */
.intro-grid {
  gap: clamp(34px, 6vw, 88px);
}

.intro-grid > div p:nth-child(2),
.intro-grid > div p:nth-child(4) {
  padding-left: 22px;
  border-left: 2px solid rgba(216,199,170,.85);
}

.fields .cards.three .card:nth-child(2) {
  margin-top: 28px;
}

.expertises .cards.six .card:nth-child(2),
.expertises .cards.six .card:nth-child(5) {
  padding-left: 26px !important;
}

.expertises .cards.six .card:nth-child(1),
.expertises .cards.six .card:nth-child(3),
.expertises .cards.six .card:nth-child(5) {
  position: relative;
}

.expertises .cards.six .card:nth-child(1)::after,
.expertises .cards.six .card:nth-child(3)::after,
.expertises .cards.six .card:nth-child(5)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(216,199,170,.95);
}

.team .profile:nth-child(2) {
  padding-left: 38px !important;
}

.values .cards.four .card:nth-child(odd) h3 {
  color: #0c5f46;
}

.contact-copy h2 {
  max-width: 11ch;
}

@media (max-width: 1080px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-copy {
    position: static;
  }

  .ecosystem-stage {
    min-height: 760px;
  }

  .ecosystem-track {
    top: 110px;
  }
}

@media (max-width: 760px) {
  .ecosystem {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ecosystem-stage {
    min-height: 660px;
  }

  .ecosystem-track {
    height: 64vh;
    min-height: 520px;
    border-top-width: 0;
    border-bottom-width: 0;
  }

  .domain,
  .ted-core {
    width: 148px;
  }

  .domain-transport {
    left: 3%;
    top: 8%;
  }

  .domain-voyage {
    right: 3%;
    top: 8%;
  }

  .domain-hospitalite {
    bottom: 5%;
  }

  .domain-transport {
    transform:
      translate(
        calc(var(--p) * 104px),
        calc(var(--p) * 118px)
      )
      scale(calc(1 - var(--p) * .14));
  }

  .domain-voyage {
    transform:
      translate(
        calc(var(--p) * -104px),
        calc(var(--p) * 118px)
      )
      scale(calc(1 - var(--p) * .14));
  }

  .domain-hospitalite {
    transform:
      translateX(-50%)
      translate(
        0px,
        calc(var(--p) * -126px)
      )
      scale(calc(1 - var(--p) * .14));
  }

  .ecosystem-note {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .domain,
  .ted-core {
    width: 132px;
  }

  .domain-inner,
  .ted-core-inner {
    padding: 18px;
  }

  .domain h3 {
    font-size: 29px;
  }

  .domain p {
    font-size: 13px;
  }

  .ted-core-inner strong {
    font-size: 40px;
  }

  .ted-core-inner span {
    font-size: 13px;
  }

  .ecosystem-stage {
    min-height: 620px;
  }

  .fields .cards.three .card:nth-child(2) {
    margin-top: 0;
  }

  .team .profile:nth-child(2) {
    padding-left: 0 !important;
  }
}


/* =========================================================
   Finitions premium & cohérence visuelle
   ========================================================= */

/* Début de page : éviter tout débordement visuel sur la bande suivante */
.hero {
  padding-bottom: 88px !important;
  position: relative;
  z-index: 1;
}

.story-strip {
  position: relative;
  z-index: 3;
  margin-top: 0 !important;
  padding-top: 26px !important;
  background: var(--cream);
  border-top: 0 !important;
}

.story-item {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.story-item strong {
  margin-top: 18px;
  margin-bottom: 22px;
}

/* Les traits verticaux / bordures : seulement quand ils sont logiques */
.intro-grid > div {
  border-left: 2px solid rgba(216,199,170,.85);
  padding-left: 28px;
}

.intro-grid > div p:nth-child(2),
.intro-grid > div p:nth-child(4) {
  border-left: 0 !important;
  padding-left: 0 !important;
}

.intro-grid > div p:first-child {
  font-size: 1.08em;
  color: #2f3f39;
}

/* Aligner vraiment les 3 terrains de jeu */
.fields .cards.three {
  align-items: start !important;
  gap: 36px !important;
}

.fields .cards.three .card,
.fields .cards.three .card:nth-child(2) {
  margin-top: 0 !important;
  padding-top: 24px !important;
}

.fields .cards.three .card h3 {
  max-width: 9ch;
}

/* Expertises : remise à plat, alignée, sans décalages gratuits */
.expertises .cards.six {
  column-gap: 56px !important;
  row-gap: 0 !important;
}

.expertises .cards.six .card,
.expertises .cards.six .card:nth-child(1),
.expertises .cards.six .card:nth-child(2),
.expertises .cards.six .card:nth-child(3),
.expertises .cards.six .card:nth-child(4),
.expertises .cards.six .card:nth-child(5),
.expertises .cards.six .card:nth-child(6) {
  margin-top: 0 !important;
  padding-top: 28px !important;
  padding-left: 0 !important;
}

.expertises .cards.six .card::after {
  display: none !important;
}

/* ----- Section vision intégrée : 3 cercles qui se rencontrent, pas une image ----- */
.ecosystem {
  padding-top: 56px;
  padding-bottom: 56px;
}

.ecosystem-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.ecosystem-copy {
  position: sticky;
  top: 134px;
}

.ecosystem-stage {
  min-height: 900px;
}

.ecosystem-track {
  --p: 0;
  position: sticky;
  top: 126px;
  height: 72vh;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(216,199,170,.16), transparent 28%);
  border-top: 1px solid rgba(3,66,48,.12);
  border-bottom: 1px solid rgba(3,66,48,.12);
}

.ecosystem-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,66,48,.045) 1px, transparent 1px);
  background-size: 120px 100%;
  opacity: .22;
  pointer-events: none;
}

.domain-bubble,
.ted-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
}

.domain-bubble {
  width: clamp(190px, 17vw, 238px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(3,66,48,.15);
  box-shadow: 0 18px 60px rgba(3,66,48,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 22px;
  text-align: center;
  transition: box-shadow .25s ease, border-color .25s ease;
  backdrop-filter: blur(8px);
}

.domain-bubble .domain-kicker {
  margin-bottom: 8px;
  color: rgba(3,66,48,.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}

.domain-bubble h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3vw, 44px);
  line-height: .9;
  color: var(--green);
}

.domain-bubble p {
  margin: 0;
  color: #5b6963;
  font-size: 15px;
  line-height: 1.35;
}

.bubble-transport {
  transform:
    translate(
      calc(-50% - 280px + var(--p) * 150px),
      calc(-50% - 165px + var(--p) * 125px)
    );
}

.bubble-voyage {
  transform:
    translate(
      calc(-50% + 280px - var(--p) * 150px),
      calc(-50% - 165px + var(--p) * 125px)
    );
}

.bubble-hospitalite {
  transform:
    translate(
      -50%,
      calc(-50% + 240px - var(--p) * 150px)
    );
}

.ted-wordmark {
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  opacity: calc(.18 + var(--p) * .92);
  transition: opacity .2s linear;
  pointer-events: none;
}

.ted-wordmark strong {
  display: block;
  color: var(--green);
  font-size: clamp(52px, 5vw, 76px);
  line-height: .9;
  letter-spacing: -.06em;
  text-shadow: 0 2px 16px rgba(255,255,255,.65);
}

.ted-wordmark span {
  display: block;
  margin-top: 6px;
  color: rgba(3,66,48,.75);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
}

.ecosystem-stage.is-near .domain-bubble {
  border-color: rgba(3,66,48,.22);
  box-shadow: 0 26px 70px rgba(3,66,48,.1);
}

/* Ne pas surcharger cette zone */
.ecosystem-track::after,
.ecosystem-lines,
.ted-core {
  display: none !important;
}

/* Équipe : réaligner parfaitement les portraits */
.team-grid {
  row-gap: 0 !important;
}

.profile {
  align-items: start !important;
  grid-template-columns: 280px 1fr !important;
  gap: 34px !important;
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

.profile img {
  width: 280px !important;
  aspect-ratio: 4 / 5;
  height: auto !important;
  object-fit: cover;
  object-position: center top;
  align-self: start;
  margin-top: 0 !important;
}

.profile > div {
  padding-top: 4px;
}

.team .profile:nth-child(2),
.team .profile:nth-child(3) {
  padding-left: 0 !important;
}

/* Contact : petite finition */
.contact-copy h2 {
  max-width: 10ch;
}

/* Mobile / tablette */
@media (max-width: 1080px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-copy {
    position: static;
  }

  .ecosystem-stage {
    min-height: 720px;
  }

  .ecosystem-track {
    top: 106px;
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .story-strip {
    padding-top: 12px !important;
  }

  .intro-grid > div {
    border-left-width: 1px;
    padding-left: 18px;
  }

  .profile {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .profile img {
    width: min(100%, 360px) !important;
  }

  .ecosystem-stage {
    min-height: 680px;
  }

  .domain-bubble {
    width: 158px;
    padding: 16px;
  }

  .bubble-transport {
    transform:
      translate(
        calc(-50% - 145px + var(--p) * 82px),
        calc(-50% - 128px + var(--p) * 88px)
      );
  }

  .bubble-voyage {
    transform:
      translate(
        calc(-50% + 145px - var(--p) * 82px),
        calc(-50% - 128px + var(--p) * 88px)
      );
  }

  .bubble-hospitalite {
    transform:
      translate(
        -50%,
        calc(-50% + 180px - var(--p) * 110px)
      );
  }
}

@media (max-width: 540px) {
  .ecosystem {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ecosystem-track {
    height: 60vh;
    min-height: 500px;
  }

  .domain-bubble {
    width: 138px;
    padding: 14px;
  }

  .domain-bubble h3 {
    font-size: 28px;
  }

  .domain-bubble p {
    font-size: 12px;
  }

  .bubble-transport {
    transform:
      translate(
        calc(-50% - 118px + var(--p) * 64px),
        calc(-50% - 112px + var(--p) * 70px)
      );
  }

  .bubble-voyage {
    transform:
      translate(
        calc(-50% + 118px - var(--p) * 64px),
        calc(-50% - 112px + var(--p) * 70px)
      );
  }

  .bubble-hospitalite {
    transform:
      translate(
        -50%,
        calc(-50% + 150px - var(--p) * 88px)
      );
  }

  .ted-wordmark strong {
    font-size: 40px;
  }

  .ted-wordmark span {
    font-size: 12px;
  }
}


/* =========================================================
   Final pass — convergence TED plus lisible et plus premium
   ========================================================= */

/* La section vision doit être sobre et parfaitement lisible */
.ecosystem {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.ecosystem-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.ecosystem-copy {
  position: sticky;
  top: 134px;
}

.ecosystem-stage {
  min-height: 980px;
}

.ecosystem-track {
  --p: 0;
  --logo-o: 0;
  --logo-s: .94;
  position: sticky;
  top: 122px;
  height: 72vh;
  min-height: 640px;
  overflow: hidden;
  border-top: 1px solid rgba(3,66,48,.12);
  border-bottom: 1px solid rgba(3,66,48,.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(216,199,170,.12), transparent 28%);
}

.ecosystem-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,66,48,.04) 1px, transparent 1px);
  background-size: 118px 100%;
  opacity: .18;
  pointer-events: none;
}

.domain-bubble,
.ted-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  will-change: transform, opacity;
}

.domain-bubble {
  width: clamp(248px, 22vw, 340px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(3,66,48,.12);
  box-shadow: 0 22px 70px rgba(3,66,48,.08);
  backdrop-filter: blur(8px);
}

.bubble-transport {
  background: linear-gradient(180deg, rgba(236,242,237,.96), rgba(228,236,232,.92));
}

.bubble-voyage {
  background: linear-gradient(180deg, rgba(243,238,228,.96), rgba(236,231,221,.92));
}

.bubble-hospitalite {
  background: linear-gradient(180deg, rgba(237,232,223,.96), rgba(232,226,214,.92));
}

.domain-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.caption-left {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 62px 44px 44px 56px;
}

.caption-right {
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
  padding: 62px 56px 44px 44px;
}

.caption-bottom {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 44px 38px 62px;
}

.domain-kicker {
  color: rgba(3,66,48,.48);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
}

.domain-bubble h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3vw, 54px);
  line-height: .92;
  color: var(--green);
  letter-spacing: -.05em;
}

.domain-bubble p {
  margin: 0;
  color: #5e6c66;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.bubble-transport {
  transform:
    translate(
      calc(-50% - 260px + var(--p) * 155px),
      calc(-50% - 182px + var(--p) * 112px)
    );
}

.bubble-voyage {
  transform:
    translate(
      calc(-50% + 260px - var(--p) * 155px),
      calc(-50% - 182px + var(--p) * 112px)
    );
}

.bubble-hospitalite {
  transform:
    translate(
      -50%,
      calc(-50% + 214px - var(--p) * 128px)
    );
}

/* Le logo TED n'apparaît qu'une fois la rencontre amorcée */
.ted-wordmark {
  z-index: 6;
  transform: translate(-50%, -50%) scale(var(--logo-s));
  opacity: var(--logo-o);
  pointer-events: none;
  transition: opacity .18s linear, transform .18s linear;
  filter: drop-shadow(0 8px 20px rgba(255,255,255,.38));
}

.ted-wordmark img {
  display: block;
  width: clamp(210px, 22vw, 320px);
  height: auto;
}

/* Effet de rencontre plus assumé mais lisible */
.ecosystem-stage.is-near .domain-bubble {
  border-color: rgba(3,66,48,.18);
  box-shadow: 0 28px 80px rgba(3,66,48,.10);
}

/* On s'assure qu'aucun ancien bloc n'interfère */
.ted-core,
.ecosystem-lines {
  display: none !important;
}

/* Mobile / tablette */
@media (max-width: 1120px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-copy {
    position: static;
  }

  .ecosystem-stage {
    min-height: 760px;
  }

  .ecosystem-track {
    top: 102px;
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .domain-bubble {
    width: 214px;
  }

  .caption-left {
    padding: 48px 30px 30px 38px;
  }

  .caption-right {
    padding: 48px 38px 30px 30px;
  }

  .caption-bottom {
    padding: 30px 24px 46px;
  }

  .bubble-transport {
    transform:
      translate(
        calc(-50% - 150px + var(--p) * 92px),
        calc(-50% - 136px + var(--p) * 82px)
      );
  }

  .bubble-voyage {
    transform:
      translate(
        calc(-50% + 150px - var(--p) * 92px),
        calc(-50% - 136px + var(--p) * 82px)
      );
  }

  .bubble-hospitalite {
    transform:
      translate(
        -50%,
        calc(-50% + 160px - var(--p) * 96px)
      );
  }

  .ted-wordmark img {
    width: 220px;
  }
}

@media (max-width: 540px) {
  .ecosystem {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ecosystem-track {
    height: 60vh;
    min-height: 480px;
  }

  .domain-bubble {
    width: 162px;
  }

  .domain-bubble h3 {
    font-size: 28px;
  }

  .domain-bubble p {
    font-size: 12px;
  }

  .caption-left {
    padding: 34px 18px 18px 24px;
  }

  .caption-right {
    padding: 34px 24px 18px 18px;
  }

  .caption-bottom {
    padding: 18px 16px 32px;
  }

  .bubble-transport {
    transform:
      translate(
        calc(-50% - 110px + var(--p) * 62px),
        calc(-50% - 104px + var(--p) * 64px)
      );
  }

  .bubble-voyage {
    transform:
      translate(
        calc(-50% + 110px - var(--p) * 62px),
        calc(-50% - 104px + var(--p) * 64px)
      );
  }

  .bubble-hospitalite {
    transform:
      translate(
        -50%,
        calc(-50% + 120px - var(--p) * 74px)
      );
  }

  .ted-wordmark img {
    width: 165px;
  }
}


/* =========================================================
   Ultimate DA pass
   ========================================================= */

/* Vision / convergence */
.ted-wordmark img {
  width: clamp(150px, 16vw, 220px) !important;
}

.ecosystem-track {
  background:
    radial-gradient(circle at 50% 50%, rgba(216,199,170,.09), transparent 26%) !important;
}

.domain-bubble {
  box-shadow: 0 18px 46px rgba(3,66,48,.07) !important;
}

.domain-bubble h3 {
  font-size: clamp(30px, 2.6vw, 48px) !important;
}

.domain-bubble p {
  font-size: 14px !important;
}

.bubble-transport {
  transform:
    translate(
      calc(-50% - 260px + var(--p) * 135px),
      calc(-50% - 182px + var(--p) * 98px)
    ) !important;
}

.bubble-voyage {
  transform:
    translate(
      calc(-50% + 260px - var(--p) * 135px),
      calc(-50% - 182px + var(--p) * 98px)
    ) !important;
}

.bubble-hospitalite {
  transform:
    translate(
      -50%,
      calc(-50% + 214px - var(--p) * 112px)
    ) !important;
}

/* Editorial polish */
header.site-header {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav a {
  font-size: 15px;
}

.section-heading h2 {
  max-width: 12ch;
}

.section-label {
  font-size: 13px;
  letter-spacing: .14em;
}

.hero h1 {
  max-width: 10.5ch;
}

.hero-text {
  max-width: 58ch;
}

.story-strip {
  padding-bottom: 58px !important;
}

.story-item {
  position: relative;
}

.story-item::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(216,199,170,.95), rgba(216,199,170,0));
  opacity: .7;
}

.story-item p {
  max-width: 25ch;
}

/* Expertise sections: slightly more rhythm without misalignment */
.fields .cards.three .card h3,
.expertises .cards.six .card h3 {
  margin-bottom: 20px !important;
}

.fields .cards.three .card p,
.expertises .cards.six .card p {
  max-width: 34ch;
}

/* Profiles: premium alignment and better CTA */
.profile {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.profile img {
  border-radius: 22px !important;
  box-shadow: 0 18px 48px rgba(3,66,48,.10) !important;
}

.profile h3 {
  margin-bottom: 10px !important;
}

.profile .role {
  margin-bottom: 16px !important;
}

.linkedin-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-top: 22px !important;
  border: 1px solid rgba(3,66,48,.18);
  border-radius: 999px;
  text-decoration: none;
  border-bottom: 0 !important;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.linkedin-link::after {
  content: "↗";
  font-size: 14px;
}

.linkedin-link:hover {
  transform: translateY(-1px);
  background: rgba(216,199,170,.16);
  border-color: rgba(3,66,48,.3);
}

/* Contact refinement */
.contact-card {
  box-shadow: 0 24px 70px rgba(3,66,48,.10);
}

.contact-form {
  box-shadow: 0 18px 40px rgba(3,66,48,.10) !important;
}

.contact-form button {
  letter-spacing: .01em;
}

/* Responsive tuning for the circles */
@media (max-width: 820px) {
  .ted-wordmark img {
    width: 170px !important;
  }

  .bubble-transport {
    transform:
      translate(
        calc(-50% - 150px + var(--p) * 72px),
        calc(-50% - 136px + var(--p) * 66px)
      ) !important;
  }

  .bubble-voyage {
    transform:
      translate(
        calc(-50% + 150px - var(--p) * 72px),
        calc(-50% - 136px + var(--p) * 66px)
      ) !important;
  }

  .bubble-hospitalite {
    transform:
      translate(
        -50%,
        calc(-50% + 160px - var(--p) * 76px)
      ) !important;
  }
}

@media (max-width: 540px) {
  .ted-wordmark img {
    width: 132px !important;
  }

  .domain-bubble h3 {
    font-size: 24px !important;
  }

  .domain-bubble p {
    font-size: 11px !important;
  }

  .story-item::after {
    left: 0;
    right: 0;
  }
}


/* =========================================================
   Correctifs finaux — hero, cercles, alignements, hover
   ========================================================= */

/* HERO : revenir à une composition propre, centrée, élégante */
.hero {
  min-height: auto !important;
  padding-top: 154px !important;
  padding-bottom: 92px !important;
  display: block !important;
}

.hero-content {
  max-width: 1220px !important;
  width: min(92vw, 1220px) !important;
  margin: 0 auto !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero .eyebrow {
  text-align: center !important;
  margin: 0 auto 28px !important;
}

.hero h1 {
  max-width: 13.2ch !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
  font-size: clamp(64px, 8vw, 124px) !important;
  line-height: .93 !important;
  letter-spacing: -0.055em !important;
}

.hero-text {
  max-width: 1000px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: clamp(18px, 1.9vw, 26px) !important;
  line-height: 1.55 !important;
}

.hero-actions {
  justify-content: center !important;
  margin-top: 34px !important;
}

/* On garde les décors mais plus subtils */
.plane-hero,
.plane-hero-small {
  opacity: .07 !important;
}

/* 3 cercles : mieux colorés, logo plus à sa place */
.bubble-transport {
  background: linear-gradient(180deg, rgba(229,239,236,.96), rgba(222,234,229,.92)) !important;
  border-color: rgba(87,126,112,.22) !important;
}

.bubble-voyage {
  background: linear-gradient(180deg, rgba(244,239,230,.96), rgba(239,233,223,.92)) !important;
  border-color: rgba(179,160,122,.24) !important;
}

.bubble-hospitalite {
  background: linear-gradient(180deg, rgba(235,231,222,.96), rgba(229,224,214,.92)) !important;
  border-color: rgba(144,138,122,.22) !important;
}

.ted-wordmark img {
  width: clamp(118px, 12vw, 176px) !important;
  max-width: 176px !important;
}

.ted-wordmark {
  filter: drop-shadow(0 4px 12px rgba(255,255,255,.26)) !important;
}

/* Les titres des bulles restent lisibles */
.domain-bubble h3 {
  font-size: clamp(28px, 2.5vw, 46px) !important;
}

.domain-bubble p {
  font-size: 13px !important;
}

/* Un peu plus d'espace entre logo et libellés */
.caption-bottom {
  padding-bottom: 54px !important;
}

/* SECTION APPROCHE : tout aligner proprement */
.steps {
  align-items: start !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px !important;
}

.steps article {
  min-height: 360px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding-top: 34px !important;
  padding-bottom: 24px !important;
  transform: translateY(0) !important;
  transition: transform .22s ease, opacity .22s ease !important;
}

.steps article h3 {
  min-height: 2.25em;
  display: block;
  margin-bottom: 18px !important;
}

.steps article p {
  max-width: 22ch !important;
}

.steps article:nth-child(2),
.steps article:nth-child(4) {
  transform: translateY(0) !important;
}

@media (hover: hover) {
  .steps article:nth-child(odd):hover {
    transform: translateY(-8px) !important;
  }

  .steps article:nth-child(even):hover {
    transform: translateY(8px) !important;
  }
}

/* Même logique pour "Nos terrains de jeu" pour donner du rythme sans casser l’alignement */
.fields .cards.three {
  align-items: start !important;
}

.fields .cards.three .card {
  min-height: 320px !important;
  transition: transform .22s ease !important;
  transform: translateY(0) !important;
}

@media (hover: hover) {
  .fields .cards.three .card:nth-child(odd):hover {
    transform: translateY(-8px) !important;
  }

  .fields .cards.three .card:nth-child(even):hover {
    transform: translateY(8px) !important;
  }
}

/* Responsive du hero */
@media (max-width: 900px) {
  .hero {
    padding-top: 132px !important;
    padding-bottom: 72px !important;
  }

  .hero h1 {
    max-width: 11.5ch !important;
    font-size: clamp(56px, 12vw, 94px) !important;
  }

  .hero-text {
    font-size: clamp(17px, 3vw, 22px) !important;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }

  .steps article {
    min-height: 300px !important;
  }
}

@media (max-width: 640px) {
  .hero-content {
    width: min(94vw, 1220px) !important;
  }

  .hero h1 {
    max-width: 10.5ch !important;
    font-size: clamp(46px, 13vw, 72px) !important;
  }

  .hero-text {
    font-size: 17px !important;
    line-height: 1.58 !important;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .steps {
    grid-template-columns: 1fr !important;
  }

  .steps article {
    min-height: auto !important;
  }

  .ted-wordmark img {
    width: 118px !important;
  }
}


/* =========================================================
   Correction accueil : 3 phrases, 3 lignes, sans casse mot par mot
   ========================================================= */
.hero h1 {
  max-width: none !important;
  width: min(92vw, 1420px) !important;
  font-size: clamp(70px, 7.4vw, 118px) !important;
  line-height: .92 !important;
  letter-spacing: -0.055em !important;
  white-space: nowrap !important;
}

.hero-content {
  max-width: 1500px !important;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(58px, 7.6vw, 86px) !important;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    white-space: normal !important;
    width: min(94vw, 760px) !important;
    max-width: 12ch !important;
    font-size: clamp(48px, 13vw, 72px) !important;
    line-height: .9 !important;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: 10.8ch !important;
    font-size: clamp(42px, 13.5vw, 62px) !important;
  }
}


/* =========================================================
   Correction finale accueil : centrage parfait du hero
   ========================================================= */
.hero-content {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero h1 {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero .eyebrow,
.hero-text,
.hero-actions {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-actions {
  justify-content: center !important;
}


/* =========================================================
   Correction ultra-finale accueil :
   le grand titre doit être centré sur le même axe que le texte dessous
   ========================================================= */
.hero-content {
  max-width: 1280px !important;
  width: min(90vw, 1280px) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.hero h1 {
  width: auto !important;
  max-width: 1280px !important;
  margin: 0 auto 30px !important;
  text-align: center !important;
  white-space: normal !important;
}

.hero-text {
  max-width: 1120px !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero .eyebrow,
.hero-actions {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-actions {
  justify-content: center !important;
}

/* Desktop : 3 phrases sur 3 lignes, bien centrées */
@media (min-width: 901px) {
  .hero h1 {
    font-size: clamp(70px, 7.2vw, 118px) !important;
    line-height: .92 !important;
    letter-spacing: -0.055em !important;
  }
}

/* Tablet / mobile : on garde le centrage */
@media (max-width: 900px) {
  .hero-content {
    width: min(92vw, 1280px) !important;
  }

  .hero h1 {
    max-width: 11.8ch !important;
    font-size: clamp(52px, 10vw, 86px) !important;
    line-height: .92 !important;
  }

  .hero-text {
    max-width: 92vw !important;
  }
}


/* Language toggle */
.lang-toggle {
  border: 1px solid rgba(3,66,48,.18);
  background: rgba(255,255,255,.42);
  color: var(--green);
  border-radius: 999px;
  min-width: 46px;
  height: 38px;
  padding: 0 13px;
  display: inline-grid;
  place-items: center;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.lang-toggle:hover {
  background: rgba(216,199,170,.18);
  border-color: rgba(3,66,48,.32);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .lang-toggle {
    margin-left: auto;
    margin-right: 8px;
    height: 40px;
  }
}


/* === Expertise detail tooltips === */
#expertises .card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

#expertises .card:focus {
  outline: none;
}

#expertises .card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(216, 199, 170, .45),
    0 22px 60px rgba(3, 66, 48, .14);
}

.expertise-detail {
  position: absolute;
  inset: 12px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 12%, rgba(216, 199, 170, .16), transparent 30%),
    #1a4a2e;
  color: #f5ead8;
  opacity: 0;
  transform: translateY(14px) scale(.985);
  pointer-events: none;
  transition:
    opacity 250ms ease,
    transform 250ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 24px 62px rgba(3, 30, 22, .24);
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 234, 216, .42) rgba(255, 255, 255, .06);
}

.expertise-detail::-webkit-scrollbar {
  width: 6px;
}

.expertise-detail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
}

.expertise-detail::-webkit-scrollbar-thumb {
  background: rgba(245, 234, 216, .38);
  border-radius: 999px;
}

.expertise-detail__block {
  display: grid;
  gap: 8px;
}

.expertise-detail strong {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245, 234, 216, .72);
}

.expertise-detail p {
  margin: 0 !important;
  max-width: none !important;
  color: #f5ead8 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.34;
}

#expertises .card:hover .expertise-detail,
#expertises .card:focus-within .expertise-detail,
#expertises .card.is-detail-open .expertise-detail {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (hover: none) and (pointer: coarse) {
  #expertises .card {
    cursor: pointer;
  }

  #expertises .card:hover .expertise-detail {
    opacity: 0;
    transform: translateY(14px) scale(.985);
    pointer-events: none;
  }

  #expertises .card.is-detail-open .expertise-detail {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

@media (max-width: 720px) {
  .expertise-detail {
    inset: 10px;
    padding: 18px;
    border-radius: 16px;
  }

  .expertise-detail p {
    font-size: 16px;
    line-height: 1.32;
  }
}


/* === Intervention perimeter visual — Nos terrains de jeu === */
.fields-content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.fields-content .cards.three,
.fields-content .cards {
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}

.fields-visual {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  background: rgba(244, 238, 226, .62);
  box-shadow: 0 28px 80px rgba(3, 66, 48, .11);
  border: 1px solid rgba(3, 66, 48, .09);
  isolation: isolate;
}

.fields-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .20), transparent 38%),
    radial-gradient(circle at 84% 18%, rgba(216, 199, 170, .16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(3,66,48,.08));
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.fields-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
  filter: saturate(.94) contrast(.98) brightness(1.02);
}

.fields-visual figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(3, 66, 48, .74);
  color: #f4ead8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 1080px) {
  .fields-content {
    grid-template-columns: 1fr;
  }

  .fields-content .cards.three,
  .fields-content .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .fields-visual {
    min-height: 380px;
  }

  .fields-visual img {
    min-height: 380px;
  }
}

@media (max-width: 820px) {
  .fields-content .cards.three,
  .fields-content .cards {
    grid-template-columns: 1fr !important;
  }

  .fields-visual {
    min-height: 300px;
    border-radius: 20px;
  }

  .fields-visual img {
    min-height: 300px;
  }

  .fields-visual figcaption {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    white-space: normal;
    line-height: 1.35;
  }
}


/* === Intervention perimeter visual — header-only correction === */
.fields > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: end !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.fields-heading-copy {
  min-width: 0;
}

.fields-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.fields-heading-copy h2 {
  max-width: 12ch !important;
  margin: 0 !important;
}

.fields-heading-visual {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 7;
  min-height: 210px;
  background: rgba(244, 238, 226, .64);
  border: 1px solid rgba(3, 66, 48, .10);
  box-shadow: 0 22px 62px rgba(3, 66, 48, .10);
  isolation: isolate;
}

.fields-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(3, 66, 48, .06));
  pointer-events: none;
  z-index: 1;
}

.fields-heading-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(.96) brightness(1.03);
  transform: scale(1.01);
}

/* Restore card organization below the title/image */
.fields > .cards.three {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2.4vw, 34px) !important;
}

.fields-content {
  display: contents !important;
}

.fields-content .cards.three,
.fields-content .cards {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 1080px) {
  .fields > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .fields-heading-copy h2 {
    max-width: 14ch !important;
  }

  .fields-heading-visual {
    width: 100%;
    min-height: 240px;
    aspect-ratio: 16 / 6.8;
  }

  .fields > .cards.three,
  .fields-content .cards.three,
  .fields-content .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .fields-heading-visual {
    min-height: 190px;
    border-radius: 18px;
  }

  .fields > .cards.three,
  .fields-content .cards.three,
  .fields-content .cards {
    grid-template-columns: 1fr !important;
  }
}


/* === Ajustement image périmètres : alignement avec "Trois univers..." === */
.fields > .section-heading {
  align-items: start !important;
}

.fields-heading-visual {
  transform: translateY(-28px) !important;
}

@media (max-width: 1080px) {
  .fields-heading-visual {
    transform: translateY(0) !important;
  }
}


/* === Ajustement image périmètres : centrage harmonieux dans le bloc titre === */
.fields > .section-heading {
  align-items: center !important;
}

.fields-heading-visual {
  transform: translateY(-8px) !important;
}

@media (max-width: 1080px) {
  .fields-heading-visual {
    transform: translateY(0) !important;
  }
}


/* === Expertise image integration === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-copy {
  min-width: 0;
}

.expertises-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.expertises-heading-copy h2 {
  margin: 0 !important;
  max-width: 13ch !important;
}

.expertises-heading-visual {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 8.2;
  min-height: 240px;
  background: rgba(244, 238, 226, .64);
  border: 1px solid rgba(3, 66, 48, .10);
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10);
  isolation: isolate;
}

.expertises-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .14), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(3, 66, 48, .06));
  pointer-events: none;
  z-index: 1;
}

.expertises-heading-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(.92) contrast(.97) brightness(1.02);
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .expertises-heading-copy h2 {
    max-width: 14ch !important;
  }

  .expertises-heading-visual {
    width: 100%;
    min-height: 240px;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 820px) {
  .expertises-heading-visual {
    min-height: 190px;
    border-radius: 18px;
  }
}


/* === Harmonisation position image Expertises avec "Trois univers" === */
#expertises > .section-heading {
  align-items: center !important;
}

.expertises-heading-visual {
  transform: translateY(-8px) !important;
}

@media (max-width: 1080px) {
  .expertises-heading-visual {
    transform: translateY(0) !important;
  }
}


/* === Harmonisation finale image Expertises sur le même calage que "Trois univers" === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.expertises-heading-copy h2 {
  max-width: 12ch !important;
  margin: 0 !important;
}

.expertises-heading-visual {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 20px !important;
  aspect-ratio: 16 / 7 !important;
  min-height: 210px !important;
  background: rgba(244, 238, 226, .64) !important;
  border: 1px solid rgba(3, 66, 48, .10) !important;
  box-shadow: 0 22px 62px rgba(3, 66, 48, .10) !important;
  isolation: isolate;
  transform: translateY(-8px) !important;
}

.expertises-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(3, 66, 48, .06));
  pointer-events: none;
  z-index: 1;
}

.expertises-heading-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(.96) brightness(1.03) !important;
  transform: scale(1.01) !important;
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .expertises-heading-copy h2 {
    max-width: 14ch !important;
  }

  .expertises-heading-visual {
    width: 100%;
    min-height: 240px !important;
    aspect-ratio: 16 / 6.8 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 820px) {
  .expertises-heading-visual {
    min-height: 190px !important;
    border-radius: 18px !important;
  }
}


/* === Ajustement horizontal : image Expertises plus à droite === */
#expertises > .section-heading {
  grid-template-columns: minmax(0, .78fr) minmax(400px, .76fr) !important;
}

.expertises-heading-visual {
  justify-self: end !important;
  width: min(100%, 100%) !important;
  margin-left: auto !important;
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
  }

  .expertises-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
}


/* === Correction demandée : image Expertises à l'extrême gauche === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(360px, .74fr) minmax(0, .86fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-visual {
  grid-column: 1 !important;
  justify-self: start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  transform: none !important;
  border-radius: 20px !important;
  aspect-ratio: 16 / 7 !important;
  min-height: 210px !important;
}

.expertises-heading-copy {
  grid-column: 2 !important;
  justify-self: start !important;
  min-width: 0 !important;
}

.expertises-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.expertises-heading-copy h2 {
  max-width: 13ch !important;
  margin: 0 !important;
}

/* Annule les anciens réglages qui poussaient l'image à droite */
.expertises-heading-visual {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .expertises-heading-visual,
  .expertises-heading-copy {
    grid-column: 1 !important;
  }

  .expertises-heading-visual {
    width: 100% !important;
    min-height: 240px !important;
    aspect-ratio: 16 / 7 !important;
  }
}

@media (max-width: 820px) {
  .expertises-heading-visual {
    min-height: 190px !important;
    border-radius: 18px !important;
  }
}


/* === Image section Approche === */
#approche > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .88fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.approach-heading-copy {
  min-width: 0 !important;
}

.approach-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.approach-heading-copy h2 {
  margin: 0 !important;
  max-width: 13ch !important;
}

.approach-heading-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(100%, 620px) !important;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 7.2;
  background: rgba(244, 238, 226, .60);
  border: 1px solid rgba(3, 66, 48, .10);
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10);
  isolation: isolate;
}

.approach-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(3, 66, 48, .06));
  pointer-events: none;
  z-index: 1;
}

.approach-heading-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.93) contrast(.98) brightness(1.02);
  transform: scale(1.01);
}

@media (max-width: 1080px) {
  #approche > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .approach-heading-visual {
    grid-column: 1 !important;
    justify-self: stretch !important;
    width: 100% !important;
    aspect-ratio: 16 / 7 !important;
  }

  .approach-heading-copy h2 {
    max-width: 14ch !important;
  }
}

@media (max-width: 820px) {
  .approach-heading-visual {
    border-radius: 18px;
  }
}


/* === Image section Expertises — même logique que Approche === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .88fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
  justify-self: start !important;
}

.expertises-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.expertises-heading-copy h2 {
  margin: 0 !important;
  max-width: 13ch !important;
}

.expertises-heading-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(100%, 620px) !important;
  max-width: none !important;
  margin: 0 !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
  min-height: 0 !important;
  background: rgba(244, 238, 226, .60) !important;
  border: 1px solid rgba(3, 66, 48, .10) !important;
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10) !important;
  isolation: isolate;
  transform: none !important;
}

.expertises-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(3, 66, 48, .06));
  pointer-events: none;
  z-index: 1;
}

.expertises-heading-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(.93) contrast(.98) brightness(1.02) !important;
  transform: scale(1.01) !important;
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .expertises-heading-copy,
  .expertises-heading-visual {
    grid-column: 1 !important;
  }

  .expertises-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    aspect-ratio: 16 / 7 !important;
  }

  .expertises-heading-copy h2 {
    max-width: 14ch !important;
  }
}

@media (max-width: 820px) {
  .expertises-heading-visual {
    border-radius: 18px !important;
  }
}


/* === Ajustement final : image Expertises plus à droite === */
#expertises > .section-heading {
  grid-template-columns: minmax(0, .64fr) minmax(460px, .96fr) !important;
}

.expertises-heading-visual {
  justify-self: end !important;
  width: min(100%, 680px) !important;
  margin-left: auto !important;
  margin-right: -18px !important;
}

@media (max-width: 1180px) {
  .expertises-heading-visual {
    margin-right: 0 !important;
  }
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
  }

  .expertises-heading-visual {
    width: 100% !important;
    margin-right: 0 !important;
  }
}


/* === Correction finale : image Expertises complètement à gauche === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(460px, .96fr) minmax(0, .64fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-visual {
  grid-column: 1 !important;
  justify-self: start !important;
  width: min(100%, 680px) !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  transform: none !important;
}

.expertises-heading-copy {
  grid-column: 2 !important;
  justify-self: start !important;
  min-width: 0 !important;
}

.expertises-heading-copy h2 {
  max-width: 13ch !important;
  margin: 0 !important;
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
  }

  .expertises-heading-visual,
  .expertises-heading-copy {
    grid-column: 1 !important;
  }

  .expertises-heading-visual {
    width: 100% !important;
    margin-right: 0 !important;
  }
}


/* === Correction finale : Expertises texte à gauche / image le plus à droite possible === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .62fr) minmax(480px, .98fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-copy {
  grid-column: 1 !important;
  justify-self: start !important;
  min-width: 0 !important;
}

.expertises-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.expertises-heading-copy h2 {
  max-width: 13ch !important;
  margin: 0 !important;
}

.expertises-heading-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(100%, 700px) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: -24px !important;
  transform: none !important;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
}

@media (max-width: 1220px) {
  .expertises-heading-visual {
    margin-right: 0 !important;
  }
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .expertises-heading-copy,
  .expertises-heading-visual {
    grid-column: 1 !important;
  }

  .expertises-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    aspect-ratio: 16 / 7 !important;
  }

  .expertises-heading-copy h2 {
    max-width: 14ch !important;
  }
}


/* === Harmonisation Approche / Expertises : images centrées sur le même axe === */
#approche > .section-heading,
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .68fr) minmax(420px, .92fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.approach-heading-copy,
.expertises-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
  justify-self: start !important;
}

.approach-heading-copy h2,
.expertises-heading-copy h2 {
  max-width: 13ch !important;
  margin: 0 !important;
}

.approach-heading-visual,
.expertises-heading-visual {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transform: none !important;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
}

.approach-heading-visual img,
.expertises-heading-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Neutralise les anciens décalages latéraux */
.expertises-heading-visual,
.approach-heading-visual {
  right: auto !important;
  left: auto !important;
}

/* Responsive */
@media (max-width: 1080px) {
  #approche > .section-heading,
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .approach-heading-copy,
  .approach-heading-visual,
  .expertises-heading-copy,
  .expertises-heading-visual {
    grid-column: 1 !important;
  }

  .approach-heading-visual,
  .expertises-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    aspect-ratio: 16 / 7 !important;
  }

  .approach-heading-copy h2,
  .expertises-heading-copy h2 {
    max-width: 14ch !important;
  }
}


/* === Image section Valeurs === */
#valeurs > .section-heading,
#values > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .68fr) minmax(420px, .92fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.values-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
  justify-self: start !important;
}

.values-heading-copy h1,
.values-heading-copy h2,
.values-heading-copy h3 {
  max-width: 13ch !important;
  margin: 0 !important;
}

.values-heading-visual {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
  background: rgba(244, 238, 226, .60) !important;
  border: 1px solid rgba(3, 66, 48, .10) !important;
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10) !important;
  isolation: isolate;
}

.values-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .10), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(3, 66, 48, .05));
  pointer-events: none;
  z-index: 1;
}

.values-heading-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(.93) contrast(.98) brightness(1.02) !important;
}

@media (max-width: 1080px) {
  #valeurs > .section-heading,
  #values > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .values-heading-copy,
  .values-heading-visual {
    grid-column: 1 !important;
  }

  .values-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 16 / 7 !important;
  }

  .values-heading-copy h1,
  .values-heading-copy h2,
  .values-heading-copy h3 {
    max-width: 14ch !important;
  }
}

@media (max-width: 820px) {
  .values-heading-visual {
    border-radius: 18px !important;
  }
}


/* === Image de mission à droite === */
.section.challenges .split {
  display: grid !important;
  grid-template-columns: minmax(0, .68fr) minmax(420px, .92fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
}

.mission-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
  justify-self: start !important;
}

.mission-heading-copy > div:first-child {
  margin-bottom: 22px !important;
}

.mission-heading-copy h2 {
  max-width: 15ch !important;
}

.mission-heading-visual {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
  background: rgba(244, 238, 226, .60) !important;
  border: 1px solid rgba(3, 66, 48, .10) !important;
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10) !important;
  isolation: isolate;
}

.mission-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(3, 66, 48, .05));
  pointer-events: none;
  z-index: 1;
}

.mission-heading-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(.93) contrast(.98) brightness(1.02) !important;
}

@media (max-width: 1080px) {
  .section.challenges .split {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .mission-heading-copy,
  .mission-heading-visual {
    grid-column: 1 !important;
  }

  .mission-heading-visual {
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 16 / 7 !important;
  }
}


/* === Correction : image à côté des Valeurs, pas Mission === */
.section.challenges .split {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

/* On neutralise l'ancien habillage Mission */
.mission-heading-visual {
  display: none !important;
}

.values > .section-heading,
#valeurs > .section-heading,
#values > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .68fr) minmax(420px, .92fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.values-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
  justify-self: start !important;
}

.values-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.values-heading-copy h1,
.values-heading-copy h2,
.values-heading-copy h3 {
  max-width: 13ch !important;
  margin: 0 !important;
}

.values-heading-visual {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
  background: rgba(244, 238, 226, .60) !important;
  border: 1px solid rgba(3, 66, 48, .10) !important;
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10) !important;
  isolation: isolate;
}

.values-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .10), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(3, 66, 48, .05));
  pointer-events: none;
  z-index: 1;
}

.values-heading-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(.93) contrast(.98) brightness(1.02) !important;
}

@media (max-width: 1080px) {
  .values > .section-heading,
  #valeurs > .section-heading,
  #values > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .values-heading-copy,
  .values-heading-visual {
    grid-column: 1 !important;
  }

  .values-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 16 / 7 !important;
  }

  .section.challenges .split {
    grid-template-columns: 1fr !important;
  }
}


/* === Ajustement final section Expertises : image alignée comme les autres === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .88fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
}

.expertises-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.expertises-heading-copy h2 {
  margin: 0 !important;
  max-width: 13ch !important;
}

.expertises-heading-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  min-height: 0 !important;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
  background: rgba(244, 238, 226, .60) !important;
  border: 1px solid rgba(3, 66, 48, .10) !important;
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10) !important;
  isolation: isolate;
}

.expertises-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(3, 66, 48, .06));
  pointer-events: none;
  z-index: 1;
}

.expertises-heading-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(.93) contrast(.98) brightness(1.02) !important;
  transform: scale(1.01) !important;
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .expertises-heading-copy,
  .expertises-heading-visual {
    grid-column: 1 !important;
  }

  .expertises-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 16 / 7 !important;
  }

  .expertises-heading-copy h2 {
    max-width: 14ch !important;
  }
}

@media (max-width: 820px) {
  .expertises-heading-visual {
    border-radius: 18px !important;
  }
}


/* === Raffinement final Expertise : même rendu qu'Approche === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .66fr) minmax(460px, .94fr) !important;
  gap: clamp(64px, 8vw, 132px) !important;
  align-items: center !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.expertises-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
  justify-self: start !important;
}

.expertises-heading-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  margin: 0 !important;
  transform: translateX(0) !important;
}

@media (min-width: 1280px) {
  .expertises-heading-visual {
    transform: translateX(18px) !important;
  }
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: start !important;
  }

  .expertises-heading-copy,
  .expertises-heading-visual {
    grid-column: 1 !important;
  }

  .expertises-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
  }
}


/* === FIX PROPRE EXPERTISES : séparation texte / image === */
#expertises > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(320px, 500px) minmax(520px, 620px) !important;
  column-gap: clamp(120px, 10vw, 220px) !important;
  row-gap: 24px !important;
  align-items: center !important;
  justify-content: space-between !important;
}

#expertises .expertises-heading-copy {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 500px !important;
  min-width: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

#expertises .expertises-heading-copy h2 {
  max-width: 7ch !important;
  margin: 0 !important;
}

#expertises .expertises-heading-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  transform: none !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 7.2 !important;
}

#expertises .expertises-heading-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 1280px) {
  #expertises > .section-heading {
    grid-template-columns: minmax(280px, 440px) minmax(440px, 560px) !important;
    column-gap: clamp(72px, 7vw, 120px) !important;
  }

  #expertises .expertises-heading-copy {
    max-width: 440px !important;
  }

  #expertises .expertises-heading-copy h2 {
    max-width: 7.5ch !important;
  }

  #expertises .expertises-heading-visual {
    max-width: 560px !important;
  }
}

@media (max-width: 1080px) {
  #expertises > .section-heading {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 28px !important;
    align-items: start !important;
  }

  #expertises .expertises-heading-copy,
  #expertises .expertises-heading-visual {
    grid-column: 1 !important;
    max-width: none !important;
  }

  #expertises .expertises-heading-copy h2 {
    max-width: 14ch !important;
  }

  #expertises .expertises-heading-visual {
    width: 100% !important;
    margin: 0 !important;
    aspect-ratio: 16 / 7 !important;
  }
}


/* === Team heading visual === */
#equipe > .section-heading,
#team > .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, .68fr) minmax(420px, .92fr) !important;
  gap: clamp(48px, 7vw, 110px) !important;
  align-items: center !important;
  max-width: none !important;
  margin-bottom: clamp(46px, 5vw, 78px) !important;
}

.team-heading-copy {
  grid-column: 1 !important;
  min-width: 0 !important;
}

.team-heading-copy .section-label {
  margin-bottom: 16px !important;
}

.team-heading-copy h2 {
  margin: 0 !important;
  max-width: 12ch !important;
}

.team-heading-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  aspect-ratio: 16 / 7.2 !important;
  background: rgba(244, 238, 226, .60) !important;
  border: 1px solid rgba(3, 66, 48, .10) !important;
  box-shadow: 0 24px 64px rgba(3, 66, 48, .10) !important;
  isolation: isolate;
}

.team-heading-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .10), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(3, 66, 48, .05));
  pointer-events: none;
  z-index: 1;
}

.team-heading-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(.93) contrast(.98) brightness(1.02) !important;
}

@media (max-width: 1080px) {
  #equipe > .section-heading,
  #team > .section-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 28px !important;
  }

  .team-heading-copy,
  .team-heading-visual {
    grid-column: 1 !important;
  }

  .team-heading-visual {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 16 / 7 !important;
  }

  .team-heading-copy h2 {
    max-width: 14ch !important;
  }
}

@media (max-width: 820px) {
  .team-heading-visual {
    border-radius: 18px !important;
  }
}
