/* =========================================================
   TALENT CATCHER — Site
   Charte Graphique 2026 / Terracotta Breeze
   ========================================================= */

/* Fonts loaded via <link> in HTML head for parallel loading (no render-blocking @import) */

:root {
  --terracotta:    #C17763;
  --terracotta-2:  #d68d7a;
  --sand:          #CEBDAF;
  --sand-light:    #efe7df;
  --lagoon:        #A0AE9D;
  --rainforest:    #5D7F7A;
  --stellar:       #5D7F7A;
  --stellar-deep:  #2e4751;
  --ivory:         #faf6f1;
  --ink:           #1f2a2e;
  --white:         #ffffff;

  --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 14px;
  --radius-lg: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--ivory);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--terracotta); color: var(--ivory); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----------- TYPO HELPERS ----------- */
.display {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}
.label {
  font-family: var(--f-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.8;
}
.kicker::before {
  content: '';
  width: 28px; height: 1px; background: currentColor;
}
@media (max-width: 540px) {
  .kicker {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    gap: 0;
    white-space: nowrap;
  }
  .kicker::before { display: none; }
}

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1.5px solid currentColor;
  background: transparent;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); transform: translateY(-2px); }
.btn--solid { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.btn--solid:hover { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn--ghost-light { color: var(--ivory); border-color: rgba(250,246,241,0.6); }
.btn--ghost-light:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn .arrow { width: 14px; height: 14px; transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------- HEADER ----------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  color: var(--ivory);
}
.site-header.scrolled {
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 4px 30px rgba(31,42,46,0.06);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand__logo {
  display: block;
  width: 130px;
  height: auto;
  transition: filter 0.4s ease;
}
@media (max-width: 600px) { .brand__logo { width: 110px; } }
/* Logo blanc → noir quand le header passe en mode scrolled (fond ivory) */
.site-header.scrolled .brand__logo { filter: brightness(0); }
.nav-main {
  display: flex; align-items: center; gap: 2.2rem;
  font-size: 0.95rem;
}
.nav-main a {
  position: relative; padding: 0.25rem 0;
}
.nav-main a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 1px; background: currentColor; transition: right 0.35s ease;
}
.nav-main a:hover::after { right: 0; }
.nav-main a[aria-current="page"] { font-weight: 600; }
.nav-main a[aria-current="page"]::after { right: 0; background: currentColor; height: 2px; }
.nav-main__menu a[aria-current="page"] { background: rgba(193,119,99,0.10); color: var(--terracotta); }
@media (max-width: 900px) { .nav-main { display: none; } }

/* Dropdown "Nos programmes" */
.nav-main__group { position: relative; }
.nav-main__group-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-main__caret { font-size: 0.7em; transition: transform 0.25s ease; opacity: 0.7; }
.nav-main__group:hover .nav-main__caret,
.nav-main__group:focus-within .nav-main__caret { transform: rotate(180deg); }
.nav-main__menu {
  position: absolute; top: calc(100% + 14px); left: 0;
  background: var(--ivory); color: var(--ink);
  border-radius: 14px; padding: 10px;
  box-shadow: 0 16px 40px -16px rgba(31,42,46,0.25), 0 0 0 1px rgba(31,42,46,0.06);
  min-width: 280px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.22s ease, visibility 0s linear 0.22s, transform 0.22s ease;
  z-index: 50;
}
.nav-main__group:hover .nav-main__menu,
.nav-main__group:focus-within .nav-main__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.22s ease, visibility 0s, transform 0.22s ease;
}
.nav-main__menu a {
  padding: 10px 14px; border-radius: 10px;
  font-size: 0.92rem; font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-main__menu a::after { display: none; }
.nav-main__menu a:hover { background: rgba(193,119,99,0.08); color: var(--terracotta); }

/* Sous-liens nav mobile */
.nav-mobile__sublinks {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.3rem 0 0.7rem 0.9rem;
  margin-top: -0.4rem;
  border-left: 2px solid rgba(193, 119, 99, 0.25);
  margin-left: 0.3rem;
}
.nav-mobile__links .nav-mobile__sublinks a {
  font-size: 0.95rem !important;
  font-family: var(--f-sans);
  font-weight: 500;
  color: var(--ink);
  opacity: 0.65;
  padding: 0.35rem 0;
  letter-spacing: 0;
  border-bottom: 0 !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile__links .nav-mobile__sublinks a::after { display: none; }
.nav-mobile__links .nav-mobile__sublinks a:hover,
.nav-mobile__links .nav-mobile__sublinks a:focus-visible {
  opacity: 1;
  color: var(--terracotta);
  padding-left: 0.2rem;
}
.nav-mobile__links .nav-mobile__sublinks a[aria-current="page"] {
  opacity: 1;
  color: var(--terracotta);
  font-weight: 600;
}

/* ----------- BURGER MENU (mobile) ----------- */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 80;
  color: inherit;
}
.nav-burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.2s ease, top 0.3s cubic-bezier(.4, 0, .2, 1);
  transform-origin: center;
}
.nav-burger span:nth-child(1) { top: calc(50% - 7px); }
.nav-burger span:nth-child(2) { top: 50%; }
.nav-burger span:nth-child(3) { top: calc(50% + 7px); }
.nav-burger.is-open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { top: 50%; transform: rotate(-45deg); }
.nav-burger:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; border-radius: 8px; }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  /* CTA reste visible mais compact */
  .site-header__cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  .site-header__cta .arrow { width: 14px; height: 14px; }
}
@media (max-width: 420px) {
  .site-header__cta { padding: 0.45rem 0.7rem; font-size: 0.75rem; }
  .site-header__cta .arrow { display: none; }
}

/* Sticky : CTA passe en style ink contrasté quand le header devient ivory */
.site-header.scrolled .site-header__cta {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}
.site-header.scrolled .site-header__cta:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* ----------- DRAWER MOBILE ----------- */
.nav-mobile[hidden] { display: none; }
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}
.nav-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.nav-mobile.is-open { pointer-events: auto; }
.nav-mobile.is-open .nav-mobile__backdrop { opacity: 1; pointer-events: auto; }

.nav-mobile__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 88vw);
  background: var(--ivory);
  padding: 5.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.22, .85, .3, 1);
  box-shadow: -30px 0 80px -30px rgba(31, 42, 46, 0.45);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-mobile.is-open .nav-mobile__panel { transform: translateX(0); }

.nav-mobile__kicker {
  color: var(--terracotta) !important;
  margin-bottom: 0;
}
.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile__links a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(31, 42, 46, 0.1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: color 0.2s ease, padding-left 0.25s ease;
  position: relative;
}
.nav-mobile__links a::after { content: none; display: none; }
.nav-mobile__links a:hover,
.nav-mobile__links a:focus-visible {
  color: var(--terracotta);
  padding-left: 0.4rem;
}
.nav-mobile__links a[aria-current="page"] {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.nav-mobile__links a:hover::after,
.nav-mobile__links a:focus-visible::after {
  opacity: 1;
  transform: translateX(4px);
}

.nav-mobile__cta {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
}

body.nav-open { overflow: hidden; }

/* Burger en couleur cohérente avec scrolled state */
.site-header.scrolled .nav-burger { color: var(--ink); }

/* ----------- HERO ----------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: #C17763;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--gutter) 6rem;
  overflow: hidden;
}
/* Vidéo Remotion : ombre de palmier réelle, animée par le vent.
   Couvre tout le hero, derrière le contenu. Le mp4 est rendu sur fond terracotta
   donc se fond exactement avec .hero { background: #C17763 }. */
.hero__palm-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
  pointer-events: none;
  /* Tant que la vidéo charge, le fond terracotta du hero est visible */
}
@media (prefers-reduced-motion: reduce) {
  .hero__palm-video { display: none; }
  .hero__palm--fallback { display: block !important; }
}
/* Fallback SVG : caché par défaut, affiché si la vidéo ne peut pas se lire
   ou si reduced-motion est actif */
.hero__palm--fallback { display: none; }

/* Ancienne palme SVG (conservée pour fallback / reduced-motion).
   Point d'ancrage en bas-droite (le "pied" de la palme entre dans le visuel). */
.hero__palm {
  position: absolute;
  bottom: -8%;
  right: -12%;
  width: clamp(420px, 65vw, 920px);
  height: auto;
  color: rgba(31, 42, 46, 0.22);   /* ombre projetée sur le terracotta */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  transform-origin: 92% 96%;       /* base de la tige = pivot */
  animation: wind-sway 7s cubic-bezier(0.45, 0.05, 0.4, 0.95) infinite;
  will-change: transform;
  filter: blur(0.4px);
}
/* Mouvement irrégulier de vent : rafales fortes + retours mous, comme une vraie palme */
@keyframes wind-sway {
  0%   { transform: rotate(-2deg)   skewX(0.5deg); }
  12%  { transform: rotate(-3.5deg) skewX(1deg); }
  24%  { transform: rotate(2.8deg)  skewX(-1.2deg); }
  36%  { transform: rotate(-1deg)   skewX(0.4deg); }
  50%  { transform: rotate(4deg)    skewX(-1.6deg); }
  62%  { transform: rotate(1deg)    skewX(-0.4deg); }
  74%  { transform: rotate(-2.5deg) skewX(0.8deg); }
  86%  { transform: rotate(0.5deg)  skewX(-0.2deg); }
  100% { transform: rotate(-2deg)   skewX(0.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__palm { animation: none; transform: rotate(-2deg); }
}
@media (max-width: 700px) {
  .hero__palms { width: 90vw; opacity: 0.7; }
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* --- Animations d'entrée du hero (stagger) --- */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__col-left > * {
  opacity: 0;
  animation: hero-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__col-left .kicker     { animation-delay: 0.10s; }
.hero__col-left .hero__title{ animation-delay: 0.22s; }
.hero__col-left .hero__lede { animation-delay: 0.40s; }
.hero__col-left .hero__ctas { animation-delay: 0.55s; }
.hero__col-left .hero__proof{ animation-delay: 0.70s; }
.hero__col-left .hero__proof li {
  opacity: 0;
  animation: hero-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__col-left .hero__proof li:nth-child(1) { animation-delay: 0.85s; }
.hero__col-left .hero__proof li:nth-child(2) { animation-delay: 0.95s; }
.hero__col-left .hero__proof li:nth-child(3) { animation-delay: 1.05s; }
.hero__col-left .hero__proof li:nth-child(4) { animation-delay: 1.15s; }

/* Collage : fade pur (transforms gérés par JS pour le drag) */
.hero__photo {
  opacity: 0;
  animation: hero-fade 0.7s ease forwards;
}
.hero__photo--team  { animation-delay: 0.55s; }
.hero__photo--main  { animation-delay: 0.75s; }
.hero__photo--happy { animation-delay: 0.95s; }
/* badge animations sont définies plus bas dans la règle principale */

@media (prefers-reduced-motion: reduce) {
  .hero__col-left > *,
  .hero__col-left .hero__proof li,
  .hero__photo,
  .hero__collage__badge {
    opacity: 1 !important;
    animation: none !important;
  }
}
@media (min-width: 1024px) {
  .hero__inner--split { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 4rem; }
}

/* --- Collage photos hero (zone droite) --- */
.hero__col-right { display: block; }
.hero__collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .hero__collage { max-width: 380px; margin: 2rem auto 0; aspect-ratio: 1 / 0.85; }
}
@media (max-width: 600px) {
  .hero__collage { max-width: 340px; aspect-ratio: 1 / 1.15; }
  .hero__photo--main  { top: 0;     right: 4%;  width: 62%; }
  .hero__photo--team  { top: 28%;   left: 0;    width: 56%; bottom: auto; }
  .hero__photo--happy { bottom: 2%; right: 2%;  width: 56%; }
  .hero__collage__badge { width: 22%; left: 26%; }
}
.hero__photo {
  position: absolute;
  margin: 0;
  border-radius: 6px;
  background: var(--ivory);
  padding: 10px 10px 38px; /* style polaroid */
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    4px 8px 14px rgba(0, 0, 0, 0.28),
    0 18px 32px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.hero__photo--main {
  top: 2%;
  right: 8%;
  width: 52%;
  transform: rotate(3deg);
  z-index: 3;
}
.hero__photo--team {
  top: 38%;
  left: 4%;
  width: 57%;
  transform: rotate(-5deg);
  z-index: 5;
}
.hero__photo--happy {
  bottom: calc(6% - 25px);
  right: calc(-22% + 10px);
  width: 60%;
  transform: rotate(4deg);
  z-index: 4;
}
.hero__photo {
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none; /* drag fluide sur tactile */
  transition: box-shadow 0.25s ease;
}
.hero__photo img { pointer-events: none; -webkit-user-drag: none; }
.hero__photo.is-dragging {
  cursor: grabbing;
  transition: none;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    8px 16px 24px rgba(0, 0, 0, 0.36),
    0 28px 48px rgba(0, 0, 0, 0.28);
}
/* Sticker "surprise" caché sous les polaroids — visible en déplaçant les photos */
.hero__collage__surprise {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22%;
  height: auto;
  transform: translate(-50%, -50%) rotate(-8deg);
  z-index: 1; /* sous les polaroids (z-index 2, 3, 4) */
  display: block;
  cursor: pointer;
  user-select: none;
  background: none;
  border: 0;
  padding: 0;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(3px 6px 10px rgba(0, 0, 0, 0.32))
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
  opacity: 0;
  animation: hero-fade 0.8s ease 1.4s forwards;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.hero__collage__surprise img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
  pointer-events: none;
}
.hero__collage__surprise:hover {
  transform: translate(-50%, -50%) rotate(-8deg) scale(1.08);
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(4px 8px 14px rgba(0, 0, 0, 0.4))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
}
.hero__collage__surprise:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 4px;
}

.hero__collage__badge {
  position: absolute;
  top: calc(-5% - 10px);
  left: 30%;
  right: auto;
  width: 19.8%;
  height: auto;
  z-index: 999;
  cursor: pointer;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.28))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
  transform: rotate(0deg);
  transform-origin: 50% 30%;
  opacity: 0;
  animation:
    hero-fade 0.6s ease 1.20s forwards,
    badge-pendulum 3s ease-in-out 1.80s infinite;
  transition: filter 0.3s ease;
}
.hero__collage__badge:hover {
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(3px 6px 10px rgba(0, 0, 0, 0.36))
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}
@keyframes badge-bob {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-9deg) translateY(-8px); }
}
@keyframes badge-pendulum {
  0%, 100% { transform: rotate(-10deg); }
  50%      { transform: rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__collage__badge { animation: none; }
}
.hero__inner .kicker { color: rgba(250,246,241,0.85); }

.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.4vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 1.5rem;
  color: var(--ivory);
}
.hero__title .ital {
  font-style: italic;
  color: #E2D7CF;
  font-weight: 500;
}
.hero__lede {
  max-width: 32rem;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.5;
  color: rgba(250,246,241,0.92);
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__doodles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.doodle { position: absolute; opacity: 0.85; }
.doodle--heart  { top: 18%; right: 14%; width: 76px; color: var(--ivory); animation: drift1 9s ease-in-out infinite; }
.doodle--star   { top: 28%; left: 8%;   width: 48px; color: var(--sand); animation: drift2 11s ease-in-out infinite; }
.doodle--hash   { bottom: 22%; right: 8%; width: 56px; color: var(--lagoon); animation: drift1 13s ease-in-out infinite; }
.doodle--swirl  { bottom: 14%; left: 10%; width: 72px; color: var(--ivory); animation: drift2 10s ease-in-out infinite; }
.doodle--bolt   { top: 48%; right: 28%; width: 38px; color: var(--lagoon); animation: drift1 8s ease-in-out infinite; }
.doodle--sparkle{ top: 60%; left: 24%; width: 44px; color: var(--sand); animation: drift2 12s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(15px,-18px) rotate(8deg); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(-12px,12px) rotate(-6deg); } }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(250,246,241,0.7);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}
.hero__scroll:hover { color: var(--ivory); transform: translateX(-50%) translateY(-3px); }
.hero__scroll::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ----------- MANIFESTO ----------- */
.manifesto {
  background: var(--ivory);
  padding: var(--section-y) var(--gutter);
  text-align: center;
  position: relative;
}
.manifesto__inner { max-width: 60rem; margin: 0 auto; position: relative; z-index: 2; }

