/* ═══════════════════════════════════════════════════════════════
   EDENAYA — Feuille de style v2  (Design Premium)
   Typographies : Cormorant Garamond (titres) + DM Sans (corps)
   Palette : Bleu pétrole #1b4f72 · Vert menthe #52a882 · Blanc #f9f7f4
═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   VARIABLES
───────────────────────────────────────── */
:root {
  /* Marque */
  --petrol:        #1b4f72;
  --petrol-dk:     #0c2f45;
  --petrol-lt:     #2e7da8;
  --petrol-pale:   #e8f1f7;
  --mint:          #52a882;
  --mint-lt:       #7dc4a4;
  --mint-pale:     #dff2eb;

  /* Neutres */
  --white:         #ffffff;
  --cream:         #f9f7f4;
  --gray-100:      #f1eeea;
  --gray-200:      #e5e1dc;
  --gray-400:      #b5b0a8;
  --gray-600:      #7a7670;
  --gray-900:      #1a1714;

  /* Typographie */
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacements sections */
  --py:   7rem;
  --py-s: 5rem;

  /* Rayon */
  --r:    1rem;
  --r-sm: 0.5rem;
  --r-lg: 2rem;
  --pill: 100rem;

  /* Ombres */
  --sh-sm: 0 2px 12px rgba(27,79,114,.08);
  --sh-md: 0 8px 32px rgba(27,79,114,.13);
  --sh-lg: 0 20px 60px rgba(27,79,114,.18);

  /* Header */
  --hh: 78px;

  /* Transition */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--hh); -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); font-size: 1rem; line-height: 1.7; color: var(--gray-900); background: var(--white); overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
::selection { background: var(--petrol-pale); color: var(--petrol-dk); }
:focus-visible { outline: 2px solid var(--petrol-lt); outline-offset: 3px; border-radius: var(--r-sm); }


/* ─────────────────────────────────────────
   UTILITAIRES GLOBAUX
───────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--pill);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--petrol {
  background: var(--petrol);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(27,79,114,.28);
}
.btn--petrol:hover { background: var(--petrol-dk); box-shadow: 0 8px 28px rgba(27,79,114,.38); }

.btn--outline-dark {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.btn--outline-dark:hover { background: var(--petrol-pale); }

.btn--white {
  background: var(--white);
  color: var(--petrol);
  box-shadow: 0 4px 18px rgba(0,0,0,.14);
}
.btn--white:hover { background: var(--cream); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

.btn--full { width: 100%; justify-content: center; }

/* Labels de section */
.s-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: .75rem;
}
.s-label--light { color: var(--mint-lt); }

/* Titres de section */
.s-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.s-title strong { font-weight: 700; color: var(--petrol); }
.s-title--light { color: var(--white); }
.s-title--light strong { color: var(--mint-lt); }

.s-sub {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 580px;
}

/* En-tête de section centré */
.s-head { text-align: center; margin: 0 auto 4rem; max-width: 680px; }
.s-head .s-sub { margin: 0 auto; }

/* Animations scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal--left  { transform: translateX(-44px); }
.reveal--right { transform: translateX(44px); }
.reveal.is-visible { opacity: 1; transform: translate(0); }

.reveal--u1 { transition-delay: .08s; }
.reveal--u2 { transition-delay: .18s; }
.reveal--u3 { transition-delay: .28s; }
.reveal--u4 { transition-delay: .38s; }

/* Icônes réseaux sociaux */
.soc, .footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--petrol-pale);
  color: var(--petrol);
  transition: background .25s, color .25s, transform .25s;
}
.soc:hover, .footer__soc:hover { background: var(--petrol); color: var(--white); transform: translateY(-2px); }
.footer__soc { width: 34px; height: 34px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.footer__soc:hover { background: rgba(255,255,255,.2); color: var(--white); }

/* Animations diverses */
@keyframes slideReel   { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulseDot    { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .4; } }
@keyframes floatCard   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes tickerSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--hh);
  background: transparent;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.header.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(27,79,114,.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo-img { height: 50px; width: auto; object-fit: contain; }

/* Nav */
.header__nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  display: block;
  padding: .45rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-900);
  border-radius: var(--pill);
  transition: color .25s, background .25s;
}
.nav__link:hover, .nav__link.is-active { color: var(--petrol); background: var(--petrol-pale); }

