:root { --header-color: var(--light); }
body { background: var(--light); overflow-x: hidden; }

/* ============================================================
   HERO — ANIMATIONS D'ENTRÉE
   ============================================================ */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-label  { animation: heroUp   .55s cubic-bezier(.22,1,.36,1)       both; }
  .hero-title  { animation: heroUp   .70s .09s cubic-bezier(.22,1,.36,1)  both; }
  .hero-desc   { animation: heroUp   .55s .20s cubic-bezier(.22,1,.36,1)  both; }
  .hero-form   { animation: heroUp   .55s .29s cubic-bezier(.22,1,.36,1)  both; }
  .hero-legal  { animation: heroUp   .45s .36s cubic-bezier(.22,1,.36,1)  both; }
  .hero-stats  { animation: heroUp   .45s .43s cubic-bezier(.22,1,.36,1)  both; }
  .hero-right  { animation: heroFade .90s .06s ease                        both; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 100px);
  border-bottom: 1.5px solid rgba(29,29,29,.3);
}

.hero-left {
  background: var(--dark);
  padding: 100px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1.5px solid rgba(29,29,29,.3);
  overflow: hidden;
}

.hero-label {
  font-family: var(--font);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--teal);
}

.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--light);
}
.hero-title em { color: var(--orange); font-style: normal; }

.hero-desc {
  font-family: var(--font);
  font-size: 16px; font-weight: 400;
  line-height: 1.75;
  color: rgba(245,242,239,.75);
  max-width: 440px;
}
.hero-desc strong { color: var(--light); font-weight: 700; }

.hero-form { display: flex; gap: 8px; }
.hero-input {
  flex: 1; padding: 14px 18px;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  color: var(--light); background: rgba(245,242,239,.08);
  border: 1.5px solid rgba(245,242,239,.2);
  border-radius: var(--radius-sm); outline: none;
  transition: border-color .2s, border-radius .3s ease;
}
.hero-input::placeholder { color: rgba(245,242,239,.4); }
.hero-input:focus { border-color: rgba(245,242,239,.7); border-radius: var(--radius-md); }
.hero-submit {
  padding: 14px 24px; flex-shrink: 0;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: white; background: var(--orange);
  border: none; border-radius: var(--radius-sm);
  cursor: none;
  transition: background .2s, border-radius .3s ease;
}
.hero-submit:hover { background: #e8622e; border-radius: var(--radius-md); }
.hero-legal {
  font-family: var(--font); font-size: 12px; font-weight: 400;
  color: rgba(245,242,239,.45);
}

.hero-stats {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: rgba(245,242,239,.6);
  padding-top: 12px;
  border-top: 1px solid rgba(245,242,239,.15);
}
.hero-stars { letter-spacing: 2px; }

.hero-right { position: relative; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
  transform: scale(1.06);
  transition: filter .6s ease, transform .6s ease;
}
.hero-right:hover .hero-img { filter: grayscale(0%); transform: scale(1); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(29,29,29,.15) 0%, transparent 40%);
}

/* ============================================================
   LOGOS MARQUEE
   ============================================================ */
.logos-strip {
  border-bottom: 1.5px solid rgba(29,29,29,.3);
  padding: 28px 0;
  overflow: hidden;
}
.logos-track {
  display: flex; align-items: center;
  gap: 14px;
  width: max-content;
  animation: scroll-logos 34s linear infinite;
  padding: 4px 7px;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-card {
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px; flex-shrink: 0;
}
.logo-card img {
  width: auto;
  filter: grayscale(100%) opacity(.72);
  transition: filter .3s ease;
  display: block;
}
.logo-card:hover img { filter: grayscale(0%) opacity(1); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 64px;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 24px;
}
.section-link {
  font-family: var(--font); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--dark); text-decoration: none;
  border-bottom: 2px solid var(--dark); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  white-space: nowrap; cursor: none;
}
.section-link:hover { color: var(--orange); border-color: var(--orange); }

.testi-controls { display: flex; align-items: center; gap: 20px; }
.testi-arrows { display: flex; gap: 8px; }
.testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(29,29,29,.3);
  background: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); cursor: none;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.testi-arrow:hover { background: var(--dark); border-color: var(--dark); color: var(--light); }