/* Sticker aimant : posé en haut-gauche du manifesto, légèrement penché */
.manifesto__sticker {
  position: absolute;
  top: 22%;
  left: -12%;
  width: clamp(70px, 8vw, 110px);
  height: auto;
  z-index: 3;
  transform: rotate(-14deg);
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
  animation: manifesto-magnet 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes manifesto-magnet {
  0%, 100% { transform: rotate(-14deg) translateY(0); }
  50%      { transform: rotate(-10deg) translateY(-10px); }
}
@media (max-width: 900px) {
  .manifesto__sticker { top: 14%; left: 2%; width: 70px; }
}
@media (max-width: 640px) {
  .manifesto__sticker {
    position: static;
    display: block;
    margin: 0 auto 1.25rem;
    width: 64px;
    transform: rotate(-10deg);
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .manifesto__sticker { animation: none; }
}

/* --- Marquee clients (carrousel JS, scroll natif horizontal) --- */
.marquee {
  position: relative;
  margin-top: 6.5rem;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(31, 42, 46, 0.12);
}
.marquee__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.marquee__heart {
  width: clamp(70px, 8vw, 110px);
  height: auto;
  flex-shrink: 0;
  transform-origin: center center;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
  animation: marquee-heart-beat 1.1s ease-in-out infinite;
}
@keyframes marquee-heart-beat {
  0%, 100% { transform: rotate(-14deg) scale(1); }
  15%      { transform: rotate(-14deg) scale(1.22); }
  30%      { transform: rotate(-14deg) scale(1); }
  45%      { transform: rotate(-14deg) scale(1.16); }
  60%      { transform: rotate(-14deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__heart { animation: none; }
}
.marquee__viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y; /* permet scroll vertical de la page, on capte l'horizontal */
  /* Fade sur les bords pour un défilé propre */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee__viewport.is-dragging { cursor: grabbing; user-select: none; }
.marquee__viewport.is-dragging .marquee__list li { pointer-events: none; }
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee__list {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  list-style: none;
  margin: 0;
  padding: 2rem 2.25rem;
  flex-shrink: 0;
}
.marquee__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(96px, 11vw, 140px);
  height: clamp(96px, 11vw, 140px);
  background: #fff;
  border: 3px solid var(--sand, #E2D7CF);
  border-radius: 12px;
  padding: 8px;
  /* effet sticker collé */
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    3px 5px 8px rgba(0, 0, 0, 0.18),
    0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
.marquee__list li:nth-child(odd)  { transform: rotate(-3deg); }
.marquee__list li:nth-child(even) { transform: rotate(3deg); }
.marquee__list li:nth-child(3n)   { transform: rotate(-1deg); }
.marquee__list li:nth-child(4n)   { transform: rotate(2deg); }
.marquee__list li:hover {
  transform: rotate(0deg) scale(1.06);
}
.marquee__list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Tablette : densité ajustée — étendu jusqu'à 1199px pour iPad Air/Pro */
@media (max-width: 1199px) {
  .marquee { margin-top: 4.5rem; padding: 2.25rem 0 0.75rem; }
  .marquee__label { font-size: 0.72rem; letter-spacing: 0.28em; margin-bottom: 1.75rem; }
  .marquee__heart { width: clamp(56px, 7vw, 80px); }
  .marquee__list { gap: 3rem; padding: 1.5rem 1.5rem; }
  .marquee__list li { width: clamp(82px, 14vw, 110px); height: clamp(82px, 14vw, 110px); border-width: 2px; }
}

/* Mobile : compacité maximale */
@media (max-width: 600px) {
  .marquee { margin-top: 3rem; padding: 1.75rem 0 0.5rem; }
  .marquee__label {
    flex-wrap: wrap;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    gap: 0.5rem;
    padding: 0 1rem;
    margin-bottom: 1.25rem;
  }
  .marquee__heart { width: 48px; }
  .marquee__list { gap: 1.75rem; padding: 1rem 1rem; }
  .marquee__list li { width: 78px; height: 78px; padding: 6px; }
}
.manifesto h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 2rem;
  text-wrap: balance;
}
.manifesto h2 em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.manifesto p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink);
  max-width: 44rem;
  margin: 0 auto 1.2rem;
  line-height: 1.65;
  opacity: 0.85;
}
.manifesto__cta { margin-top: 2.25rem; display: flex; justify-content: center; }
.method__cta { margin: 3.5rem auto 0; display: flex; justify-content: center; }
.testimonials__cta { margin: 3rem auto 0; display: flex; justify-content: center; }

/* ----------- MOMENTS (carrousel) ----------- */
.moments {
  background: var(--ivory);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.moments__head {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
  text-align: center;
}
.moments__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.2rem;
  color: var(--ink);
}
.moments__head h2 em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.moments__intro {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(31, 42, 46, 0.78);
}

.moments__carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* Viewport = clip strict, aucune slide voisine ne dépasse */
.moments__viewport {
  overflow: hidden;
  border-radius: 12px;
}
.moments__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.moments__track > .moment-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

/* Slide = pleine largeur, contenu centré dans une scène bornée */
.moment-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  background: transparent;
  min-height: 600px;
}

/* Stage = conteneur du collage, bornée et centrée dans la slide */
.moment-card__stage {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 900px) {
  .moment-card__stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }
}

/* ----- Polaroid ----- */
.moment-card__photo {
  position: relative;
  background: var(--white);
  padding: 14px 14px 56px;
  border-radius: 6px;
  box-shadow:
    0 2px 4px rgba(31, 42, 46, 0.08),
    0 24px 48px -20px rgba(31, 42, 46, 0.35);
  transform: rotate(-2.2deg);
  transition: transform 0.4s ease;
  z-index: 2;
  max-width: 440px;
  width: 100%;
  justify-self: center;
}
.moment-card[data-tilt="right"] .moment-card__photo { transform: rotate(2.2deg); }
.moment-card__photo:hover { transform: rotate(0deg) scale(1.02); }

.moment-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Scotch tape sur le polaroid */
.moment-card__tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px;
  height: 28px;
  background: rgba(193, 119, 99, 0.32);
  border-left: 1px dashed rgba(193, 119, 99, 0.45);
  border-right: 1px dashed rgba(193, 119, 99, 0.45);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 3;
}
.moment-card[data-tilt="right"] .moment-card__tape {
  transform: translateX(-50%) rotate(4deg);
  background: rgba(160, 174, 157, 0.4);
}

/* Légende manuscrite sous le polaroid */
.moment-card__caption {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* Logo entreprise — sticker rond style badge, posé en haut sur la couture photo/post-it */
.moment-card__brand {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 110px;
  height: 110px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 16px;
  box-shadow: 0 10px 24px -8px rgba(31, 42, 46, 0.35);
  transform: translateX(-50%) rotate(8deg);
  z-index: 10;
}
.moment-card[data-tilt="right"] .moment-card__brand {
  transform: translateX(-50%) rotate(-8deg);
}
.moment-card__brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.moment-card__brand--text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.05;
  text-align: center;
  color: var(--ink);
  padding: 0;
}
@media (max-width: 720px) {
  .moment-card__brand {
    width: 80px;
    height: 80px;
    padding: 12px;
    top: -16px;
  }
  .moment-card__brand--text { font-size: 0.95rem; }
}

/* ----- Post-it témoignage ----- */
.moment-card__quote {
  position: relative;
  padding: 1.75rem 1.6rem 1.5rem;
  background: #fff4c2;
  border-radius: 4px;
  box-shadow:
    0 1px 2px rgba(31, 42, 46, 0.06),
    0 16px 36px -16px rgba(31, 42, 46, 0.35);
  transform: rotate(2.5deg);
  transition: transform 0.4s ease;
  max-width: 420px;
  width: 100%;
  z-index: 3;
}
@media (min-width: 900px) {
  .moment-card__stage { gap: 0; }
  .moment-card__photo { justify-self: end; margin-right: -10px; }
  .moment-card__quote { justify-self: start; margin-left: -10px; margin-top: 60px; }
  .moment-card[data-tilt="right"] .moment-card__photo {
    grid-row: 1;
    grid-column: 2;
    justify-self: start;
    margin-right: 0;
    margin-left: -10px;
  }
  .moment-card[data-tilt="right"] .moment-card__quote {
    grid-row: 1;
    grid-column: 1;
    justify-self: end;
    margin-left: 0;
    margin-right: -10px;
  }
}
.moment-card[data-tilt="right"] .moment-card__quote { transform: rotate(-2.5deg); }
.moment-card__quote:hover { transform: rotate(0deg) scale(1.02); z-index: 5; }

/* Couleurs alternées des post-its */
.moment-card__quote--postit-1 { background: #fff4c2; }
.moment-card__quote--postit-2 { background: #ffd9cc; }
.moment-card__quote--postit-3 { background: #d6e7d7; }
.moment-card__quote--postit-4 { background: #fce4b8; }

/* Coin replié */
.moment-card__quote::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
  border-bottom-right-radius: 4px;
}

.moment-card__mark {
  width: 38px;
  height: 30px;
  color: var(--terracotta);
  opacity: 0.7;
  margin-bottom: 0.6rem;
}
.moment-card__quote blockquote {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.moment-card__quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-style: normal;
  border-top: 1px dashed rgba(31, 42, 46, 0.2);
  padding-top: 0.9rem;
}
.moment-card__quote figcaption img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.moment-card__quote figcaption strong {
  display: block;
  font-family: var(--f-sans);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.96rem;
}
.moment-card__client-photo-link {
  display: inline-block;
  line-height: 0;
  border-radius: inherit;
  transition: transform 0.2s ease;
}
.moment-card__client-photo-link:hover { transform: scale(1.05); }

.moment-card__client-name-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.moment-card__client-name-link:hover { color: #0A66C2; }

.moment-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  color: #0A66C2;
  border-radius: 3px;
  transition: transform 0.2s ease;
}
.moment-card__client-name-link .moment-card__linkedin { color: #0A66C2; }
.moment-card__client-name-link:hover .moment-card__linkedin { transform: scale(1.2); }
.moment-card__linkedin svg {
  width: 100%; height: 100%;
  display: block;
}
.moment-card__quote figcaption span {
  display: block;
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ----- Stickers décoratifs flottants ----- */
.moment-card__sticker {
  position: absolute;
  width: 90px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(31, 42, 46, 0.25));
  z-index: 4;
  animation: stickerFloat 6s ease-in-out infinite;
}
.moment-card__sticker[data-heart-burst] {
  pointer-events: auto !important;
  cursor: pointer;
}
/* Stickers : posés en coins extérieurs de la scène, jamais sur le post-it */
.moment-card__sticker--a {
  top: -28px;
  left: -36px;
  width: 110px;
  transform: rotate(-14deg);
  animation-delay: 0s;
}
.moment-card__sticker--b {
  bottom: -70px;
  left: -10px;
  width: 100px;
  transform: rotate(12deg);
  animation-delay: 1.5s;
}
.moment-card[data-tilt="right"] .moment-card__sticker--a {
  left: auto;
  right: -36px;
  transform: rotate(14deg);
}
.moment-card[data-tilt="right"] .moment-card__sticker--b {
  left: auto;
  right: -10px;
  transform: rotate(-12deg);
}

@keyframes stickerFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

/* Sticker YouTube cliquable — clignote pour attirer l'œil */
/* Bouton play YouTube centré sur la photo du polaroid */
.moment-card__youtube {
  position: absolute;
  top: -28px;
  left: -24px;
  z-index: 13;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  pointer-events: auto;
}
.moment-card[data-tilt="right"] .moment-card__youtube {
  left: auto;
  right: -24px;
}
.moment-card__youtube img {
  width: 200px !important;
  max-width: none !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 24px rgba(31, 42, 46, 0.45));
  animation: youtubeBlink 1.6s ease-in-out infinite;
  transition: transform 0.25s ease, filter 0.25s ease;
  pointer-events: none;
  display: block;
}
.moment-card__youtube:hover img {
  animation-play-state: paused;
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 16px 28px rgba(31, 42, 46, 0.55));
}
@keyframes youtubeBlink {
  0%, 100% { transform: scale(1) rotate(-10deg); }
  50%      { transform: scale(1.06) rotate(-10deg); }
}
.moment-card[data-tilt="right"] .moment-card__youtube img {
  animation: youtubeBlinkRight 1.6s ease-in-out infinite;
}
@keyframes youtubeBlinkRight {
  0%, 100% { transform: scale(1) rotate(10deg); }
  50%      { transform: scale(1.06) rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .moment-card__youtube img { animation: none; }
}
@media (max-width: 720px) {
  .moment-card__youtube { top: -16px; left: -12px; }
  .moment-card[data-tilt="right"] .moment-card__youtube { left: auto; right: -12px; }
  .moment-card__youtube img { width: 130px !important; }
}

@media (max-width: 720px) {
  .moment-card { padding: 3rem 1rem 3.5rem; min-height: auto; }
  .moment-card__stage { gap: 1rem; }
  .moment-card__sticker { width: 80px !important; }
  .moment-card__sticker--a { top: -10px; left: 0; }
  .moment-card__sticker--b { bottom: -50px; left: -10px; }
  .moment-card[data-tilt="right"] .moment-card__sticker--a { left: auto; right: 0; }
  .moment-card[data-tilt="right"] .moment-card__sticker--b { left: auto; right: -10px; }
}

.moments__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 12px 30px -14px rgba(31, 42, 46, 0.55);
}
.moments__nav svg { width: 22px; height: 22px; }
.moments__nav:hover { background: var(--terracotta); transform: translateY(-50%) scale(1.05); }
.moments__nav--prev { left: calc(var(--gutter) - 24px); }
.moments__nav--next { right: calc(var(--gutter) - 24px); }
@media (max-width: 720px) {
  .moments__nav { width: 40px; height: 40px; }
  .moments__nav--prev { left: 0.5rem; }
  .moments__nav--next { right: 0.5rem; }
}

.moments__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.moments__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem;
  padding: 0 var(--gutter);
  box-sizing: border-box;
  text-align: center;
}
.moments__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 42, 46, 0.2);
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
  padding: 0;
}
.moments__dot.is-active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 4px;
}