/* Right side header */
.header__right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header__cta {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1.2rem;
  border-radius: var(--pill);
  background: var(--petrol);
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  transition: background .25s, transform .25s;
}
.header__cta:hover { background: var(--petrol-dk); transform: translateY(-1px); }

/* Burger */
.burger { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; }
.burger__line { display: block; width: 100%; height: 2px; background: var(--gray-900); border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.burger.is-open .burger__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ─────────────────────────────────────────
   HERO  (split-screen pleine hauteur)
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1fr auto;
}

/* Côté texte */
.hero__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: calc(var(--hh) + 4rem) 5% 5rem;
  position: relative;
  z-index: 2;
}
/* Légère forme organique qui dépasse sur la photo */
.hero__content::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 10%;
  bottom: 10%;
  width: 80px;
  background: var(--cream);
  border-radius: 0 50% 50% 0 / 0 30% 30% 0;
  z-index: 3;
}
.hero__content-inner { max-width: 540px; }

.hero__overline {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.75rem;
}
.hero__title em {
  font-style: italic;
  color: var(--petrol);
  font-weight: 300;
}

.hero__desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero__btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* Lien discret vers les collaborations */
.hero__collab-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--petrol);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: gap .3s var(--ease), color .3s;
}
.hero__collab-link svg { transition: transform .3s var(--ease); }
.hero__collab-link:hover { gap: .7rem; color: var(--mint); }

/* KPIs */
.hero__kpis {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.hero__kpi { display: flex; flex-direction: column; gap: .1rem; }
.hero__kpi b { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--petrol); }
.hero__kpi span { font-size: .78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .07em; }
.hero__kpi-sep { width: 1px; height: 34px; background: var(--gray-200); flex-shrink: 0; }
.hero__kpi--link { text-decoration: none; cursor: pointer; transition: transform .3s var(--ease); }
.hero__kpi--link:hover { transform: translateY(-3px); }
.hero__kpi--link:hover b { color: var(--mint); }

/* Côté photo — pleine hauteur, aucun padding */
.hero__photo-panel {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Fondu gauche pour raccorder la photo au texte */
.hero__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 22%);
  pointer-events: none;
  z-index: 1;
}

/* Badge disponibilité */
.hero__badge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.25rem;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-radius: var(--pill);
  box-shadow: var(--sh-md);
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-900);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}
.hero__badge-pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  animation: pulseDot 2.2s ease-in-out infinite;
}

/* Ticker décoratif en bas */
.hero__deco-line {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--petrol);
  height: 40px;
  width: 100%;
}
.hero__deco-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerSlide 20s linear infinite;
}
.hero__deco-line span {
  padding: 0 1.5rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────
   PARTENAIRES
───────────────────────────────────────── */
.partners { background: var(--cream); padding: 2.5rem 0; overflow: hidden; }
.partners .container { margin-bottom: 1.5rem; }
.partners__eyebrow {
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.partners__runway {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.partners__belt {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: slideReel 22s linear infinite;
}
.partners__belt:hover { animation-play-state: paused; }
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 52px;
  opacity: .4;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s;
  flex-shrink: 0;
}
.partner-item:hover { opacity: .85; filter: grayscale(0); }
.partner-item img { max-height: 44px; max-width: 110px; object-fit: contain; }
.partner-item--txt {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .04em;
  white-space: nowrap;
}


/* ─────────────────────────────────────────
   POURQUOI EDENAYA
───────────────────────────────────────── */
.why {
  background: var(--white);
  padding: var(--py) 0;
}
.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.w-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.w-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--petrol), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.w-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.w-card:hover::before { transform: scaleX(1); }

.w-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.w-card__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gray-200);
  letter-spacing: -.02em;
}
.w-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--petrol-pale), var(--mint-pale));
  color: var(--petrol);
  transition: background .3s, color .3s;
}
.w-card:hover .w-card__icon { background: linear-gradient(135deg, var(--petrol), var(--mint)); color: var(--white); }
.w-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--gray-900); margin-bottom: .75rem; }
.w-card p  { font-size: .9375rem; color: var(--gray-600); line-height: 1.75; }