.testi-arrow:disabled { opacity: .25; pointer-events: none; }
.testi-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.testi-viewport {
  border: 1.5px solid rgba(29,29,29,.3);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.testi-card {
  min-width: calc(100% / 3);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
  border-right: 1.5px solid rgba(29,29,29,.3);
  transition: background .25s;
  box-sizing: border-box;
}
.testi-card:hover { background: white; }

.testi-stars {
  color: var(--orange);
  font-size: 12px; letter-spacing: 2px;
}
.testi-quote {
  font-family: var(--font);
  font-size: 15px; font-weight: 400;
  line-height: 1.75; color: rgba(29,29,29,.7);
  flex: 1;
}
.testi-quote strong { color: var(--orange); font-weight: 700; }
.testi-author {
  padding-top: 20px;
  border-top: 1.5px solid rgba(29,29,29,.1);
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  flex-shrink: 0;
}
.testi-avatar-initials {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  color: var(--dark); flex-shrink: 0; letter-spacing: 0.5px;
}
.testi-name {
  font-family: var(--font);
  font-size: 14px; font-weight: 800;
  color: var(--dark); margin-bottom: 3px;
}
.testi-role {
  font-family: var(--font);
  font-size: 12px; font-weight: 400;
  color: rgba(29,29,29,.4); line-height: 1.4;
}

.testi-cta-card {
  min-width: calc(100% / 3);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px; text-align: center;
  background: var(--dark);
  text-decoration: none; box-sizing: border-box;
  transition: background .25s;
}
.testi-cta-card:hover { background: #111; }
.testi-cta-number {
  font-family: var(--font-logo);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900; letter-spacing: -3px; line-height: 1;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--light);
}
.testi-cta-number span { color: var(--orange); }
.testi-cta-label {
  font-family: var(--font); font-size: 15px; font-weight: 400;
  color: rgba(245,242,239,.45); line-height: 1.5;
}
.testi-cta-btn {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--dark); background: var(--light);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s, border-radius .3s ease;
}
.testi-cta-card:hover .testi-cta-btn { background: var(--orange); color: white; border-radius: var(--radius-md); }

/* section-header conservé pour d'autres sections si besoin */
.section-label {
  font-family: var(--font);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--orange); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-logo);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900; letter-spacing: -2px; line-height: .93;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--dark);
}
.section-title em { color: var(--orange); font-style: normal; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--light); overflow: hidden; padding: 80px 0 96px; }
.about-lines { display: flex; flex-direction: column; gap: 0; }
.about-line {
  font-family: var(--font-logo);
  font-size: clamp(62px, 12.8vw, 195px);
  font-weight: 900; letter-spacing: -8px; line-height: .88;
  color: var(--dark); white-space: nowrap;
  will-change: transform; -webkit-text-stroke: 0.4px var(--dark);
}
.about-line em { font-style: italic; color: var(--dark); }
.about-line-1 { padding-left: 56px; }
.about-line-2 { padding-right: 52px; text-align: right; }
.about-line-3 { padding-left: 22%; }
.about-line-4 { padding-right: 96px; text-align: right; }

.about-small-wrap { height: 0; overflow: visible; position: relative; }
.about-small {
  position: absolute; right: 56px; top: 12px;
  max-width: 300px;
  font-family: var(--font); font-size: 15px; font-weight: 400;
  line-height: 1.75; color: rgba(29,29,29,.55);
}
.about-small-wrap--left .about-small { right: auto; left: 56px; }

/* ---- Images mémoires ---- */
/* desktop : overlay fixe, images positionnées par JS */
.about-memoires {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none; z-index: 50;
  opacity: 0;
  transition: opacity .4s ease;
}
.about-memoires.is-visible { opacity: 1; }
.about-memoire {
  position: absolute; top: 0; left: 0;
  width: 280px; height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 56px rgba(0,0,0,.28);
  will-change: transform;
  flex-shrink: 0;
  display: block;
}

/* lightbox mobile */
.memoire-lightbox {
  position: fixed; inset: 0;
  background: rgba(29,29,29,.92);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; cursor: zoom-out;
}
.memoire-lightbox img {
  max-width: 100%; max-height: 90vh;
  border-radius: 14px; object-fit: contain;
}