/* Pagination par logos d'entreprises */
.moments__dots:has(.moments__dot--logo) {
  flex-wrap: nowrap;
  gap: 0.55rem;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.moments__dots:has(.moments__dot--logo)::-webkit-scrollbar { display: none; }
.moments__dot--logo { flex-shrink: 0; scroll-snap-align: center; }
.moments__dot--logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(31, 42, 46, 0.1);
  box-shadow: 0 4px 10px -6px rgba(31, 42, 46, 0.18);
  padding: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  opacity: 0.62;
  overflow: hidden;
}
.moments__dot--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.22s ease;
}
.moments__dot--logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -8px rgba(31, 42, 46, 0.32);
}
.moments__dot--logo:hover img,
.moments__dot--logo.is-active img {
  filter: grayscale(0);
}
.moments__dot--logo.is-active {
  opacity: 1;
  width: 60px;
  border-radius: 50%;
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 8px 20px -8px rgba(193, 119, 99, 0.55);
  transform: translateY(-2px) scale(1.08);
}
@media (max-width: 600px) {
  .moments__dot--logo { width: 48px; height: 48px; padding: 6px; }
  .moments__dot--logo.is-active { width: 48px; }
}

/* ----------- METHOD ----------- */
.method {
  background: var(--sand-light);
  padding: var(--section-y) var(--gutter);
  position: relative;
}
.method__head {
  max-width: 1100px;
  margin: 0 auto 4rem;
  text-align: center;
}
.method__title {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  margin: 1rem auto 1.5rem;
  text-wrap: balance;
}
.method__intro {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 auto;
  opacity: 0.85;
}
.method__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 900px) { .method__grid { grid-template-columns: repeat(3, 1fr); } }

.method__grid { perspective: 1400px; }

.pillar {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 480px;
  position: relative;
  overflow: visible;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--pillar-rx, 0deg))
    rotateY(var(--pillar-ry, 0deg))
    translateZ(var(--pillar-tz, 0px));
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
  box-shadow: 0 18px 36px -16px rgba(31, 42, 46, 0.18);
  will-change: transform;
}
.pillar.is-tilting { transition: transform 0.12s ease-out, box-shadow 0.3s ease; }
.pillar:hover {
  --pillar-tz: 14px;
  box-shadow:
    0 30px 60px -22px rgba(31, 42, 46, 0.38),
    0 12px 24px -14px rgba(31, 42, 46, 0.22);
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--pillar-mx, 50%) var(--pillar-my, 50%),
    rgba(255, 255, 255, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; z-index: 2; }
.pillar__sticker { z-index: 5; }
.pillar:hover .pillar__head,
.pillar:hover .pillar__name,
.pillar:hover .pillar__desc {
  transform: translateZ(30px);
}
.pillar:hover .pillar__chips { transform: translateZ(20px); }
.pillar__head, .pillar__name, .pillar__desc, .pillar__chips {
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.pillar:hover .pillar__sticker {
  animation-play-state: paused;
  transform: rotate(8deg) scale(1.08);
}
.pillar--1 { background: var(--lagoon); color: var(--ivory); }
.pillar--2 { background: var(--rainforest); color: var(--ivory); }
.pillar--3 { background: var(--stellar-deep); color: var(--ivory); }

.pillar__sticker {
  position: absolute;
  top: -28px;
  right: -22px;
  width: 110px;
  height: auto;
  z-index: 5;
  transform: rotate(12deg);
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.22))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.16));
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
  animation: pillarStickerFloat 5.5s ease-in-out infinite;
  transform-origin: center center;
}
.pillar--2 .pillar__sticker { animation-delay: -1.8s; animation-duration: 6.2s; }
.pillar--3 .pillar__sticker { animation-delay: -3.4s; animation-duration: 5s; }

@keyframes pillarStickerFloat {
  0%   { transform: rotate(12deg) translateY(0); }
  50%  { transform: rotate(15deg) translateY(-8px); }
  100% { transform: rotate(12deg) translateY(0); }
}

.pillar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 80px; /* dégager pour le sticker */
}
.pillar__index {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.pillar--1 .pillar__index,
.pillar--2 .pillar__index,
.pillar--3 .pillar__index { color: var(--terracotta-2); }
.pillar__icon {
  width: 36px;
  height: 36px;
  opacity: 0.7;
  flex-shrink: 0;
}
.pillar__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 0.4rem;
}
.pillar__desc {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
  flex: 1;
}
.pillar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: transparent;
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
button.chip::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
button.chip:hover::after { opacity: 1; transform: rotate(90deg); }
button.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(31, 42, 46, 0.3);
}
button.chip:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

/* ----------- DEF MODAL ----------- */
.def-modal[hidden] { display: none; }
.def-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.def-modal.is-open { opacity: 1; }
.def-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.55);
  backdrop-filter: blur(4px);
}
.def-modal__dialog {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.45);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
  border-top: 6px solid var(--terracotta);
}
.def-modal.is-open .def-modal__dialog {
  transform: translateY(0) scale(1);
}
.def-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  transition: background 0.15s ease;
}
.def-modal__close:hover { background: rgba(31, 42, 46, 0.08); }
.def-modal__close svg { width: 20px; height: 20px; }
.def-modal__kicker {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
.def-modal__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.def-modal__text {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(31, 42, 46, 0.85);
}

/* ----------- WORD TRIGGER (cliquable inline, neutre) ----------- */
.word-trigger {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline;
}
.word-trigger:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; border-radius: 4px; }

/* ----------- STORY MODAL (manifeste) ----------- */
.story-modal[hidden] { display: none; }
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
}
.story-modal.is-open { opacity: 1; }
.story-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.65);
  backdrop-filter: blur(6px);
}
.story-modal__dialog {
  position: relative;
  background: var(--stellar-deep);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 3rem clamp(1.5rem, 4vw, 3.25rem) 2.5rem;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  border-top: 6px solid var(--terracotta);
}
.story-modal.is-open .story-modal__dialog { transform: translateY(0) scale(1); }
.story-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}
.story-modal__close:hover { background: rgba(255, 255, 255, 0.18); }
.story-modal__close svg { width: 20px; height: 20px; }
.story-modal__kicker {
  display: inline-block;
  color: var(--terracotta-2) !important;
  margin-bottom: 0.6rem;
}
.story-modal h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--ivory);
}
.story-modal p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: rgba(250, 246, 241, 0.85);
}
.story-modal p strong { color: var(--ivory); font-weight: 600; }
.story-modal__final {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem !important;
  margin-top: 1.5rem !important;
  color: var(--ivory) !important;
}
.story-modal__final em { color: var(--terracotta-2); }
.story-modal__signoff {
  font-size: 0.85rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.6) !important;
  margin-top: 0.5rem !important;
}

/* ----------- CTA STICKERS (remplace doodles SVG) ----------- */
.cta__stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.cta-sticker {
  position: absolute;
  width: 110px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
  animation: ctaStickerFloat 6s ease-in-out infinite;
  z-index: 3;
  pointer-events: auto;
}
.cta-sticker--1 { top: 12%;  left: 8%;  width: 130px; transform: rotate(-12deg); animation-delay: 0s;   }
.cta-sticker--2 { top: 18%;  right: 9%; width: 100px; transform: rotate(14deg);  animation-delay: -1.8s; animation-duration: 7s; }
.cta-sticker--3 { bottom: 14%; left: 14%; width: 115px; transform: rotate(8deg); animation-delay: -3.4s; animation-duration: 5.5s; }
@media (max-width: 720px) {
  .cta-sticker { width: 70px !important; }
  .cta-sticker--1 { left: 4%; top: 6%; }
  .cta-sticker--2 { right: 4%; top: 10%; }
  .cta-sticker--3 { left: 6%; bottom: 8%; }
}
@keyframes ctaStickerFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}

/* Magnet sticker — interactive: click to attract team faces */
[data-magnet-attract] { cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; transition: filter .2s ease; }
[data-magnet-attract]:hover { filter: drop-shadow(0 14px 22px rgba(0,0,0,0.35)) brightness(1.05); }
[data-magnet-attract]:focus-visible { outline: 3px solid #fff; outline-offset: 4px; border-radius: 8px; }
[data-magnet-attract].is-attracting { animation: magnetAttractShake .12s linear infinite; }
@keyframes magnetAttractShake {
  0%,100% { translate: 0 0; }
  25% { translate: -2px 1px; }
  50% { translate: 2px -1px; }
  75% { translate: -1px 2px; }
}
/* Pulse halo around magnet during attraction */
.magnet-halo {
  position: fixed; pointer-events: none; z-index: 999;
  border-radius: 9999px;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.65);
  animation: magnetHaloPulse 1.1s ease-out infinite;
}
@keyframes magnetHaloPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.65); opacity: 0.9; }
  100% { box-shadow: 0 0 0 80px rgba(255,255,255,0); opacity: 0; }
}
/* Flying clone of a member photo, traveling toward the magnet */
.magnet-flyer {
  position: fixed; z-index: 998; pointer-events: none;
  border-radius: 9999px; overflow: hidden;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.35), 0 0 0 3px rgba(255,255,255,0.85);
  background: #fff;
  will-change: transform, opacity;
}
.magnet-flyer img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) {
  [data-magnet-attract].is-attracting,
  .magnet-halo { animation: none; }
}

/* Heart burst — sticker becomes interactive, hearts fly out */
[data-heart-burst] { cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; transition: filter .2s ease, transform .2s ease; }
[data-heart-burst]:hover { filter: drop-shadow(0 14px 22px rgba(0,0,0,0.35)) brightness(1.05); }
[data-heart-burst]:focus-visible { outline: 3px solid #fff; outline-offset: 4px; border-radius: 8px; }
[data-heart-burst].is-bursting { animation: heartBurstPump .55s cubic-bezier(.34,1.56,.64,1); }
/* Anime uniquement la propriété `scale` (indépendante de `transform`)
   pour ne pas écraser la rotation existante du sticker. */
@keyframes heartBurstPump {
  0%   { scale: 1; }
  35%  { scale: 1.35; }
  100% { scale: 1; }
}
.heart-particle {
  position: fixed; z-index: 998; pointer-events: none;
  width: var(--size, 28px); height: var(--size, 28px);
  display: block;
  will-change: transform, opacity;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.18));
}
.heart-particle svg { width: 100%; height: 100%; display: block; }
@media (prefers-reduced-motion: reduce) {
  [data-heart-burst].is-bursting { animation: none; }
  .heart-particle { display: none; }
}

/* Idle heartbeat for static coeur stickers (book + moment cards) */
.book-feature__sticker--1 img[src*="coeur"] {
  animation: heart-idle-beat 1.6s ease-in-out infinite;
  transform-origin: center;
}
.moment-card[data-tilt="right"] .moment-card__sticker--a[src*="coeur"] {
  animation: heart-idle-beat-a 1.6s ease-in-out infinite;
}
.moment-card[data-tilt="right"] .moment-card__sticker--b[src*="coeur"] {
  animation: heart-idle-beat-b 1.6s ease-in-out infinite;
}
@keyframes heart-idle-beat {
  0%, 100% { transform: scale(1); }
  15%      { transform: scale(1.18); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.10); }
  60%      { transform: scale(1); }
}
@keyframes heart-idle-beat-a {
  0%, 100% { transform: rotate(14deg) scale(1); }
  15%      { transform: rotate(14deg) scale(1.18); }
  30%      { transform: rotate(14deg) scale(1); }
  45%      { transform: rotate(14deg) scale(1.10); }
  60%      { transform: rotate(14deg) scale(1); }
}
@keyframes heart-idle-beat-b {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  15%      { transform: rotate(-12deg) scale(1.18); }
  30%      { transform: rotate(-12deg) scale(1); }
  45%      { transform: rotate(-12deg) scale(1.10); }
  60%      { transform: rotate(-12deg) scale(1); }
}
[data-heart-burst].is-bursting { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .book-feature__sticker--1 img[src*="coeur"],
  .moment-card__sticker--a[src*="coeur"],
  .moment-card__sticker--b[src*="coeur"] { animation: none; }
}
.pillar--1 .chip,
.pillar--2 .chip,
.pillar--3 .chip {
  background: rgba(250, 246, 241, 0.08);
  border-color: rgba(250, 246, 241, 0.4);
  color: var(--ivory);
}
@media (prefers-reduced-motion: reduce) {
  .pillar:hover .pillar__sticker { transform: rotate(12deg); }
}