/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services {
  background: var(--petrol-dk);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
}
/* Texte décoratif en filigrane */
.services__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 700;
  color: rgba(255,255,255,.02);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -.02em;
}
.services .s-label { color: var(--mint-lt); }
.services .s-title { color: var(--white); }
.services .s-title strong { color: var(--mint-lt); }
.services .s-sub { color: rgba(255,255,255,.55); }

.svcs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.svc {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background .35s, border-color .35s, transform .35s var(--ease);
}
.svc:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(93,170,138,.35);
  transform: translateY(-6px);
}
.svc__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.svc__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r);
  background: rgba(255,255,255,.07);
  color: var(--mint-lt);
  transition: background .3s, color .3s;
}
.svc:hover .svc__icon { background: var(--mint); color: var(--white); }
.svc__num { font-family: var(--serif); font-size: 2.75rem; font-weight: 300; line-height: 1; color: rgba(255,255,255,.1); }
.svc__title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.svc__text { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.75; flex: 1; margin-bottom: 1.5rem; }
.svc__more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--mint-lt);
  text-transform: uppercase;
  transition: gap .25s, color .25s;
  margin-top: auto;
}
.svc:hover .svc__more { gap: .7rem; color: var(--white); }


/* ─────────────────────────────────────────
   QUI SUIS-JE  (composition 3 photos)
───────────────────────────────────────── */
.about {
  background: var(--cream);
  padding: var(--py) 0;
  overflow: hidden;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* --- Composition photos --- */
.about__photos {
  position: relative;
  height: 580px;
}

/* Photo 2 — grande, à gauche */
.about__p-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 88%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about__p-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
}
.about__p-main:hover img { transform: scale(1.03); }

/* Cadre décoratif bleu pétrole derrière photo 2 */
.about__p-main::before {
  content: '';
  position: absolute;
  inset: -18px -18px 18px 18px;
  border-radius: var(--r-lg);
  background: var(--petrol);
  z-index: -1;
  opacity: .25;
}

/* Photo 3 — petite, superposée à droite-bas */
.about__p-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 52%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--white);
}
.about__p-accent img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
}
.about__p-accent:hover img { transform: scale(1.04); }

/* Carte flottante signature — logo Edenaya */
.about__sig-card {
  position: absolute;
  top: 38%;
  right: -20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.1rem;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  font-size: .78rem;
  font-weight: 600;
  color: var(--petrol);
  animation: floatCard 5s ease-in-out infinite;
}
.about__sig-card img { height: 28px; width: auto; object-fit: contain; }

/* --- Contenu texte --- */
.about__text { display: flex; flex-direction: column; gap: .1rem; }
.about__role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mint);
  margin: .5rem 0 1.25rem;
}
.about__body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.about__pts {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-bottom: 2.5rem;
}
.about__pts li {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .9375rem;
  color: var(--gray-900);
}
.about__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint-pale);
  color: var(--mint);
  flex-shrink: 0;
}
.about__pts strong { color: var(--petrol); }


/* ─────────────────────────────────────────
   TÉMOIGNAGES
───────────────────────────────────────── */
.testi {
  position: relative;
  padding: var(--py) 0;
  overflow: hidden;
}
.testi__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testi__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.testi__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(12,47,69,.94) 0%, rgba(27,79,114,.89) 50%, rgba(82,168,130,.7) 100%);
}
.testi__body { position: relative; z-index: 2; }

/* Slider */
.testi__slider { overflow: hidden; }
.t-card {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--r-lg);
  padding: 3rem 3.5rem;
  max-width: 860px;
  margin: 0 auto;
  animation: revealCard .5s var(--ease) both;
}
.t-card.is-active { display: flex; }

@keyframes revealCard {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t-card__open-quote { color: rgba(255,255,255,.18); flex-shrink: 0; }
.t-card__quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.95);
  line-height: 1.65;
}
.t-card__foot { display: flex; align-items: center; gap: 1rem; margin-top: .5rem; }
.t-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
.t-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-card__avatar--empty {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
}
.t-card__name { display: block; font-style: normal; font-weight: 600; font-size: .9375rem; color: var(--white); }
.t-card__func { display: block; font-size: .8rem; color: rgba(255,255,255,.55); }