/* ============================================================
   SERVICES SCROLL — 4 panneaux sticky empilés
   ============================================================ */
.services-scroll {
  position: relative;
  height: 400vh;
  border-bottom: 1.5px solid rgba(29,29,29,.3);
}
.services-sticky {
  position: sticky;
  top: 0; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 0 32px;
}

/* ---- Panneau : carte 70vh, coins ronds partout ---- */
.ssvc-panel {
  position: absolute;
  left: 32px; right: 32px;
  top: 50%; transform: translateY(-50%);
  height: 70vh;
  border-radius: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  text-decoration: none; cursor: none;
  will-change: transform;
}
/* Panneaux 2-4 démarrent hors écran (bas) */
.ssvc-panel:not(:first-child) {
  transform: translateY(calc(-50% + 100vh));
}

/* Couleurs */
.ssvc-nl      { background: var(--sand); }
.ssvc-pod     { background: var(--dark); }
.ssvc-consult { background: #111; }
.ssvc-custom  { background: var(--orange); }

/* ---- Zone gauche : tag + titre + CTA ---- */
.ssvc-left {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 52px 56px;
}

/* Tag */
.ssvc-tag {
  font-family: var(--font); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0;
  margin-bottom: 20px; display: block;
}
.ssvc-nl .ssvc-tag      { color: rgba(29,29,29,.4); }
.ssvc-pod .ssvc-tag     { color: var(--teal); }
.ssvc-consult .ssvc-tag { color: var(--orange); }
.ssvc-custom .ssvc-tag  { color: rgba(29,29,29,.5); }

/* Titre */
.ssvc-title {
  font-family: var(--font-logo);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 900; letter-spacing: -3px; line-height: .88;
  -webkit-text-stroke: 0.4px currentColor;
}
.ssvc-nl .ssvc-title      { color: var(--dark); }
.ssvc-pod .ssvc-title     { color: var(--light); }
.ssvc-consult .ssvc-title { color: var(--light); }
.ssvc-custom .ssvc-title  { color: var(--dark); }
.ssvc-title em { font-style: normal; }
.ssvc-nl .ssvc-title em      { color: var(--orange); }
.ssvc-pod .ssvc-title em     { color: var(--orange); }
.ssvc-consult .ssvc-title em { color: var(--orange); }
.ssvc-custom .ssvc-title em  { color: rgba(29,29,29,.3); }

/* ---- Logo MIW (newsletter) ---- */
.ssvc-miw-logo {
  width: 100%; max-width: 280px;
  height: auto; object-fit: contain;
  display: block;
}

/* ---- Cover podcast — full-bleed dans la col gauche ---- */
.ssvc-pod .ssvc-left {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.ssvc-pod .ssvc-tag {
  position: absolute;
  top: 40px; left: 48px;
  z-index: 1;
  margin-bottom: 0;
}
.ssvc-pod-cover {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  flex: none; display: block;
}
.ssvc-pod-bottom {
  display: flex; flex-direction: column; gap: 20px;
}

/* ---- Plateformes podcast ---- */
.ssvc-platforms { display: flex; gap: 14px; align-items: center; }
.ssvc-platform {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  text-decoration: none; opacity: .72;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .2s;
}
.ssvc-platform img { width: 36px; height: 36px; object-fit: contain; display: block; border-radius: 8px; }
.ssvc-platform:hover { transform: scale(1.14); opacity: 1; }

/* ---- CTA pill button ---- */
.ssvc-pill {
  display: inline-flex; align-items: center;
  padding: 14px 26px;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  border-radius: var(--radius-sm); text-decoration: none; cursor: none;
  transition: border-radius .3s ease, background .2s, transform .2s;
  align-self: flex-start;
}
.ssvc-pill:hover { border-radius: var(--radius-md); }
.ssvc-nl .ssvc-pill      { background: var(--dark);   color: var(--light); }
.ssvc-pod .ssvc-pill     { background: var(--light);  color: var(--dark); }
.ssvc-consult .ssvc-pill { background: var(--orange); color: var(--dark); }
.ssvc-custom .ssvc-pill  { background: var(--dark);   color: var(--light); }

/* Form newsletter */
.ssvc-form { display: flex; flex-direction: column; gap: 10px; }
.ssvc-input {
  padding: 14px 20px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--dark); background: white;
  border: 1.5px solid rgba(29,29,29,.15);
  border-radius: var(--radius-sm); outline: none;
  transition: border-color .2s, border-radius .3s;
}
.ssvc-input::placeholder { color: rgba(29,29,29,.35); }
.ssvc-input:focus { border-color: var(--dark); border-radius: var(--radius-md); }
.ssvc-submit {
  padding: 14px 26px;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--light); background: var(--dark);
  border: none; border-radius: var(--radius-sm); cursor: none;
  transition: background .2s, border-radius .3s ease;
}
.ssvc-submit:hover { background: var(--orange); border-radius: var(--radius-md); }