/* ----------- CLIENTS ----------- */
.clients {
  background: var(--ivory);
  padding: var(--section-y) var(--gutter);
  text-align: center;
}
.clients__heart { width: 38px; height: 38px; margin: 0 auto 1rem; color: var(--terracotta); }
.clients h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.clients h2 em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.clients__logos {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  align-items: center;
  justify-items: center;
  opacity: 0.7;
}
@media (min-width: 700px) { .clients__logos { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .clients__logos { grid-template-columns: repeat(8, 1fr); gap: 2rem; } }

.clients__logos > * {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  text-align: center;
  color: var(--ink);
  letter-spacing: 0.05em;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.3s, filter 0.3s;
}
.clients__logos > *:hover { opacity: 1; filter: grayscale(0); }

/* ----------- STORY (long manifesto on stellar bg) ----------- */
.story {
  background: var(--stellar);
  color: var(--ivory);
  padding: var(--section-y) var(--gutter);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 14% 22%, rgba(255,255,255,0.55) 50%, transparent 100%),
    radial-gradient(1.4px 1.4px at 38% 75%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 72% 18%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1.2px 1.2px at 88% 65%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.4) 50%, transparent 100%);
  pointer-events: none;
}
.story__inner {
  position: relative;
  max-width: 50rem; margin: 0 auto;
  text-align: center;
}
.story h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.story p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  opacity: 0.92;
}
.story p strong { color: var(--terracotta-2); font-weight: 500; }
.story__final {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.3;
  margin-top: 2.5rem;
}
.story__final em { color: var(--terracotta-2); font-style: italic; }
.story__signoff {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  opacity: 0.8;
}

/* ----------- CTA ----------- */
.cta {
  background: var(--terracotta);
  color: var(--ivory);
  padding: var(--section-y) var(--gutter);
  text-align: center;
  position: relative;
  overflow: visible;
}
.cta__doodles { position: absolute; inset: 0; pointer-events: none; opacity: 0.7; }
.cta__doodles .doodle { color: var(--ivory); opacity: 0.5; }
.cta__doodles .doodle--heart  { top: 12%; left: 10%; width: 56px; }
.cta__doodles .doodle--star   { top: 18%; right: 14%; width: 40px; }
.cta__doodles .doodle--hash   { bottom: 18%; left: 12%; width: 50px; }
.cta__doodles .doodle--swirl  { bottom: 14%; right: 10%; width: 60px; }
.cta__doodles .doodle--bolt   { top: 50%; right: 28%; width: 36px; }
.cta__doodles .doodle--sparkle{ top: 65%; left: 22%; width: 38px; }

.cta__inner { position: relative; z-index: 2; max-width: 50rem; margin: 0 auto; }
.cta h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta h2 em { font-style: italic; color: var(--ivory); opacity: 0.7; }
.cta p { font-size: 1.1rem; opacity: 0.92; max-width: 36rem; margin: 0 auto 2.5rem; line-height: 1.6; }

/* ----------- FOOTER ----------- */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 5rem var(--gutter) 2rem;
  position: relative;
  overflow: hidden;
}
.footer__top {
  max-width: 1300px; margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 800px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer__brand-block {
  display: flex; flex-direction: column; gap: 1.5rem;
  max-width: 26rem;
}
.footer__logo {
  width: 240px; height: auto;
  display: block;
}
.footer__tagline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
}
.footer__tagline em { font-style: italic; color: var(--terracotta-2); }
.footer__col h5 {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-size: 0.95rem; transition: color 0.25s; }
.footer__col a:hover { color: var(--terracotta-2); }

.footer__giant {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(4rem, 18vw, 18rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 4rem 0 -2rem;
  background: linear-gradient(180deg, var(--terracotta-2) 0%, transparent 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.footer__bottom {
  max-width: 1300px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,246,241,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.82rem;
  opacity: 0.55;
  text-align: center;
}

/* ----------- HERO PROOF (under hero) ----------- */
.hero__proof {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  margin-top: 4rem;
  max-width: 720px;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,246,241,0.18);
}
@media (min-width: 700px) {
  .hero__proof {
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    max-width: 1100px;
    align-items: center;
    gap: 1.25rem 1.75rem;
  }
}
.hero__proof li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}
.hero__proof li > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.hero__proof li > a:hover { transform: translateY(-2px); }
.hero__proof li > a:focus-visible { outline: 2px solid var(--ivory, #faf6f1); outline-offset: 4px; border-radius: 6px; }
.hero__proof li > a > div,
.hero__proof li > div {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.2rem;
  min-width: 0;
}
.hero__proof li strong { display: block !important; }
.hero__proof li span { display: block !important; max-width: none !important; }
.hero__proof__formes .hero__proof__sticker { transform: rotate(-4deg); }
.hero__proof__formes .hero__proof__sticker:hover { transform: rotate(-1deg) scale(1.05); }

/* Compensation des paddings internes des PNG pour que l'artwork visible
   ait la même taille perçue : LinkedIn n'a presque pas de marge
   (artwork ~95% du canvas) → on le réduit. Google et Formes ont plus
   de blanc autour (artwork ~70-80%) → on les agrandit. */
.hero__proof__linkedin .hero__proof__sticker { width: 56px; height: 56px; }
.hero__proof__google .hero__proof__sticker  { width: 60px; height: 60px; }
.hero__proof__formes .hero__proof__sticker  { width: 78px; height: 78px; }
.hero__proof__sticker {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  /* Effet sticker collé : ombre dure courte (contact) + ombre douce diffuse (lift) */
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.28))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}
.hero__proof__sticker:hover { transform: rotate(-2deg) scale(1.05); }
.hero__proof__google .hero__proof__sticker { transform: rotate(5deg); }
.hero__proof__google .hero__proof__sticker:hover { transform: rotate(2deg) scale(1.05); }
.hero__proof__top50 .hero__proof__sticker {
  width: 72px;
  height: 72px;
  transform: rotate(4deg);
}
.hero__proof__top50 .hero__proof__sticker:hover { transform: rotate(1deg) scale(1.05); }
@media (max-width: 699px) {
  .hero__proof__sticker { width: 48px; height: 48px; }
}
.hero__proof strong {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  letter-spacing: -0.01em;
  color: var(--ivory);
  line-height: 1;
  white-space: nowrap;
}
.hero__proof span {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
  opacity: 0.8;
}

/* Tablette (700px – 1199px) : version compactée, span sur 2 lignes
   Range étendu pour couvrir iPad Air/Pro en paysage (1024–1180px) */
@media (min-width: 700px) and (max-width: 1199px) {
  .hero__proof {
    margin-top: 3rem;
    padding-top: 1.5rem;
    gap: 1rem 1.25rem;
  }
  .hero__proof li { gap: 0.55rem; }
  .hero__proof li > div { gap: 0.15rem; }
  .hero__proof__sticker { width: 54px; height: 54px; }
  .hero__proof__linkedin .hero__proof__sticker { width: 42px; height: 42px; }
  .hero__proof__google .hero__proof__sticker  { width: 46px; height: 46px; }
  .hero__proof__formes .hero__proof__sticker  { width: 58px; height: 58px; }
  .hero__proof__top50 .hero__proof__sticker   { width: 54px; height: 54px; }
  .hero__proof strong { font-size: clamp(0.95rem, 1.2vw, 1.15rem); }
  .hero__proof span {
    font-size: 0.7rem;
    max-width: 7ch;
    display: block;
  }
}

/* ----------- STATS BAND ----------- */
.stats {
  background: var(--terracotta);
  color: var(--ivory);
  padding: 3rem var(--gutter);
}
.stats__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 800px) { .stats__inner { grid-template-columns: repeat(4, 1fr); } }
.stat strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* ----------- OFFER ----------- */
.offer {
  background: #496670;
  color: var(--ivory);
  padding: var(--section-y) var(--gutter);
}
.offer .watermark { color: rgba(250, 246, 241, 0.06); }
.offer__head {
  max-width: 1100px;
  margin: 0 auto 4rem;
  text-align: center;
}
.offer__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
  color: var(--ivory);
}
.offer__head h2 em { color: var(--terracotta-2); font-style: italic; font-weight: 500; }
.offer__intro {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(250, 246, 241, 0.82);
}
.offer__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) { .offer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

/* ============================================================
   OFFER CARDS — design interactif, contraste fort sur fond #496670
   ============================================================ */
.offer-card {
  position: relative;
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 48px -20px rgba(0, 0, 0, 0.45),
    0 8px 18px -8px rgba(0, 0, 0, 0.3);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(193, 119, 99, 0.0) 0%, rgba(193, 119, 99, 0.0) 60%, rgba(193, 119, 99, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 36px 60px -24px rgba(0, 0, 0, 0.55),
    0 12px 24px -10px rgba(0, 0, 0, 0.35);
}
.offer-card:hover::before { opacity: 1; }

/* Variante "accent" : bordure terracotta + fond crème pour la 2ᵉ */
.offer-card--accent {
  background: var(--sand-light);
  border-color: rgba(193, 119, 99, 0.18);
}

.offer-card__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.18;
  position: absolute;
  top: 1rem;
  left: 1.75rem;
  pointer-events: none;
  z-index: 0;
}
.offer-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
.offer-card__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.offer-card__icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 14px;
  background: var(--terracotta);
  color: var(--ivory);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), background 0.3s ease;
}
.offer-card__icon--sticker {
  width: 120px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transform: rotate(-6deg);
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
}
.offer-card:hover .offer-card__icon--sticker {
  transform: rotate(6deg) scale(1.08);
}
.offer-card:hover .offer-card__icon {
  transform: rotate(-8deg) scale(1.06);
}
.offer-card__tagline {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stellar-deep);
  background: rgba(46, 71, 81, 0.08);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .offer-card__tagline {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.7rem;
  }
}
.offer-card__recommended {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  background: transparent;
  padding: 0;
}
.offer-card__recommended-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(193, 119, 99, 0.18);
  animation: offer-recommended-dot 2.4s ease-in-out infinite;
}
@keyframes offer-recommended-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(193, 119, 99, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(193, 119, 99, 0.05); }
}
@media (prefers-reduced-motion: reduce) {
  .offer-card__recommended-dot { animation: none; }
}

.offer-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
  margin-top: 0.25rem;
}
.offer-card__title em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.offer-card__lede {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--stellar-deep);
}

/* ----- TABS ----- */
.offer-tabs {
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem;
  background: rgba(46, 71, 81, 0.07);
  border-radius: 999px;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}
.offer-tabs__btn {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.6rem 0.5rem;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--stellar-deep);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
@media (max-width: 540px) {
  .offer-tabs__btn { font-size: 0.72rem; padding: 0.55rem 0.4rem; }
}
.offer-tabs__btn:hover {
  background: rgba(193, 119, 99, 0.08);
  color: var(--terracotta);
}
.offer-tabs__btn.is-active {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 6px 14px -6px rgba(31, 42, 46, 0.45);
}
.offer-card--accent .offer-tabs__btn.is-active {
  background: var(--terracotta);
}
.offer-tabs__btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.offer-tabs__panels {
  position: relative;
  z-index: 1;
  min-height: 200px;
}
.offer-tabs__panel {
  animation: offer-fade 0.35s ease both;
}
.offer-tabs__panel[hidden] { display: none; }

@keyframes offer-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .offer-tabs__panel { animation: none; }
}

.offer-card__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: var(--ink);
}
.offer-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.45;
}
.offer-card__list .check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--ivory);
}

.offer-card__meta-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.offer-card__meta-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--ink);
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(46, 71, 81, 0.18);
}
.offer-card__meta-list li:last-child { border-bottom: 0; }
.offer-card__meta-list strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.95rem;
}

.offer-tabs__panel p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--stellar-deep);
  margin-bottom: 0.75rem;
}
.offer-tabs__panel p:last-child { margin-bottom: 0; }

.offer-card__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  position: relative;
  z-index: 1;
}
.offer-card__cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--ivory);
}
.offer-card--accent .offer-card__cta {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.offer-card--accent .offer-card__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
}

/* ----------- TEAM ----------- */
.team {
  background: var(--ivory);
  padding: var(--section-y) var(--gutter);
}
.team__head {
  max-width: 1100px;
  margin: 0 auto 4rem;
  text-align: center;
}
.team__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}
.team__head em { color: var(--terracotta); font-style: italic; font-weight: 500; }

.team__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.5rem 2rem;
}
@media (min-width: 600px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }

.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: 0 1rem;
}

/* Cercle photo : double anneau (couleur + ivory) via box-shadow */
.member__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--bg, var(--terracotta));
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  display: block;
  box-shadow:
    0 0 0 6px var(--ivory),
    0 0 0 8px var(--bg, var(--terracotta)),
    0 18px 40px -18px rgba(31, 42, 46, 0.4);
  perspective: 1200px;
}
button.member__photo {
  cursor: pointer;
  font: inherit;
  color: inherit;
}
button.member__photo::after {
  content: "↻";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  box-shadow: 0 0 0 3px var(--ivory);
  transition: transform 0.4s ease, background 0.2s ease;
  z-index: 6;
}
button.member__photo:hover::after { background: var(--terracotta); transform: rotate(180deg); }
.member:hover .member__photo {
  transform: translateY(-6px) rotate(-2deg) scale(1.03);
  box-shadow:
    0 0 0 6px var(--ivory),
    0 0 0 12px var(--bg, var(--terracotta)),
    0 26px 50px -18px rgba(31, 42, 46, 0.45);
}

/* Pour les photos non-flip (div simple) */
.member__photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.member:hover .member__photo > img { transform: scale(1.05); }

/* Conteneur 3D pour le flip */
.member__photo__faces {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
  display: block;
}
.member__photo.is-flipped .member__photo__faces { transform: rotateY(180deg); }
.member__photo__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: block;
}
.member__photo__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.member:hover .member__photo__face--front img,
.member:hover .member__photo__face--back img { transform: scale(1.05); }
.member__photo__face--back { transform: rotateY(180deg); }

.member figcaption {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}
.member__role {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.85rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.85rem;
}
.member__role::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  opacity: 0.5;
}
.member__bio {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 1rem;
  max-width: 28ch;
}
.member__social {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all 0.25s;
}
.member__social svg { width: 16px; height: 16px; }
.member__social:hover { background: var(--terracotta); color: var(--ivory); border-color: var(--terracotta); }
.member__socials { display: inline-flex; gap: 0.5rem; }

/* ----------- TESTIMONIALS ----------- */
.testimonials {
  background: var(--sand-light);
  padding: var(--section-y) var(--gutter);
}
.testimonials__head {
  max-width: 1100px; margin: 0 auto 4rem; text-align: center;
}
.testimonials__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}
.testimonials__head em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.testimonials__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
.quote-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.4s, box-shadow 0.4s;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(31,42,46,0.08); }
.quote-card__mark {
  width: 48px; height: 38px;
  color: var(--sand);
}
.quote-card blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.4;
  letter-spacing: -0.005em;
  font-weight: 500;
  flex: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31,42,46,0.1);
}
.quote-card figcaption > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.quote-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--ivory), 0 0 0 4px rgba(193, 119, 99, 0.4);
}
.quote-card figcaption strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.quote-card figcaption span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* Grille 6 témoignages : 2 colonnes desktop, 1 mobile, tailles réduites, hauteur uniforme */
.testimonials__grid--6 { gap: 1.25rem; perspective: 1600px; grid-auto-rows: 1fr; }
@media (min-width: 700px) { .testimonials__grid--6 { grid-template-columns: 1fr 1fr; } }