/* Contrôles */
.testi__ctrl { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.testi__arr {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  transition: background .25s, transform .25s;
}
.testi__arr:hover { background: rgba(255,255,255,.2); transform: scale(1.06); }
.testi__dots { display: flex; gap: .5rem; }
.testi__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.testi__dot.is-active { background: var(--white); transform: scale(1.3); }


/* ─────────────────────────────────────────
   CALL TO ACTION
───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--petrol-dk) 0%, var(--petrol) 45%, var(--mint) 100%);
  padding: 5.5rem 0;
  overflow: hidden;
  position: relative;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-band__title em { font-style: italic; font-weight: 300; }
.cta-band__sub { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 2rem; }
.cta-band__visual { flex-shrink: 0; opacity: .12; filter: brightness(0) invert(1); width: 200px; animation: floatCard 7s ease-in-out infinite; }
.cta-band__logo { width: 100%; }


/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact { background: var(--white); padding: var(--py) 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* Informations */
.contact__intro { font-size: .9375rem; color: var(--gray-600); line-height: 1.8; margin: 1rem 0 2rem; }
.contact__deets { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact__deets li { display: flex; align-items: flex-start; gap: 1rem; }
.contact__icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--petrol-pale);
  color: var(--petrol);
  flex-shrink: 0;
}
.contact__deet-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: .2rem; }
.contact__deet-val { display: block; font-size: .9375rem; font-weight: 500; color: var(--gray-900); transition: color .25s; }
a.contact__deet-val:hover { color: var(--petrol); }
.contact__socials { display: flex; gap: .75rem; }