/* Prix + CTA consultation */
.ssvc-consult-footer { display: flex; flex-direction: column; gap: 16px; }
.ssvc-price {
  font-family: var(--font-logo);
  font-size: 28px; font-weight: 900; letter-spacing: -1px;
  -webkit-text-stroke: 0.3px currentColor;
  color: rgba(245,242,239,.5);
}

/* ---- Zone droite : description + CTA ---- */
.ssvc-right {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 52px 56px;
}
.ssvc-desc {
  font-family: var(--font); font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400; line-height: 1.65;
}
.ssvc-nl .ssvc-desc      { color: rgba(29,29,29,.65); }
.ssvc-pod .ssvc-desc     { color: rgba(245,242,239,.45); }
.ssvc-consult .ssvc-desc { color: rgba(245,242,239,.45); }
.ssvc-custom .ssvc-desc  { color: rgba(29,29,29,.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { padding: 100px 24px 40px; border-right: none; border-bottom: 1.5px solid rgba(29,29,29,.3); overflow: visible; }
  .hero-right { height: 55vw; min-height: 280px; }
  .hero-img { object-position: center center; }
  .hero-form { flex-direction: column; }
  .hero-submit { width: 100%; }

  .logos-strip { padding: 24px 0; }

  .testimonials { padding: 60px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .testi-controls { flex-direction: row; }
  .testi-card { min-width: 85vw; }
  .testi-cta-card { min-width: 85vw; }

  .about { padding: 60px 0 72px; }
  .about-line { font-size: clamp(44px, 12vw, 96px); letter-spacing: -2px; }
  .about-line-1 { padding-left: 24px; }
  .about-line-2 { padding-right: 24px; }
  .about-line-3 { padding-left: 12%; }
  .about-line-4 { padding-right: 36px; }
  .about-small-wrap { height: auto; }
  .about-small { position: static; max-width: 100%; padding: 16px 24px 8px; }

  /* Services scroll — mobile : panneaux statiques empilés */
  .services-scroll { height: auto; }
  .services-sticky { position: static; height: auto; overflow: visible; padding: 0 16px; display: block; }
  .ssvc-panel {
    position: static; transform: none !important;
    grid-template-columns: 1fr; height: auto;
    border-radius: 20px; margin-bottom: 12px;
  }
  .ssvc-left { padding: 40px 32px 36px; justify-content: flex-start; gap: 28px; }
  .ssvc-right { padding: 24px 32px 40px; gap: 24px; justify-content: flex-start; }
  /* Podcast — couv carrée sur mobile */
  .ssvc-pod .ssvc-left { padding: 0; overflow: hidden; }
  .ssvc-pod .ssvc-tag { top: 20px; left: 24px; }
  .ssvc-pod-cover { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 0; }
  /* Marge avant le footer */
  .ssvc-panel:last-child { margin-bottom: 32px; }
  /* Images mémoires — galerie cliquable sous le bloc texte */
  .about-memoires {
    position: static;
    width: auto; height: auto;
    opacity: 1;
    display: flex; gap: 16px; justify-content: center;
    padding: 32px 24px 40px;
    pointer-events: all;
  }
  .about-memoire {
    position: static;
    width: calc(50% - 8px); height: auto;
    transform: none !important;
    cursor: zoom-in;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,.15);
    will-change: auto;
  }
  .ssvc-title { font-size: clamp(40px, 9vw, 64px); }
  .ssvc-consult-footer { flex-direction: column; gap: 14px; }
}