/* La carte devient un conteneur 3D transparent ; le visuel est porté par les faces */
.testimonials__grid--6 .quote-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: block;
  transition: none;
  height: 100%;
  min-height: 320px;
}
.testimonials__grid--6 .quote-card:hover { transform: none; box-shadow: none; }
.testimonials__grid--6 .quote-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.testimonials__grid--6 .quote-card.is-flipping .quote-card__inner {
  transform: rotateY(180deg);
}

.testimonials__grid--6 .quote-card__face {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.testimonials__grid--6 .quote-card__face--front {
  position: absolute;
  inset: 0;
}
.testimonials__grid--6 .quote-card__face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}

.testimonials__grid--6 .quote-card__mark { width: 36px; height: 28px; color: var(--sand); }
.testimonials__grid--6 .quote-card blockquote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(0.95rem, 0.95vw, 1.05rem);
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonials__grid--6 .quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(31,42,46,0.1);
}
.testimonials__grid--6 .quote-card figcaption > div { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonials__grid--6 .quote-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--ivory), 0 0 0 4px rgba(193, 119, 99, 0.4);
}
.testimonials__grid--6 .quote-card figcaption strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.95rem;
}
.testimonials__grid--6 .quote-card figcaption span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__grid--6 .quote-card__inner { transition: opacity 0.4s ease; }
  .testimonials__grid--6 .quote-card.is-flipping .quote-card__inner { transform: none; opacity: 0; }
}

/* ----------- MEDIAS ----------- */
.medias {
  background: var(--ivory);
  padding: var(--section-y) var(--gutter);
}
.medias__head {
  max-width: 1100px; margin: 0 auto 4rem; text-align: center;
}
.medias__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}
.medias__head em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.medias__intro {
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.6;
}

/* Stats row — version avec stickers (style hero) */
.medias__proof {
  list-style: none;
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
  padding: 0;
}
@media (min-width: 800px) { .medias__proof { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.medias__proof__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
}
.medias__proof__item > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.medias__proof__item strong {
  font-family: var(--f-sans);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: -0.01em;
  color: var(--terracotta);
  line-height: 1.05;
}
.medias__proof__item span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  font-weight: 500;
}
.medias__proof__sticker {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.18))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}
.medias__proof__item:hover .medias__proof__sticker { transform: rotate(-2deg) scale(1.06); }
.medias__proof__linkedin .medias__proof__sticker { width: 50px; height: 50px; }
.medias__proof__newsletter .medias__proof__sticker { width: 64px; height: 64px; transform: rotate(-4deg); }
.medias__proof__newsletter:hover .medias__proof__sticker { transform: rotate(-1deg) scale(1.06); }
.medias__proof__podcast .medias__proof__sticker { width: 60px; height: 60px; transform: rotate(5deg); }
.medias__proof__podcast:hover .medias__proof__sticker { transform: rotate(2deg) scale(1.06); }
.medias__proof__top50 .medias__proof__sticker { transform: rotate(4deg); }
.medias__proof__top50:hover .medias__proof__sticker { transform: rotate(1deg) scale(1.06); }

/* Featured: dernier média posté */
.featured-media {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1300px;
  margin: 0 auto 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(31, 42, 46, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: inherit;
  border: 1px solid rgba(31, 42, 46, 0.08);
}
@media (min-width: 900px) { .featured-media { grid-template-columns: 1.25fr 1fr; } }
.featured-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px -28px rgba(31, 42, 46, 0.4);
}
.featured-media__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
}
.featured-media__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-media:hover .featured-media__cover img { transform: scale(1.04); }
.featured-media__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--ivory);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, background 0.3s ease;
}
.featured-media__play svg { width: 38px; height: 38px; margin-left: 4px; }
.featured-media:hover .featured-media__play { transform: translate(-50%, -50%) scale(1.08); background: var(--ink); }
.featured-media__duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(31, 42, 46, 0.78);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.featured-media__body {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.featured-media__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
}
.featured-media__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}
.featured-media__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.featured-media__meta {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.78;
}
.featured-media__meta em { font-style: italic; color: var(--terracotta); }

/* ===== ZONE BLOG ===== */
.blog-zone {
  max-width: 1300px;
  margin: 4rem auto 4.5rem;
}
.blog-zone__head {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.blog-zone__head .label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
}
.blog-zone__head h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 28ch;
}
.blog-zone__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .blog-zone__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-zone__grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(31, 42, 46, 0.08);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -22px rgba(31, 42, 46, 0.32);
  border-color: rgba(193, 119, 99, 0.3);
}
.blog-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand-light);
}
.blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover .blog-card__cover img { transform: scale(1.06); }
.blog-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  z-index: 2;
  transition: background 0.3s ease;
}
.blog-card:hover .blog-card__num { background: var(--terracotta); }
.blog-card__new {
  position: absolute;
  top: 14px;
  left: calc(14px + 4.5rem);
  background: var(--terracotta);
  color: var(--ivory);
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 10px -2px rgba(193, 119, 99, 0.5);
  animation: blog-new-pulse 2.4s ease-in-out infinite;
}
@keyframes blog-new-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .blog-card__new { animation: none; }
}

.blog-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.blog-card__cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
}
.blog-card h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  flex: 1;
}
.blog-card__date {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.6;
  font-weight: 500;
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-card__date::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
}

.blog-zone__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ===== LAME LIVRE (book-feature) ===== */
.book-feature {
  position: relative;
  background: linear-gradient(180deg, #efe7df 0%, #fde2d6 55%, #f4ccbb 100%);
  padding: var(--section-y) var(--gutter);
  overflow: visible;
}
.book-feature__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .book-feature__inner { grid-template-columns: 1fr 1.05fr; }
}

.book-feature__visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.book-feature__cover {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -20px rgba(31, 42, 46, 0.45),
    0 12px 24px -10px rgba(193, 119, 99, 0.35);
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.book-feature:hover .book-feature__cover { transform: rotate(0deg) scale(1.02); }

/* Médaillon auteurs flottant */
.book-feature__authors {
  position: absolute;
  bottom: -12px;
  left: -28px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 6px var(--ivory),
    0 0 0 8px var(--terracotta),
    0 18px 36px -14px rgba(31, 42, 46, 0.45);
  display: grid;
  place-items: center;
  z-index: 3;
  transform: rotate(-6deg);
  animation: authorsFloat 6.5s ease-in-out infinite;
  margin: 0;
  /* overflow:visible pour laisser le caption dépasser ; image clippée via clip-path */
}
.book-feature__authors__photo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.book-feature__authors img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
  transform: scale(1.45);
  transform-origin: center 40%;
}
.book-feature__authors figcaption {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) rotate(6deg);
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.book-feature__authors figcaption span {
  font-style: normal;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-2);
  display: none;
}

@media (min-width: 600px) {
  .book-feature__authors {
    width: 190px; height: 190px;
    bottom: -28px; left: -42px;
  }
}
@media (max-width: 480px) {
  .book-feature__authors {
    width: 120px; height: 120px;
    bottom: -8px; left: -10px;
  }
  .book-feature__authors figcaption { font-size: 0.7rem; padding: 0.28rem 0.55rem; bottom: 8px; }
}

@keyframes authorsFloat {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-10px); }
}
/* Médaille Best-seller : sticker rond terracotta + double anneau ivoire */
.book-feature__badge {
  position: absolute;
  top: 1rem;
  right: -1.25rem;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--ivory);
  display: grid;
  place-items: center;
  transform: rotate(-10deg);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    3px 6px 10px rgba(0, 0, 0, 0.25),
    0 14px 26px rgba(0, 0, 0, 0.18);
  z-index: 5;
  animation: badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}
.book-feature__badge__ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  border: 1.5px dashed rgba(250, 246, 241, 0.6);
  text-align: center;
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1;
  padding: 0 6px;
}
.book-feature__badge__star {
  width: 10px;
  height: 10px;
  color: var(--ivory);
  opacity: 0.9;
}
.book-feature__badge__top {
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.005em;
  line-height: 1;
}
.book-feature__badge__bottom {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.9;
}
.book-feature__badge:hover {
  transform: rotate(-4deg) scale(1.05);
  transition: transform 0.3s ease;
}
@keyframes badge-pop {
  0%   { transform: rotate(-10deg) scale(0); opacity: 0; }
  100% { transform: rotate(-10deg) scale(1); opacity: 1; }
}
@media (max-width: 720px) {
  .book-feature__badge { width: 78px; height: 78px; top: 0.5rem; right: -0.5rem; }
  .book-feature__badge__top { font-size: 0.9rem; }
  .book-feature__badge__bottom { font-size: 0.55rem; letter-spacing: 0.18em; }
  .book-feature__badge__star { width: 11px; height: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .book-feature__badge { animation: none; }
}

.book-feature__content { display: flex; flex-direction: column; gap: 1.25rem; }
.book-feature__kicker { color: var(--terracotta) !important; }
.book-feature__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.book-feature__title em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.book-feature__lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.85;
  max-width: 38rem;
}
.book-feature__lede strong { color: var(--terracotta); font-weight: 600; }

.book-feature__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin: 0.5rem 0;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(193, 119, 99, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
@media (min-width: 600px) { .book-feature__bullets { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; } }
.book-feature__bullets li {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.book-feature__bullets strong {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--terracotta);
  line-height: 1.1;
}

.book-feature__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

/* CTA Amazon : style sticker orange officiel */
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.6rem;
  background: #FF9902;
  color: #111;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 8px 18px -8px rgba(255, 153, 0, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-amazon:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 14px 24px -8px rgba(255, 153, 0, 0.65),
    0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-amazon:active { transform: translateY(0); }
.btn-amazon__logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 7px;
}
@media (max-width: 720px) {
  .btn-amazon { width: 100%; justify-content: center; }
}

.book-feature__sticker {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 8px 18px rgba(31, 42, 46, 0.25));
  animation: stickerFloat 6s ease-in-out infinite;
}
.book-feature__sticker:has([data-heart-burst]) { pointer-events: auto; }
.book-feature__sticker img[data-heart-burst] {
  pointer-events: auto;
  cursor: pointer;
  width: 100%; height: auto;
  display: block;
}
.book-feature__sticker img { width: 100%; height: auto; display: block; }
.book-feature__sticker--1 { top: 8%; left: 4%; width: 100px; transform: rotate(-12deg); animation-delay: 0s; }
.book-feature__sticker--2 { bottom: 12%; right: 5%; width: 90px; transform: rotate(14deg); animation-delay: -2s; animation-duration: 7s; }
@media (max-width: 720px) {
  .book-feature__sticker--1 { width: 60px; top: 4%; left: 2%; }
  .book-feature__sticker--2 { width: 55px; bottom: 4%; right: 2%; }
}

/* Card blog avec articles */
.media-card--blog {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.media-card__header { display: flex; flex-direction: column; gap: 0.4rem; }
.media-card--blog h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.media-card__posts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.media-card__posts a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.media-card__posts a:hover { background: var(--sand-light); transform: translateX(3px); }
.media-card__posts img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--sand-light);
}
.media-card__posts span {
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
}
.media-card__posts em {
  font-style: italic;
  color: var(--terracotta);
  margin-right: 0.3rem;
  font-weight: 600;
}

/* ===== ZONE LINKEDIN — canal prioritaire ===== */
.linkedin-zone {
  position: relative;
  max-width: 1300px;
  margin: 4.5rem auto;
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  color: var(--ivory);
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  isolation: isolate;
}
@media (min-width: 900px) {
  .linkedin-zone { grid-template-columns: auto 1fr; }
}
.linkedin-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Stickers décoratifs */
.linkedin-zone__sticker {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
  animation: stickerFloat 6s ease-in-out infinite;
}
.linkedin-zone__sticker--1 { top: -22px; right: 8%; width: 110px; transform: rotate(14deg); animation-delay: -2s; }
.linkedin-zone__sticker--2 { bottom: -20px; left: 6%; width: 90px;  transform: rotate(-12deg); animation-delay: 0s; }
.linkedin-zone__sticker img { width: 100%; height: auto; display: block; }
@media (max-width: 720px) {
  .linkedin-zone__sticker--1 { width: 70px; right: 4%; top: -12px; }
  .linkedin-zone__sticker--2 { width: 60px; left: 4%; bottom: -12px; }
}

/* Visuel: photo + handle */
.linkedin-zone__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.linkedin-zone__photo {
  position: relative;
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.95),
    0 0 0 8px rgba(10, 102, 194, 0.5),
    0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.linkedin-zone__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.linkedin-zone:hover .linkedin-zone__photo img { transform: scale(1.05); }
.linkedin-zone__badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: #0a66c2;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.3), 0 8px 18px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.linkedin-zone__badge svg { width: 30px; height: 30px; fill: currentColor; }
.linkedin-zone__handle {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Content */
.linkedin-zone__content { display: flex; flex-direction: column; gap: 1.25rem; }
.linkedin-zone__kicker {
  color: rgba(255, 255, 255, 0.85) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.linkedin-zone__content h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
  text-wrap: balance;
}
.linkedin-zone__content h3 em {
  font-style: italic;
  color: #ffd9cc;
  font-weight: 500;
}
.linkedin-zone__content > p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

/* Points clés */
.linkedin-zone__points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0.5rem 0 0.5rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
@media (min-width: 700px) { .linkedin-zone__points { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.linkedin-zone__points li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  padding-left: 1.4rem;
}
.linkedin-zone__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd9cc;
  box-shadow: 0 0 0 3px rgba(255, 217, 204, 0.18);
}
@media (min-width: 700px) {
  .linkedin-zone__points li {
    padding-left: 0;
    padding-top: 0.5rem;
    border-top: 2px solid rgba(255, 217, 204, 0.6);
  }
  .linkedin-zone__points li::before { display: none; }
}
.linkedin-zone__points strong {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ivory);
  line-height: 1.1;
}
.linkedin-zone__points span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