/* Formulaire */
.contact__form-box {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 2.75rem;
  border: 1px solid var(--gray-200);
}
.cform { display: flex; flex-direction: column; gap: 1.25rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cform__field { display: flex; flex-direction: column; gap: .35rem; }
.cform__label { font-size: .85rem; font-weight: 500; color: var(--gray-900); }
.cform__label span { color: var(--petrol); }
.cform__input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  resize: none;
}
.cform__input::placeholder { color: var(--gray-400); }
.cform__input:focus { outline: none; border-color: var(--petrol-lt); box-shadow: 0 0 0 3px rgba(27,79,114,.1); }
.cform__input.has-error { border-color: #e53e3e; }
.cform__textarea { min-height: 120px; resize: vertical; }
.cform__err { font-size: .8rem; color: #e53e3e; font-weight: 500; display: block; min-height: 1.25rem; }
.cform__ok {
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: var(--mint-pale);
  color: #276749;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 500;
  border: 1px solid var(--mint-lt);
}
.cform__ok.is-visible { display: flex; }


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--petrol-dk);
  color: rgba(255,255,255,.65);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 2rem 3.5rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer__logo-link { display: inline-flex; }
.footer__logo { height: 46px; width: auto; filter: brightness(0) invert(1); opacity: .85; object-fit: contain; }
.footer__pitch { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.5); max-width: 280px; }
.footer__socials { display: flex; gap: .5rem; }
.footer__col-h { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer__nav-col { }
.footer__nav-list { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav-link { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .25s; }
.footer__nav-link:hover { color: var(--white); }

/* Barre légale */
.footer__legal { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; }
.footer__legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer__legal-inner nav { display: flex; align-items: center; gap: .75rem; }
.footer__legal-inner a { color: rgba(255,255,255,.4); transition: color .25s; }
.footer__legal-inner a:hover { color: rgba(255,255,255,.75); }


/* ═══════════════════════════════════════════
   RESPONSIVE — Tablette (≤ 1100px)
═══════════════════════════════════════════ */
@media (max-width: 1100px) {

  /* Hero */
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: auto; }
  .hero__content { grid-column: 1; padding: calc(var(--hh) + 2.5rem) 2rem 3rem; }
  .hero__content::after { display: none; }
  .hero__content-inner { max-width: 100%; }
  .hero__photo-panel { grid-column: 1; grid-row: 2; height: 460px; }
  .hero__photo-fade { background: linear-gradient(to bottom, var(--cream) 0%, transparent 20%); }
  .hero__badge { left: 50%; transform: translateX(-50%); }
  .hero__deco-line { grid-row: 3; }

  /* Services : 2 colonnes */
  .svcs { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 4rem; }
  .about__photos { height: 420px; }
  .about__sig-card { right: 0; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 3.5rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }

  /* CTA */
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__visual { display: none; }

  /* Why */
  .why__cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  :root { --hh: 64px; --py: 4.5rem; --py-s: 3.5rem; }

  /* Header mobile */
  .header__nav {
    position: fixed;
    inset: var(--hh) 0 0 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
    z-index: 800;
  }
  .header__nav.is-open { opacity: 1; pointer-events: all; }
  .nav__list { flex-direction: column; gap: .25rem; text-align: center; }
  .nav__link { font-size: 1.2rem; padding: .75rem 2.5rem; }
  .burger { display: flex; }
  .header__cta span { display: none; }
  .header__cta { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; }

  /* Hero */
  .hero__title { font-size: clamp(2.25rem, 10vw, 3rem); }
  .hero__photo-panel { height: 300px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .hero__kpis { flex-wrap: wrap; gap: 1.25rem; }
  .hero__badge { bottom: 1rem; font-size: .75rem; }

  /* Services */
  .svcs { grid-template-columns: 1fr; }

  /* About photos */
  .about__photos { height: 320px; }
  .about__p-main { width: 68%; }
  .about__p-accent { width: 50%; height: 48%; }
  .about__sig-card { position: static; margin: 1rem 0 0; animation: none; }

  /* Testimonials */
  .t-card { padding: 2rem 1.75rem; }

  /* Contact form */
  .contact__form-box { padding: 2rem 1.5rem; }
  .cform__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; padding: 3.5rem 2rem 2rem; }
  .footer__brand { grid-column: auto; }
  .footer__legal-inner { flex-direction: column; text-align: center; gap: .75rem; }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Petit mobile (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__title { font-size: 2.1rem; }
  .s-title { font-size: 1.75rem; }
  .t-card { padding: 1.5rem 1.25rem; }
  .t-card__quote { font-size: 1rem; }
  .about__photos { height: 260px; }
  .collab__grid { grid-template-columns: 1fr; }
  .collab__cta { flex-direction: column; text-align: center; }
}


/* ─────────────────────────────────────────
   SECTION COLLABORATIONS & INFLUENCE
───────────────────────────────────────── */
.collabs {
  background: var(--cream);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
}
/* Léger motif de fond décoratif */
.collabs::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,168,130,.07) 0%, transparent 70%);
  pointer-events: none;
}
.collabs::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,114,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Grille 2×2 des univers */
.collab__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.collab-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2.25rem 2rem;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.collab-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--petrol), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.collab-item:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.collab-item:hover::after { transform: scaleX(1); }

/* Numéro décoratif en filigrane */
.collab-item__deco {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(27,79,114,.05);
  user-select: none;
  pointer-events: none;
}

/* Icône */
.collab-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--petrol-pale), var(--mint-pale));
  color: var(--petrol);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.collab-item:hover .collab-item__icon {
  background: linear-gradient(135deg, var(--petrol), var(--mint));
  color: var(--white);
}

.collab-item__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-900);
}

.collab-item__desc {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
}

/* Hashtag pills */
.collab-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem;
}
.ctag {
  display: inline-block;
  padding: .3rem .75rem;
  border-radius: var(--pill);
  background: var(--petrol-pale);
  color: var(--petrol);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .25s, color .25s;
}
.collab-item:hover .ctag { background: var(--mint-pale); color: #1f6645; }

/* Bandeau CTA influenceuse */
.collab__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--petrol-dk) 0%, var(--petrol) 60%, var(--mint) 100%);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.collab__cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.collab__cta-text { display: flex; flex-direction: column; gap: .4rem; }
.collab__cta-text p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.collab__cta-text strong { font-style: italic; font-weight: 600; }
.collab__cta-text span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
}

/* Responsive collabs */
@media (max-width: 1100px) {
  .collab__grid { grid-template-columns: repeat(2, 1fr); }
  .collab__cta { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem; }
}
@media (max-width: 768px) {
  .collab__grid { grid-template-columns: 1fr; }
}