/* CTAs */
.linkedin-zone__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.linkedin-zone__cta-primary {
  background: var(--white);
  color: #0a66c2;
  border-color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.linkedin-zone__cta-primary:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.linkedin-zone__cta-icon { width: 20px; height: 20px; fill: currentColor; }
.linkedin-zone__cta-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ivory);
}
.linkedin-zone__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--ivory);
  color: var(--ivory);
}

/* ===== Section podcasts visuels ===== */
.medias__podcasts {
  max-width: 1300px;
  margin: 2.5rem auto 0;
}
.medias__podcasts__head--top {
  max-width: 1300px;
  margin: 0 auto 2rem;
}

/* ===== Latest media cards (home — derniers contenus depuis le CMS) =====
   Calque le design des cards de la page Médias et Actu. */
.latest-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 2.5vw, 2rem);
}
@media (min-width: 600px)  { .latest-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .latest-cards { grid-template-columns: repeat(4, 1fr); } }

.latest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(31,42,46,0.04), 0 12px 28px -18px rgba(31,42,46,0.18);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.latest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 2px rgba(31,42,46,0.04), 0 22px 40px -16px rgba(31,42,46,0.28);
}
.latest-card__cover {
  position: relative;
  aspect-ratio: 1.91 / 1;
  background: var(--sand-light);
  overflow: hidden;
}
.latest-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.latest-card:hover .latest-card__cover img { transform: scale(1.04); }
.latest-card__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--lagoon) 100%);
  color: var(--ivory);
  font-family: var(--f-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.latest-card__type-pill {
  position: absolute;
  top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ivory);
  backdrop-filter: blur(6px);
}
.latest-card__type-pill svg { width: 14px; height: 14px; }
.latest-card__type-pill--actu       { background: var(--terracotta); }
.latest-card__type-pill--podcast    { background: var(--stellar-deep); }
.latest-card__type-pill--video      { background: var(--ink); }
.latest-card__type-pill--linkedin   { background: #0a66c2; }
.latest-card__type-pill--newsletter { background: #c89a2a; }

/* Badge "Nouveau" — identique à la page Médias et Actu */
.latest-card__new-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--ivory);
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 6px 16px -6px rgba(193,119,99,0.7);
}
.latest-card__new-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ivory);
}

.latest-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(54px, 6vw, 70px);
  height: clamp(54px, 6vw, 70px);
  border-radius: 50%;
  background: rgba(31,42,46,0.78);
  backdrop-filter: blur(4px);
  color: var(--ivory);
  display: grid; place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}
.latest-card:hover .latest-card__play {
  background: var(--terracotta);
  transform: translate(-50%, -50%) scale(1.08);
}
.latest-card__play svg { width: 36%; height: 36%; margin-left: 2px; }

.latest-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex; flex-direction: column;
  gap: 0.6rem; flex: 1;
}
.latest-card__date {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(31, 42, 46, 0.55);
}
.latest-card__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  /* Clamp à 3 lignes pour garantir une hauteur identique d'une card à l'autre */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* min-height = 3 × line-height (1.2) */
  min-height: calc(1.2em * 3);
}
.latest-card__subtitle {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(31, 42, 46, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* min-height = 2 × line-height (1.55) — réserve l'espace même si vide */
  min-height: calc(1.55em * 2);
}
.latest-card__cta {
  margin-top: auto;       /* CTA toujours collé en bas, alignant les cards */
  font-family: var(--f-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding-top: 0.4rem;
}
.latest-card__cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.latest-card:hover .latest-card__cta svg { transform: translate(3px, -3px); }

.latest-cards__cta-row { text-align: center; margin-top: 2.2rem; }

.medias__podcasts__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.medias__podcasts__head .label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.medias__podcasts__head .label--ink { color: var(--terracotta); }
.medias__podcasts__head h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.podcast-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .podcast-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .podcast-cards { grid-template-columns: repeat(4, 1fr); } }

.podcast-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(31, 42, 46, 0.08);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.podcast-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -22px rgba(31, 42, 46, 0.35);
}
.podcast-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--ink);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.podcast-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.podcast-card:hover .podcast-card__cover img { transform: scale(1.06); }
.podcast-card__cover--gradient1 {
  background: linear-gradient(140deg, #d68d7a 0%, #c17763 60%, #8a4a3a 100%);
}
.podcast-card__cover--gradient2 {
  background: linear-gradient(140deg, #5d7f7a 0%, #2e4751 100%);
}
.podcast-card__cover-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.1;
  text-align: center;
  color: var(--ivory);
  padding: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.podcast-card__cover-text em {
  font-style: italic;
  color: var(--terracotta-2);
  display: block;
}
.podcast-card__cover--gradient2 .podcast-card__cover-text em { color: var(--sand); }
.podcast-card__play {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--ivory);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}
.podcast-card__play svg { width: 20px; height: 20px; margin-left: 2px; }
.podcast-card:hover .podcast-card__play { transform: scale(1.12); background: var(--ink); }
.podcast-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.podcast-card__show {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
}
.podcast-card__body strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.media-card {
  background: var(--ivory);
  border: 1px solid rgba(31,42,46,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
}
.media-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(31,42,46,0.08); }

.media-card--feature { grid-row: span 2; flex-direction: column; }
@media (min-width: 1100px) {
  .media-card--feature { grid-column: 1; grid-row: 1 / 3; }
}

.media-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: var(--ivory);
  overflow: hidden;
}
.media-card--feature .media-card__cover { aspect-ratio: 16 / 11; }
.media-card__cover--lagoon { background: var(--lagoon); color: var(--ink); }
.media-card__cover--rainforest { background: var(--rainforest); color: var(--ivory); }
.media-card__cover--stellar { background: var(--stellar); color: var(--ivory); }
.media-card__cover--terracotta { background: var(--terracotta); color: var(--ivory); }
.media-card__icon { width: 80px; height: 80px; }

/* Book mockup */
.book {
  width: 56%;
  aspect-ratio: 3 / 4.2;
  perspective: 1200px;
  filter: drop-shadow(0 30px 50px rgba(31,42,46,0.35));
  transform: rotateY(-18deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.media-card:hover .book { transform: rotateY(-12deg) rotateX(0deg) translateY(-4px); }
.book__face {
  width: 100%; height: 100%;
  background:
    linear-gradient(180deg, rgba(250,246,241,0.06), rgba(0,0,0,0.15)),
    var(--terracotta-2);
  border-radius: 4px 12px 12px 4px;
  border-left: 6px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.6rem 1.6rem 1.8rem;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.book__face::before {
  content: '';
  position: absolute;
  top: 14%; right: 14%; width: 36px; height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.4;
}
.book__face::after {
  content: '';
  position: absolute;
  bottom: 22%; left: 10%; right: 10%;
  height: 1px; background: currentColor;
  opacity: 0.4;
}
.book__label {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.book__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.015em;
}
.book__author {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-style: italic;
}
.book__doodle {
  position: absolute; top: 32%; right: 18%;
  width: 28px; height: 28px;
  color: currentColor; opacity: 0.65;
}

.media-card__body {
  padding: 1.75rem;
  display: flex; flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.media-card--feature .media-card__body { padding: 2.25rem; gap: 1rem; }
.media-card__body .label {
  color: var(--terracotta);
  font-size: 0.7rem;
}
.media-card__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.media-card--feature .media-card__body h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.media-card__body p {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.8;
  flex: 1;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-top: auto;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.25s;
}
.link-arrow:hover { gap: 0.85rem; }
.link-arrow .arrow { width: 14px; height: 14px; }

/* ----------- CTA buttons spread ----------- */
.cta__btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  align-items: center;
}
.cta__or, .lp-cta__or {
  font-family: var(--f-display, 'Fraunces', serif);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.7;
  padding: 0 0.25rem;
  user-select: none;
}

/* ----------- WATERMARK (logo médaille en alpha) ----------- */
.manifesto, .offer, .team { position: relative; overflow: hidden; }
.medias { position: relative; overflow: visible; }

.watermark {
  position: absolute;
  width: 520px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.6; /* le SVG DreamCatcher est déjà très clair, on l'atténue légèrement */
}
/* Contexte de positionnement automatique pour toute section contenant un watermark.
   isolation:isolate crée un stacking context qui contient le watermark et permet
   au contenu (cards, details, boutons) de toujours s'afficher au-dessus. */
section:has(> .watermark) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Le watermark passe sous tout le reste du contenu de sa section */
section > .watermark { z-index: -1; }
/* Tout enfant direct positionné de la section doit rester au-dessus du watermark */
section:has(> .watermark) > *:not(.watermark) { position: relative; z-index: 1; }
.manifesto > .manifesto__inner,
.offer > .offer__head, .offer > .offer__grid,
.team > .team__head, .team > .team__grid,
.medias > .medias__head, .medias > .medias__grid { position: relative; z-index: 1; }

.watermark--right       { top: -8%;  right: -10%; }
.watermark--left        { top: 10%;  left: -12%; }
.watermark--left-tilt   { bottom: -10%; left: -8%; width: 600px; }
.watermark--right-low   { bottom: -12%; right: -8%; width: 580px; }

@media (max-width: 700px) {
  .watermark { width: 360px; opacity: 0.05; }
}

/* ===== Polaroid grid (En coulisses) ===== */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 0;
}
@media (min-width: 720px)  { .polaroid-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .polaroid-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem 3rem; } }

.polaroid {
  position: relative;
  background: var(--white);
  padding: 14px 14px 56px;
  border-radius: 4px;
  box-shadow:
    0 2px 4px rgba(31, 42, 46, 0.08),
    0 24px 48px -22px rgba(31, 42, 46, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.polaroid::before {
  /* tape adhesif en haut */
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 64px; height: 18px;
  background: rgba(193,119,99,0.35);
  box-shadow: 0 2px 6px rgba(31,42,46,0.15);
  border-radius: 1px;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 1px;
  background: var(--sand-light);
}
.polaroid figcaption {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow: 0 30px 60px -22px rgba(31, 42, 46, 0.5);
  z-index: 2;
}
/* alternance de rotations légères pour effet "tas de polaroids" */
.polaroid:nth-child(6n+1) { transform: rotate(-2.5deg); }
.polaroid:nth-child(6n+2) { transform: rotate(1.8deg); }
.polaroid:nth-child(6n+3) { transform: rotate(-1.2deg); }
.polaroid:nth-child(6n+4) { transform: rotate(2.2deg); }
.polaroid:nth-child(6n+5) { transform: rotate(-1.8deg); }
.polaroid:nth-child(6n+6) { transform: rotate(1.4deg); }

@media (prefers-reduced-motion: reduce) {
  .polaroid { transform: none !important; transition: none; }
}

/* ----------- REVEAL ----------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s cubic-bezier(.22,.85,.3,1),
    transform 0.9s cubic-bezier(.22,.85,.3,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
}
.reveal--up { transform: translateY(48px); }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(0.94); }
.reveal--rotate { transform: translateY(28px) rotate(-2deg); }

/* Désactivation pour les utilisateurs sensibles au mouvement */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   GAME MODAL (2048) — skinné charte Talent Catcher
   ========================================================= */
.tc-game-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw;
}
.tc-game-modal.is-open { display: flex; }
.tc-game-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.tc-game-modal__shell {
  position: relative;
  width: min(680px, 96vw);
  max-height: 96vh;
  overflow-y: auto;
  background: var(--ivory);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 30px 60px -20px rgba(31, 42, 46, 0.45),
              0 12px 24px -8px rgba(31, 42, 46, 0.25);
}
.tc-game-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.tc-game-modal__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 0.35rem;
}
.tc-game-modal__title em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.tc-game-modal__sub {
  font-size: 0.95rem;
  color: var(--stellar-deep);
  opacity: 0.75;
  margin-top: 0.4rem;
}
.tc-game-modal__close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: var(--ivory);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.tc-game-modal__close:hover { background: var(--terracotta); color: var(--ivory); border-color: var(--terracotta); transform: rotate(90deg); }
.tc-game-modal__close:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.tc-game-modal__hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--stellar-deep);
  opacity: 0.6;
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

/* Mobile : compact modale + scale-down global du jeu 2048 */
@media (max-width: 720px), (max-height: 740px) {
  .tc-game-modal { padding: 1rem 0.6rem; }
  .tc-game-modal__shell {
    padding: 1rem 0.85rem 1.25rem;
    max-height: 95vh;
    border-radius: 18px;
  }
  .tc-game-modal__header { margin-bottom: 0.65rem; gap: 0.5rem; }
  .tc-game-modal__title { font-size: 1.3rem; margin-top: 0.15rem; }
  .tc-game-modal__sub { font-size: 0.78rem; margin-top: 0.2rem; }
  .tc-game-modal__close { width: 34px; height: 34px; font-size: 1.3rem; }
  .tc-game-modal__hint { font-size: 0.74rem; margin-top: 0.6rem; }

  /* Tout le jeu est zoomé pour rester dans l'écran sans casser la grille vh */
  #mobilewrap { zoom: 0.75; padding-top: 11vmin; }
}
@media (max-width: 420px) {
  #mobilewrap { zoom: 0.6; }
}

/* --------- GAME (markup d'origine, namespacé via #mobilewrap) --------- */
#mobilewrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 11vmin; /* place pour score + bouton */
}
#mobilewrap #container {
  position: relative;
  width: 50vmin;
  height: 50vmin;
  background: var(--sand);
  border-radius: 0 0 14px 14px;
  font-family: var(--f-sans);
  box-sizing: border-box;
  flex-shrink: 0;
}
#mobilewrap #container .score {
  position: absolute;
  display: table;
  top: -9vmin;
  width: 38%;
  height: 9vmin;
  background: var(--sand);
  border-radius: 14px 0 0 0;
  text-align: center;
  padding-top: 0.5vmin;
  box-sizing: border-box;
}
#mobilewrap #container .score p {
  display: table-cell;
  font-size: 2.6vmin;
  vertical-align: middle;
}
#mobilewrap #container .score .title {
  display: block;
  color: var(--stellar-deep);
  font-size: 1.6vmin;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.2vmin;
}
#mobilewrap #container .score .scorefield {
  color: var(--ivory);
  letter-spacing: 1px;
  font-weight: 700;
  font-family: var(--f-display);
  font-size: 3.5vmin;
}
#mobilewrap #container .newgame {
  position: absolute;
  top: -9vmin;
  right: 0;
  width: 60%;
  height: 9vmin;
  background: var(--sand);
  border-radius: 0 14px 0 0;
}
#mobilewrap #container .newgame .button {
  position: absolute;
  display: table;
  width: 86%;
  height: 6.2vmin;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--terracotta);
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.2s ease, transform 0.2s ease;
}
#mobilewrap #container .newgame .button:hover {
  background: var(--terracotta-2);
  box-shadow: 0 10px 20px rgba(193, 119, 99, 0.35), 0 6px 6px rgba(31, 42, 46, 0.18);
  transform: translateY(-2px);
}
#mobilewrap #container .newgame .button:active {
  transform: translateY(0);
  box-shadow: inset 0 6px 12px rgba(31, 42, 46, 0.18);
}
#mobilewrap #container .newgame .button span {
  display: table-cell;
  color: var(--ivory);
  font-size: 1.9vmin;
  font-weight: 600;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
#mobilewrap #container .over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 246, 241, 0.86);
  display: table;
  text-align: center;
  border-radius: 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 5;
}
#mobilewrap #container .over span {
  display: table-cell;
  color: var(--terracotta);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 5vmin;
  vertical-align: middle;
}
#mobilewrap #container .won {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2vmin;
  background: rgba(193, 119, 99, 0.92);
  border-radius: 14px;
  text-align: center;
  display: table;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 6;
}
#mobilewrap #container .won .winner {
  display: block;
  color: var(--ivory);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 8vmin;
  line-height: 1;
  margin-bottom: 1.2vmin;
}
#mobilewrap #container .won .bestscore {
  color: rgba(250, 246, 241, 0.8);
  font-size: 1.8vmin;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
#mobilewrap #container .won .numbest {
  color: var(--ivory);
  font-size: 3vmin;
  font-weight: 700;
  margin-left: 0.4vmin;
}
#mobilewrap #container .grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 10vmin);
  grid-template-rows: repeat(4, 10vmin);
  gap: 2vmin;
  padding: 2vmin;
  box-sizing: border-box;
  justify-content: start;
  align-content: start;
}
#mobilewrap #container .grid .row { display: contents; }
#mobilewrap #container .grid .row .base {
  background: var(--sand-light);
  border-radius: 8px;
}
#mobilewrap #container .tiles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2vmin;
  box-sizing: border-box;
}
#mobilewrap #container .tiles .tile {
  position: absolute;
  width: 10vmin;
  height: 10vmin;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.3s ease;
}
#mobilewrap #container .tiles .tile:hover {
  box-shadow: 0 3px 6px rgba(31, 42, 46, 0.18), 0 3px 6px rgba(31, 42, 46, 0.22);
}
#mobilewrap #container .tiles .tile .tile_content {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  animation: tc-pop-up 0.3s ease-in forwards;
  padding: 1px;
}
#mobilewrap #container .tiles .tile .tile_content span {
  display: table-cell;
  font-size: 3.4vmin;
  vertical-align: middle;
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Tuiles — palette TC progressive : ivory → sand → lagoon → rainforest → stellar → terracotta → gold */
#mobilewrap .tile-2    { background: var(--ivory);        color: var(--stellar-deep); }
#mobilewrap .tile-4    { background: var(--sand-light);   color: var(--stellar-deep); }
#mobilewrap .tile-8    { background: var(--sand);         color: var(--stellar-deep); }
#mobilewrap .tile-16   { background: var(--lagoon);       color: var(--ivory); }
#mobilewrap .tile-32   { background: var(--rainforest);   color: var(--ivory); }
#mobilewrap .tile-64   { background: var(--stellar-deep); color: var(--ivory); }
#mobilewrap .tile-128  { background: var(--terracotta-2); color: var(--ivory); box-shadow: 0 0 10px rgba(214, 141, 122, 0.5); }
#mobilewrap .tile-256  { background: var(--terracotta);   color: var(--ivory); box-shadow: 0 0 14px rgba(193, 119, 99, 0.55); }
#mobilewrap .tile-512  { background: #a85942;             color: var(--ivory); box-shadow: 0 0 18px rgba(193, 119, 99, 0.7); }
#mobilewrap .tile-1024 { background: #d9a05c;             color: var(--ivory); box-shadow: 0 0 16px rgba(217, 160, 92, 0.6); }
#mobilewrap .tile-2048 { background: #e8b349;             color: var(--ivory); box-shadow: 0 0 24px rgba(232, 179, 73, 0.85); }
#mobilewrap .tile-4096 { background: var(--stellar-deep); color: var(--ivory); box-shadow: 0 0 20px rgba(46, 71, 81, 0.7); }
#mobilewrap .tile-8192 { background: #1f2a2e;             color: var(--terracotta); box-shadow: 0 0 22px rgba(193, 119, 99, 0.6); }

@keyframes tc-pop-up {
  0%   { transform: scale(0.4); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  #mobilewrap #container .tiles .tile,
  #mobilewrap #container .tiles .tile .tile_content {
    animation: none !important;
    transition: none !important;
  }
}

/* Empêche le scroll de fond quand modal ouvert */
body.tc-game-open { overflow: hidden; }

/* ============================================================
   TEAM TRIGGER + MEMORY MODAL
   ============================================================ */

/* CTA équipe + sticker surprise (déclencheur memory) */
.team__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.team__surprise {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
  animation: teamSurpriseFloat 4s ease-in-out infinite;
}
.team__surprise img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15))
    drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.18))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
  transform: rotate(-8deg);
  transition: transform 0.3s ease;
}
.team__surprise:hover { transform: scale(1.12); }
.team__surprise:hover img { transform: rotate(2deg); }
.team__surprise:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; border-radius: 50%; }
@keyframes teamSurpriseFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}
@media (max-width: 600px) {
  .team__cta { flex-direction: column-reverse; gap: 1rem; }
  .team__surprise { width: 64px; height: 64px; animation: none; }
}

/* Le kicker "L'équipe" devient un bouton avec hint discret */
.team__trigger {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: transform 0.2s ease;
}
.team__trigger:hover { transform: translateY(-1px); }
.team__trigger:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; border-radius: 4px; }
.team__trigger__hint {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sand-light);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  opacity: 0.65;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.team__trigger:hover .team__trigger__hint {
  opacity: 1;
  background: var(--terracotta);
  color: var(--ivory);
}
.team__title-btn {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline;
  text-align: inherit;
  transition: color 0.2s ease;
}
.team__title-btn:hover em { color: var(--ink); }
.team__title-btn:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; border-radius: 4px; }

/* Modale memory */
.memory-modal[hidden] { display: none; }
.memory-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.memory-modal.is-open { opacity: 1; }
.memory-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.65);
  backdrop-filter: blur(6px);
}
.memory-modal__shell {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 1.75rem clamp(1.25rem, 3vw, 2.25rem) 1.75rem;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.55);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
  border-top: 6px solid var(--terracotta);
}
.memory-modal.is-open .memory-modal__shell { transform: translateY(0) scale(1); }

.memory-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.memory-modal__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.4rem 0 0.4rem;
}
.memory-modal__title em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.memory-modal__sub {
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.78;
}
.memory-modal__sub strong { font-weight: 600; color: var(--terracotta); font-style: italic; font-family: var(--f-display); }
.memory-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.memory-modal__close:hover { background: rgba(31, 42, 46, 0.08); }

/* Plateau de jeu — flip 3D simple */
.memory-game {
  margin-bottom: 1.25rem;
  perspective: 1000px;
}
.memory-game__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.4rem, 1.5vw, 0.75rem);
}
@media (max-width: 480px) {
  .memory-game__cards { grid-template-columns: repeat(3, 1fr); }
}

.memory-game__card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 70px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
  outline: none;
}
.memory-game__card:focus-visible {
  box-shadow: 0 0 0 3px var(--terracotta);
  border-radius: 14px;
}
.memory-game__card.is-flipped,
.memory-game__card.is-matched {
  transform: rotateY(180deg);
}

.memory-game__back-card,
.memory-game__front-card {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -4px rgba(31, 42, 46, 0.2);
}

.memory-game__back-card {
  background: var(--terracotta);
  color: var(--ivory);
}
.memory-game__back-card svg {
  width: 55%;
  height: 55%;
  fill: var(--ivory);
  transition: transform 0.4s ease;
}
.memory-game__card:hover .memory-game__back-card svg {
  transform: scale(1.08) rotate(-4deg);
}

.memory-game__front-card {
  background: var(--white);
  border: 3px solid var(--terracotta);
  transform: rotateY(180deg);
}
.memory-game__front-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.memory-game__card.is-matched .memory-game__front-card {
  border-color: var(--rainforest);
  box-shadow: 0 0 0 3px var(--rainforest), 0 8px 16px -6px rgba(93, 127, 122, 0.5);
  animation: memoryMatch 0.5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes memoryMatch {
  0%   { transform: rotateY(180deg) scale(1); }
  50%  { transform: rotateY(180deg) scale(1.08); }
  100% { transform: rotateY(180deg) scale(1); }
}

.memory-modal__footer {
  display: flex;
  justify-content: center;
}
.memory-modal__restart {
  border-color: var(--ink);
}

.memory-win[hidden] { display: none !important; }
.memory-win {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--rainforest);
  color: var(--ivory);
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  animation: memoryWin 0.5s ease;
}
.memory-win__emoji { font-size: 2rem; line-height: 1; }
.memory-win strong {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
}
.memory-win p { font-size: 0.95rem; opacity: 0.92; }
@keyframes memoryWin {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MOBILE OPTIMIZATIONS — pass de revue ciblée
   ============================================================ */

/* Stickers proof : adapter aux petits écrans pour garder
   les chiffres lisibles à côté */
@media (max-width: 600px) {
  .medias__proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
    margin-bottom: 3rem;
  }
  .medias__proof__item { gap: 0.6rem; justify-content: flex-start; padding-left: 0.5rem; }
  .medias__proof__sticker { width: 52px !important; height: 52px !important; }
  .medias__proof__newsletter .medias__proof__sticker { width: 54px !important; height: 54px !important; }
  .medias__proof__linkedin .medias__proof__sticker { width: 44px !important; height: 44px !important; }
  .medias__proof__podcast .medias__proof__sticker { width: 50px !important; height: 50px !important; }
  .medias__proof__item strong { font-size: 1.3rem; }
  .medias__proof__item span { font-size: 0.7rem; letter-spacing: 0.1em; }
}

/* Featured media : éviter image trop haute, padding raisonnable */
@media (max-width: 720px) {
  .featured-media__cover { aspect-ratio: 16 / 9; }
  .featured-media__play { width: 64px; height: 64px; }
  .featured-media__play svg { width: 28px; height: 28px; }
  .featured-media__body { padding: 1.5rem 1.25rem; }
}

/* Lame livre — réduire paddings, mieux gérer le médaillon auteurs */
@media (max-width: 720px) {
  .book-feature { padding: 4rem 1rem; }
  .book-feature__inner { gap: 1.75rem; }
  .book-feature__visual { max-width: 320px; }
  .book-feature__visual img { transform: rotate(-1.5deg); }
  .book-feature__bullets { padding: 0.85rem 1rem; gap: 0.5rem; }
  .book-feature__bullets li { flex-direction: row; align-items: baseline; gap: 0.4rem; }
  .book-feature__bullets strong { font-size: 1rem; }
  .book-feature__ctas .btn { width: 100%; justify-content: center; }
  .book-feature__ctas .link-arrow { align-self: center; }
  .book-feature__authors { animation-duration: 8s; }
}

/* LinkedIn zone — packing serré, stickers réduits, photo + handle centrés */
@media (max-width: 720px) {
  .linkedin-zone { padding: 2.5rem 1.25rem; gap: 2rem; }
  .linkedin-zone__photo { width: 170px; }
  .linkedin-zone__badge { width: 44px; height: 44px; }
  .linkedin-zone__badge svg { width: 24px; height: 24px; }
  .linkedin-zone__handle { font-size: 0.78rem; word-break: break-all; }
  .linkedin-zone__points { padding: 1rem; }
  .linkedin-zone__ctas .btn { width: 100%; justify-content: center; }
}

/* Moments carousel — flèches plus discrètes, padding ajusté */
@media (max-width: 720px) {
  .moments { padding: 4rem 0; }
  .moments__head { margin-bottom: 1.75rem; }
  .moment-card { padding: 1.5rem 0.75rem 2.5rem; min-height: auto; }
  .moment-card__photo { padding: 10px 10px 36px; }
  .moment-card__caption { font-size: 0.88rem; bottom: 10px; }
}

/* Méthode — stickers pillars plus discrets sur petit écran */
@media (max-width: 720px) {
  .pillar { min-height: auto; padding: 2rem 1.5rem 1.75rem; }
  .pillar__sticker { width: 80px; top: -18px; right: -10px; }
  .pillar__head { padding-right: 50px; }
  .pillar__name { font-size: 1.7rem; }
}

/* CTA — stickers plus discrets */
@media (max-width: 600px) {
  .cta-sticker--1 { width: 60px !important; }
  .cta-sticker--2 { width: 52px !important; }
  .cta-sticker--3 { width: 60px !important; }
}

/* Témoignages — 1 col propre, paddings ajustés */
@media (max-width: 700px) {
  .testimonials { padding: var(--section-y) 1rem; }
  .quote-card { padding: 1.75rem 1.5rem; }
  .quote-card blockquote { font-size: 1.05rem; }
}

/* Méthode — CTA centré, modale chips lisible */
@media (max-width: 600px) {
  .def-modal__dialog { padding: 2.5rem 1.25rem 1.75rem; }
  .def-modal__close { top: 0.5rem; right: 0.5rem; }
  .story-modal__dialog { padding: 2.5rem 1.1rem 2rem; }
}

/* Manifeste : empêcher le mot "directement" de casser la mise en page */
@media (max-width: 480px) {
  .manifesto h2 { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .word-trigger em { white-space: nowrap; }
}

/* Hero : sécuriser les paddings et le scroll horizontal */
@media (max-width: 720px) {
  .hero__inner--split { padding-bottom: 1.5rem; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .hero__lede { font-size: 1rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* Member photos : empilement plus compact + ring un peu plus fin */
@media (max-width: 600px) {
  .team__grid { gap: 2.5rem 1rem; }
  .member { gap: 0.85rem; padding: 0; }
  .member__photo { width: 180px; }
  button.member__photo::after { width: 28px; height: 28px; font-size: 0.85rem; }
}

/* Blog cards — vignettes plus larges */
@media (max-width: 600px) {
  .blog-card__cover { aspect-ratio: 16 / 9; }
}

/* Podcast cards — 2 par rangée intermédiaire propre */
@media (max-width: 720px) {
  .podcast-card__cover-text { font-size: 1.2rem; padding: 1rem; }
  .podcast-card__play { width: 36px; height: 36px; bottom: 10px; right: 10px; }
  .podcast-card__play svg { width: 16px; height: 16px; }
  .podcast-card__body { padding: 1rem 1rem 1.25rem; }
  .podcast-card__body strong { font-size: 0.95rem; }
}

/* Footer : grille en colonne, espacement réduit */
@media (max-width: 700px) {
  .footer__top { gap: 2rem; }
  .footer__bottom { padding: 1.25rem 0; font-size: 0.8rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Sécurité globale : empêcher tout débordement horizontal */
html { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }

/* ============================================================
   STICKERS DRAGGABLES (drag & drop)
   ============================================================ */
.is-draggable {
  pointer-events: auto !important;
  cursor: grab;
  touch-action: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
.is-draggable.is-dragging {
  cursor: grabbing;
  z-index: 999 !important;
  animation-play-state: paused !important;
  transition: none !important;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3)) !important;
}
.is-draggable img {
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ============================================================
   ROCKET LAUNCH XXL (CTA surprise)
   ============================================================ */

/* Le rocket sticker devient cliquable */
.cta-sticker--3 {
  pointer-events: auto;
  cursor: pointer;
}
.cta-sticker--3:focus-visible { outline: 2px solid var(--ivory); outline-offset: 4px; border-radius: 50%; }

/* Clone fixé au-dessus de tout pendant le décollage */
.rocket-clone {
  position: fixed;
  z-index: 250;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
  will-change: transform;
  transform-origin: center center;
}

/* Animation unifiée : grossit sur place → décolle */
.rocket-clone.is-launching {
  animation: rocketLaunchXXL 2s forwards;
}
@keyframes rocketLaunchXXL {
  /* Anticipation (compression) */
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
  }
  8% {
    transform: translate(-50%, -50%) scale(0.88) rotate(-3deg);
    animation-timing-function: cubic-bezier(.34, 1.2, .64, 1);
  }
  /* Pop initial */
  22% {
    transform: translate(-50%, -50%) scale(1.6) rotate(2deg);
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
  }
  /* Grossissement principal */
  40% {
    transform: translate(-50%, -50%) scale(calc(var(--mega-scale) * 0.78)) rotate(-1deg);
    animation-timing-function: cubic-bezier(.34, 1.4, .55, 1);
  }
  /* Léger overshoot puis settle */
  52% {
    transform: translate(-50%, -50%) scale(calc(var(--mega-scale) * 1.04)) rotate(1deg);
    animation-timing-function: cubic-bezier(.4, 0, .6, 1);
  }
  60% {
    transform: translate(-50%, -50%) scale(var(--mega-scale)) rotate(0deg);
    animation-timing-function: ease-in-out;
  }
  /* Hold respiré */
  68% {
    transform: translate(-50%, -50%) scale(var(--mega-scale)) rotate(0deg);
    animation-timing-function: cubic-bezier(.6, 0, .9, .2);
  }
  /* Décollage : ease-in fort = accélération réaliste */
  100% {
    transform:
      translate(-50%, calc(-50% - var(--launch-distance, 130vh)))
      scale(calc(var(--mega-scale) * 0.95))
      rotate(-2deg);
  }
}

/* Trail de fumée — léger et vapoureux */
.rocket-puff {
  position: fixed;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(206, 189, 175, 0.4) 40%,
      rgba(206, 189, 175, 0.12) 70%,
      transparent 90%);
  transform: translate(-50%, 0) scale(0.3);
  pointer-events: none;
  z-index: 240;
  animation: rocketPuff 1.6s cubic-bezier(.2, .6, .4, 1) forwards;
  will-change: transform, opacity;
  filter: blur(3px);
}
@keyframes rocketPuff {
  0%   { transform: translate(-50%, 0) scale(0.25); opacity: 0; }
  18%  { opacity: 0.7; }
  100% { transform: translate(calc(-50% + 24px), 70px) scale(2.4); opacity: 0; }
}

/* Confettis */
.rocket-confetti {
  position: fixed;
  top: -20px;
  left: var(--start-x);
  width: var(--w);
  height: var(--h);
  background: var(--color);
  pointer-events: none;
  z-index: 280;
  border-radius: 2px;
  animation-name: rocketConfettiFall;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.45, .15, .7, .8);
  will-change: transform, opacity;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.05);
}
.rocket-confetti:nth-child(3n)  { border-radius: 50%; }
.rocket-confetti:nth-child(5n)  { width: calc(var(--w) * 1.7); height: calc(var(--h) * 0.5); border-radius: 1px; }
.rocket-confetti:nth-child(7n)  { border-radius: 50% / 30%; }

@keyframes rocketConfettiFall {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  6%   { opacity: 1; }
  100% { transform: translate(var(--drift), var(--fall-y)) rotate(var(--rot-end)); opacity: 0.95; }
}

/* Reveal logo Talent Catcher après décollage */
.tc-logo-reveal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 270;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.tc-logo-reveal.is-visible { opacity: 1; }
.tc-logo-reveal.is-leaving { opacity: 0; transition: opacity 0.7s ease; }

.tc-logo-reveal__badge {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  color: var(--terracotta);
  transform: scale(0.4) rotate(-12deg);
  opacity: 0;
  filter: drop-shadow(0 12px 32px rgba(193, 119, 99, 0.4));
  transition:
    transform 0.85s cubic-bezier(.34,1.56,.64,1) 0.15s,
    opacity 0.5s ease 0.15s;
}
.tc-logo-reveal__wordmark {
  width: clamp(280px, 65vw, 720px);
  height: auto;
  color: var(--ivory);
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(.34,1.56,.64,1) 0.45s,
    opacity 0.6s ease 0.45s;
}
.tc-logo-reveal.is-visible .tc-logo-reveal__badge {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.tc-logo-reveal.is-visible .tc-logo-reveal__wordmark {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Reduced motion : skip l'animation */
@media (prefers-reduced-motion: reduce) {
  .rocket-clone, .rocket-puff, .rocket-confetti, .tc-logo-reveal { display: none !important; }
}

/* ----------- OFFRE FORMATION : accent vert sauge #5D7F7A ----------- */
.offer-card:not(.offer-card--accent) .offer-card__title em { color: #5D7F7A; }
.offer-card:not(.offer-card--accent) .offer-card__list .check { background: #5D7F7A; }
.offer-card:not(.offer-card--accent) .offer-card__meta-list strong { color: #5D7F7A; }
.offer-card:not(.offer-card--accent) .offer-card__cta {
  background: #5D7F7A;
  border-color: #5D7F7A;
  color: var(--ivory);
}
.offer-card:not(.offer-card--accent) .offer-card__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}

/* ----------- OFFRE AMBASSADORAT : accent vert profond #A0AE9D ----------- */
.offer-card.offer-card--accent .offer-card__title em { color: #A0AE9D; }
.offer-card.offer-card--accent .offer-card__list .check { background: #A0AE9D; }
.offer-card.offer-card--accent .offer-card__meta-list strong { color: #A0AE9D; }
.offer-card.offer-card--accent .offer-card__cta {
  background: #A0AE9D;
  border-color: #A0AE9D;
  color: var(--ivory);
}
.offer-card.offer-card--accent .offer-card__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}
.offer-card.offer-card--accent .offer-card__recommended-dot { background: #A0AE9D; }
.offer-card.offer-card--accent .offer-tabs__btn.is-active { background: #A0AE9D; }
.offer-card.offer-card--accent .offer-tabs__btn:hover { background: rgba(160,174,157,.10); color: #A0AE9D; }
.offer-card.offer-card--accent .offer-tabs__btn:focus-visible { outline-color: #A0AE9D; }
.offer-card:not(.offer-card--accent) .offer-tabs__btn:hover { background: rgba(93,127,122,.14); color: #A0AE9D; }
.offer-card:not(.offer-card--accent) .offer-tabs__btn:focus-visible { outline-color: #5D7F7A; }

/* Active tab : couleur du card au lieu du noir global */
.offer-card:not(.offer-card--accent) .offer-tabs__btn.is-active {
  background: #5D7F7A;
  color: var(--ivory);
  box-shadow: 0 6px 14px -6px rgba(93,127,122,.55);
}

/* Bloc CTA + Prix */
.offer-card__action{
  display:flex;align-items:center;justify-content:space-between;
  gap:18px;flex-wrap:wrap;margin-top:.5rem;
}
.offer-card__price{
  display:inline-flex;flex-direction:column;align-items:flex-end;
  line-height:1.15;text-align:right;
}
@media (max-width: 540px) {
  .offer-card__action {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .offer-card__cta {
    width: 100%;
    justify-content: center;
    align-self: auto;
  }
  .offer-card__price {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.offer-card__price-prefix{
  font-size:.72rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--stellar-deep);opacity:.7;
}
.offer-card__price strong{
  font-family:var(--f-display);font-weight:500;font-style:italic;
  font-size:1.5rem;color:var(--ink);margin-top:2px;
}
.offer-card:not(.offer-card--accent) .offer-card__price strong{ color:#5D7F7A; }
.offer-card.offer-card--accent .offer-card__price strong{ color:#A0AE9D; }
.offer-card__price-unit{
  font-size:.78rem;color:var(--stellar-deep);opacity:.7;margin-top:2px;
}
.offer-card__cta-group{
  display:flex;flex-direction:column;align-items:flex-start;gap:.4rem;
}
.offer-card__cta-link{
  font-size:.82rem;color:var(--stellar-deep);opacity:.75;
  text-decoration:underline;text-underline-offset:3px;
  text-decoration-thickness:1px;
  transition:opacity .2s ease,color .2s ease;
}
.offer-card__cta-link:hover{ opacity:1;color:#A0AE9D; }

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  left: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 9999;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 24px 60px -20px rgba(31,42,46,0.55), 0 8px 24px -12px rgba(31,42,46,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--f-sans);
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner.is-hiding  { opacity: 0; transform: translateY(20px); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1 1 280px; min-width: 0; line-height: 1.5; font-size: 0.92rem; }
.cookie-banner__text strong { display: block; margin-bottom: 0.25rem; font-size: 0.98rem; }
.cookie-banner__text span { color: rgba(250,246,241,0.8); }
.cookie-banner__text a { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__text a:hover { color: var(--terracotta-2); }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-banner__btn {
  appearance: none;
  border: 1.5px solid rgba(250,246,241,0.35);
  background: transparent;
  color: var(--ivory);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cookie-banner__btn--ghost:hover { border-color: var(--ivory); }
.cookie-banner__btn--solid {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.cookie-banner__btn--solid:hover {
  background: var(--terracotta-2);
  border-color: var(--terracotta-2);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }
  .cookie-banner__text { font-size: 0.82rem; line-height: 1.45; flex: 0 0 auto; }
  .cookie-banner__text strong { font-size: 0.88rem; margin-bottom: 0.15rem; }
  .cookie-banner__actions { justify-content: stretch; gap: 0.5rem; flex: 0 0 auto; }
  .cookie-banner__btn { flex: 1; font-size: 0.85rem; padding: 0.55rem 0.9rem; }
}

/* ============== PAGES LÉGALES (mentions / confidentialité) ============== */
.legal-hero {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(7rem, 11vw, 9rem) var(--gutter) clamp(3rem, 5vw, 4rem);
  text-align: center;
}
.legal-hero .kicker { color: rgba(250,246,241,0.85); display: inline-block; margin-bottom: 0.8rem; }
.legal-hero h1 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.1;
  letter-spacing: -0.02em; margin: 0.4rem auto 0;
  color: var(--ivory);
  max-width: 820px;
}
.legal-hero h1 em { font-style: italic; color: var(--terracotta-2); }
.legal-hero__updated {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(250,246,241,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-body {
  background: var(--ivory);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.legal-body__inner { max-width: 760px; margin: 0 auto; }
.legal-body h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem); line-height: 1.2;
  margin: 2.4rem 0 0.8rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--f-sans); font-weight: 700;
  font-size: 1.05rem; line-height: 1.3;
  margin: 1.6rem 0 0.5rem;
  color: var(--ink);
}
.legal-body p, .legal-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(31, 42, 46, 0.82);
}
.legal-body p { margin: 0 0 1rem; }
.legal-body ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.legal-body ul li { margin-bottom: 0.4rem; }
.legal-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--ink); }
.legal-body strong { color: var(--ink); }
.legal-body__contact {
  margin-top: 3rem;
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(31,42,46,0.08);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Crédit kokomo en haut des mentions légales */
.legal-credit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  margin: 0 0 2.5rem;
  background: linear-gradient(135deg, rgba(193,119,99,0.08), rgba(160,174,157,0.08));
  border: 1.5px solid rgba(193,119,99,0.2);
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
.legal-credit__emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.legal-credit strong { color: var(--terracotta); }
.legal-credit a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-credit a:hover { color: var(--ink); }

/* ============================================================
   MOBILE FIXES — header CTA hidden, manifesto scale, polaroids
   ============================================================ */

/* 1) Masquer le CTA "Prendre RDV" du header sur mobile
      (le burger ouvre déjà un menu qui contient son propre CTA) */
@media (max-width: 700px) {
  .site-header__cta { display: none; }
}

/* 2) Manifesto : titre coupé sur petit écran — on réduit la taille mini
      et on neutralise le <br/> qui force un retour à la ligne trop long. */
@media (max-width: 600px) {
  .manifesto h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
    padding: 0 0.25rem;
  }
  .manifesto h2 br { display: none; }
  .manifesto p { font-size: 0.98rem; line-height: 1.6; }
}

/* 3) Hero — collage polaroids : cascade équilibrée sur mobile.
      3 photos de tailles équivalentes, disposées en zig-zag :
      main (haut-centre) → team (milieu-gauche) → happy (bas-droite).
      Le badge dreamcatcher se loge en haut-gauche, hors zone des photos. */
@media (max-width: 600px) {
  .hero__collage {
    max-width: 320px;
    aspect-ratio: 1 / 1.3;
    margin: 3rem auto 0.5rem;
    overflow: visible;
  }
  .hero__photo--main  { top: 4%;   left: 22%;  right: auto; width: 54%; bottom: auto; }
  .hero__photo--team  { top: 36%;  left: 0;    right: auto; width: 54%; bottom: auto; }
  .hero__photo--happy { bottom: 0; right: 0;   left: auto;  top: auto;  width: 54%; }
  .hero__collage__badge { width: 22%; left: 4%; top: 2%; z-index: 10; }
}
