:root{
  --bg:#0d0d0d;
  --accent:#c84b31;
  --muted:#e6e6e6;
  --nav-h:72px;
  --radius:10px;
}

/* === reset & base === */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:'Montserrat',sans-serif;
  background:var(--bg);
  color:#fff;
  -webkit-font-smoothing:antialiased;
  scroll-behavior:smooth;
}
img{max-width:100%;display:block}
a{color:inherit}

/* === NAV === */
.site-header{
  position:fixed; top:0; left:0; right:0;
  z-index:9999;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(6px);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 40px;
  max-width:1400px;
  margin:0 auto;
}
.logo{
  font-family:'Lora',serif;
  font-weight:700;
  letter-spacing:2px;
  font-size:1.2rem;
  color:#fff;
  text-decoration:none;
}
.nav-links a{
  color:#fffefe;
  margin-left:24px;
  text-transform:uppercase;
  font-weight:500;
  font-size:0.9rem;
  text-decoration:none;
  transition:color .25s ease, opacity .25s ease;
}
.nav-links a:hover{color:var(--accent)}
.nav-links a.active{color:var(--accent); opacity:1}

/* === HERO IMAGE (accueil) === */
.hero-bg{
  position:absolute;
  inset:0;
  background:url("1. images/1. acceuil/1. haut/hero-bg.jpg") no-repeat center center;
  background-size:cover;
  z-index:0;
}
.hero-caption{
  position:relative;
  z-index:2;
  text-align:center;
  color:#ffffff;
  padding:0 24px;
}
.hero-caption h1{
  font-family:'Lora',serif;
  font-size:clamp(2rem,6vw,4rem);
  letter-spacing:2px;
  margin-bottom:12px;
}
.hero-caption p{
  color:var(--muted);
  font-size:clamp(1rem,1.2vw,1.2rem);
  max-width:760px;
  margin:0 auto;
}

/* HERO pages (mariage/entreprise) — cadrage + moins de crop */
.page-hero{
  position: relative;
  height: 60vh;
  min-height: 420px;              /* évite l'effet trop zoom sur petits écrans */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%; /* remonte un peu le cadrage (moins "zoom visage") */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Sur mobile : on recadre encore différemment */
@media (max-width: 700px){
  .page-hero{
    height: 55vh;
    min-height: 360px;
    background-position: center 20%;
  }
}

/* === snap container === */
.snap-container{scroll-snap-type:y mandatory}
.section{
  min-height:calc(100vh - var(--nav-h));
  padding-top:var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:center;
  scroll-snap-align:start;
  position:relative;
  overflow:hidden;
}

/* === VISUAL GRID === */
.visual-grid{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  padding:10px;
  background:#fff;
}
.visual-grid .grid-item{
  position:relative;
  overflow:hidden;
  border:6px solid #fff;
  border-radius:4px;
  background:#fff;
}
.visual-grid .grid-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.visual-grid .grid-item:hover img{transform:scale(1.05)}
.visual-grid .large{grid-column:span 2; grid-row:span 2}

/* responsive */
@media (max-width:1000px){
  .visual-grid{grid-template-columns:repeat(2,1fr)}
  .visual-grid .large{grid-column:auto; grid-row:auto; height:50vh}
  .navbar{padding:14px 18px}
}

/* === TITRES SECTION (agence) === */
.projects-title,
.section-title{
  font-family:'Montserrat',sans-serif;
  font-size:2rem;
  text-align:center;
  margin:50px 0 18px;
  color:#fff;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* === PROJECTS GRID === */
.projects-section{
  padding:60px 20px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.projects-grid{
  width:100%;
  max-width:1200px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
@media (max-width:900px){
  .projects-grid{grid-template-columns:1fr}
}

/* === PROJECT CARD (CORRIGÉ : texte visible puis hover => voir le projet) === */
.project-card{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}
a.project-link{
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
}
.project-card img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .5s ease;
}
.project-card:hover img{transform:scale(1.05)}

/* overlay toujours présent */
.project-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.15));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  pointer-events:none; /* le lien reste clean */
}
.project-overlay h2,
.project-overlay p{
  margin:0;
  transition:opacity .25s ease, transform .25s ease;
}
.project-overlay h2{
  font-family:'Lora',serif;
  font-size:1.35rem;
}
.project-overlay p{
  color:#ddd;
  font-size:.98rem;
  margin-top:6px;
}

/* "Voir le projet" au centre, caché par défaut */
.view-project{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing:1px;
  font-size:1.1rem;
  opacity:0;
  transition:opacity .25s ease;
  pointer-events:none;
}
.view-project::after{content:" →"}

/* hover => on masque titre/desc et on affiche "voir le projet" */
.project-card:hover .project-overlay h2,
.project-card:hover .project-overlay p{
  opacity:0;
  transform:translateY(8px);
}
.project-card:hover .view-project{opacity:1}

/* === SHOWREEL === */
.showreel-wrap{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:40px;
  align-items:center;
  padding:0 20px;
}
.showreel-text{flex:1}
.showreel-text h2{font-family:'Lora',serif;margin-bottom:12px}
.showreel-text p{color:var(--muted); line-height:1.6}
.showreel-video{flex:1}
.video-16-9{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:10px;
  overflow:hidden;
}
.video-16-9 iframe{width:100%; height:100%; border:0; display:block}
@media(max-width:1000px){
  .showreel-wrap{flex-direction:column}
  .showreel-video{width:100%}
}

/* === Custom YouTube (thumbnail) === */
.custom-video{
  position:relative;
  width:100%;
  height:100%;
  aspect-ratio:16/9;
  background:#000;
  overflow:hidden;
  border-radius:12px;
}
.custom-video .thumbnail{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.custom-video img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.play-icon{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:78px;
  height:78px;
  clip-path:polygon(25% 15%, 25% 85%, 85% 50%);
  background:rgba(255,255,255,.72);
  transition:background .2s ease, transform .2s ease, opacity .2s ease;
}
.thumbnail:hover .play-icon{
  background:rgba(255,255,255,.85);
  transform:translate(-50%,-50%) scale(1.04);
  opacity:1;
}
.custom-video iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* === PAGE HERO (mariage & entreprise) === */
.page-hero{
  position:relative;
  height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}
.page-hero-text{
  position:relative;
  z-index:1;
  color:#fff;
  max-width:860px;
  padding:0 20px;
}
.page-hero-text h1{
  font-family:'Lora',serif;
  font-size:clamp(2rem,5vw,3rem);
  margin-bottom:12px;
}
.page-hero-text p{
  font-size:1.2rem;
  color:var(--muted);
}

/* === description centrée === */
.project-description{
  max-width:900px;
  margin:80px auto 40px;
  padding:0 20px;
  font-size:1.1rem;
  line-height:1.7;
  text-align:center;
}
.project-description h2{
  font-size:2rem;
  color:#fff;
  margin-bottom:12px;
}
.project-description p{
  color:#ddd;
}

/* === galerie === */
.project-gallery{
  max-width:1200px;
  margin:60px auto;
  padding:0 20px;
}
.project-gallery h2{
  text-align:center;
  margin-bottom:30px;
  font-family:'Lora',serif;
}

/* === VIDEO GRID === */
.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:1200px;
  margin:0 auto;
  padding:20px;
}
.video-item{
  aspect-ratio:16/9;
  background:#000;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
}
.video-item .custom-video{
  border-radius:10px;
}
@media (max-width:900px){
  .video-grid{grid-template-columns:1fr}
}

/* === CONTACT === */
.contact-wrap{
  width:100%;
  max-width:1000px;
  margin:0 auto;
  text-align:center;
  padding:30px 20px;
}
.contact-wrap h2{
  font-family:'Lora',serif;
  margin-bottom:18px;
  font-size:1.8rem;
}
#contact-form{
  width:100%;
  max-width:880px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:stretch;
}
.form-row{
  width:100%;
  display:flex;
  gap:12px;
}
.form-row--stacked{flex-direction:column}
#contact-form input,
#contact-form textarea,
#contact-form select{
  padding:14px;
  border-radius:8px;
  border:none;
  background:#111;
  color:#fff;
  font-size:1rem;
  outline:none;
  min-width:0;
}
.form-row input{flex:1 1 0}
#contact-form select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%),
    linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.12));
  background-position:
    calc(100% - 26px) center,
    calc(100% - 18px) center,
    calc(100% - 42px) center;
  background-size:10px 10px, 10px 10px, 1px 60%;
  background-repeat:no-repeat;
  cursor:pointer;
}
#contact-form textarea{
  width:100%;
  min-height:150px;
  resize:vertical;
}
#contact-form button{
  align-self:center;
  padding:12px 26px;
  border-radius:8px;
  border:none;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease;
}
#contact-form button:hover{transform:translateY(-2px); filter:brightness(.98)}
#form-message{
  margin-top:12px;
  font-weight:700;
  color:#4CAF50;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .35s ease, transform .35s ease;
  pointer-events:none;
}
#form-message.visible{opacity:1; transform:translateY(0)}

.contact-socials{
  margin-top:26px;
}

.contact-socials-title{
  color:rgba(255,255,255,.72);
  margin-bottom:12px;
  letter-spacing:.3px;
}

.social-links{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.social-card{
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  min-width:220px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff;
  box-shadow:0 16px 40px rgba(0,0,0,.35);
  transition:transform .18s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.social-card:hover{
  transform:translateY(-3px);
  border-color:rgba(200,75,49,.55);
  background:rgba(255,255,255,.05);
  box-shadow:0 18px 60px rgba(0,0,0,.42);
}

.social-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff;
}

.social-icon svg{
  width:22px;
  height:22px;
  display:block;
}

.social-card.instagram .social-icon{
  background:radial-gradient(circle at 30% 30%, #fefb64, transparent 45%),
             radial-gradient(circle at 70% 40%, #ff3a55, transparent 45%),
             linear-gradient(135deg, #ff9a3c, #c32aa3 55%, #7130d1);
}

.social-card.linkedin .social-icon{
  background:linear-gradient(135deg, #38b0ff, #0a66c2);
}

.social-label{
  display:flex;
  flex-direction:column;
  line-height:1.3;
}

.social-name{
  font-weight:800;
  letter-spacing:.4px;
}

.social-handle{
  color:rgba(255,255,255,.7);
  font-size:.92rem;
}

@media (max-width:600px){
  .social-card{min-width:0; width:100%;}
}

@media (max-width:700px){
  .form-row{flex-direction:column}
  #contact-form{max-width:92%}
}

/* === reveal animation (si utilisé) === */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease}
.reveal.visible{opacity:1; transform:translateY(0)}

/* =========================
   HERO VIDEO + PARTICLES
========================= */

.hero-video-section{
  position:relative;
  height:100vh;
  overflow:hidden;
  background:#000;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover; /* look agence */
  transform:scale(1.02); /* micro punch */
  filter:contrast(1.05) saturate(1.05);
}

#particle-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
}

.hero-ui{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
  z-index:3;
}

.hero-logo{
  font-family:'Lora',serif;
  font-weight:700;
  letter-spacing:6px;
  font-size:clamp(2.2rem, 7vw, 5rem);
  text-transform:uppercase;
  text-shadow:0 20px 80px rgba(0,0,0,.55);
  transition:opacity .3s ease, transform .3s ease;
}

.hero-subtitle{
  margin-top:12px;
  max-width:860px;
  color:rgba(255,255,255,.85);
  font-size:clamp(1rem, 1.3vw, 1.2rem);
  line-height:1.5;
  text-shadow:0 14px 60px rgba(0,0,0,.55);
  transition:opacity .3s ease, transform .3s ease;
}

/* Ce bloc “apparaît” après l’anim */
.hero-reveal{
  padding:80px 0 40px;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .8s ease, transform .8s ease;
}
.hero-reveal.visible{
  opacity:1;
  transform:translateY(0);
}

.hero-reveal-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.hero-reveal-inner h2{
  font-family:'Lora',serif;
  margin:0 0 14px;
}

.hero-reveal-inner p{
  color:rgba(255,255,255,.82);
  line-height:1.65;
  margin-bottom:26px;
}

/* Sticky “logo en haut” après scroll */
body.hero-stuck .site-header{
  background:rgba(0,0,0,0.72);
  backdrop-filter:blur(8px);
}

/* Hint scroll */
.scroll-hint{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  font-size:.78rem;
  letter-spacing:4px;
  opacity:.7;
  z-index:4;
  user-select:none;
}

/* Mobile: évite le trop gros texte */
@media (max-width:700px){
  .hero-subtitle{ max-width:92%; }
}
/* =========================
   AGENCY SECTIONS (HOME)
========================= */

.agency-section,
.case-section{
  padding:110px 0;
  background: radial-gradient(900px 600px at 20% 20%, rgba(200,75,49,.12), transparent 60%),
              radial-gradient(900px 600px at 80% 10%, rgba(255,255,255,.06), transparent 60%),
              #0d0d0d;
}

.agency-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.agency-kicker{
  letter-spacing:4px;
  text-transform:uppercase;
  font-size:.8rem;
  opacity:.75;
  margin-bottom:14px;
}

.agency-title{
  font-family:'Lora',serif;
  font-size:clamp(2rem, 3.2vw, 3rem);
  margin:0 0 14px;
}

.agency-lead{
  color:rgba(255,255,255,.82);
  line-height:1.7;
  max-width:820px;
  margin-bottom:34px;
}

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

.service-card{
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:16px;
  padding:22px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  transition:transform .25s ease, border-color .25s ease;
}

.service-card h3{
  font-family:'Lora',serif;
  margin-bottom:10px;
}

.service-card p{
  color:rgba(255,255,255,.78);
  line-height:1.6;
}

.service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(200,75,49,.38);
}

@media (max-width:900px){
  .service-grid{grid-template-columns:1fr}
}

/* =========================
   PROCESS (STICKY)
========================= */

.process-section{
  padding:120px 0;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,0)) , #0d0d0d;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.process-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
  align-items:start;
}

.process-left{
  position:sticky;
  top:calc(var(--nav-h) + 20px);
  padding-top:10px;
}

.proof-row{
  display:flex;
  gap:18px;
  margin-top:26px;
  flex-wrap:wrap;
}
.proof{
  flex:1 1 180px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:16px;
  background:rgba(255,255,255,.03);
}
.proof-number{
  font-size:2rem;
  font-weight:800;
  letter-spacing:1px;
}
.proof-label{
  margin-top:6px;
  color:rgba(255,255,255,.70);
  font-size:.95rem;
}

.process-right{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.step-card{
  border-radius:16px;
  padding:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}

.step-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.step-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:28px;
  border-radius:999px;
  background:rgba(200,75,49,.18);
  border:1px solid rgba(200,75,49,.30);
  font-weight:800;
  letter-spacing:1px;
}

.step-card h3{
  font-family:'Lora',serif;
  margin:0;
}

.step-card p{
  color:rgba(255,255,255,.75);
  line-height:1.65;
  margin:0;
}

.step-card.is-active{
  border-color:rgba(200,75,49,.42);
  background:linear-gradient(180deg, rgba(200,75,49,.12), rgba(255,255,255,.02));
  transform:translateY(-2px);
}

@media (max-width:900px){
  .process-inner{grid-template-columns:1fr}
  .process-left{position:relative; top:auto}
}

/* =========================
   BEFORE / AFTER
========================= */

.before-after{
  margin-top:24px;
}

.ba-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 28px 90px rgba(0,0,0,.45);
}

.ba-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ba-before{
  position:absolute;
  inset:0;
  overflow:hidden;
  border-right:2px solid rgba(255,255,255,.55);
}

.ba-range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
}

.ba-handle{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background:rgba(255,255,255,.75);
  box-shadow:0 0 0 6px rgba(0,0,0,.25);
  pointer-events:none;
}

.ba-labels{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  opacity:.8;
  letter-spacing:3px;
  font-size:.85rem;
}

/* =========================
   CTA STRIP
========================= */

.cta-strip{
  margin-top:34px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(90deg, rgba(200,75,49,.18), rgba(255,255,255,.02));
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.cta-strip h3{
  font-family:'Lora',serif;
  margin:0 0 8px;
}
.cta-strip p{
  margin:0;
  color:rgba(255,255,255,.78);
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
  justify-content:center;
  align-items:center;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  transition:transform .12s ease, filter .12s ease;
  border:1px solid transparent;
}
.cta-button:hover{transform:translateY(-2px); filter:brightness(.98)}
.cta-button.secondary{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.18);
}
.cta-button.secondary:hover{filter:brightness(1.02)}

@media (max-width:800px){
  .cta-strip{flex-direction:column; align-items:flex-start}
}

/* =========================
   REVEAL ON SCROLL
========================= */
.reveal-on-scroll{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal-on-scroll.is-visible{
  opacity:1;
  transform:translateY(0);
}
/* Particules : on donne un peu plus de place en bas (logo particules) */
.hero-video-section{
  height: 100vh;
}

.hero-ui{
  /* légèrement plus haut pour laisser la place au logo particules en bas */
  transform: translateY(-4vh);
}
/* =========================
   SHOWREEL: mieux équilibré (moins massif)
========================= */

.showreel-wrap{
  max-width: 1100px;
  gap: 70px;          /* plus d’air */
  align-items: center;
}

.showreel-text{
  flex: 1.25;         /* plus de place au texte */
  max-width: 560px;   /* évite texte trop large */
}

.showreel-video{
  flex: 0.85;         /* vidéo moins dominante */
  max-width: 520px;   /* limite la largeur */
  width: 100%;
}

.video-16-9{
  border-radius: 14px;
}

/* mobile: on garde vertical */
@media(max-width:1000px){
  .showreel-wrap{ gap: 26px; }
  .showreel-text{ max-width: 100%; }
  .showreel-video{ max-width: 100%; }
}
/* =========================
   HERO SHRINK (video -> bandeau)
========================= */

.hero-video-section{
  position: relative;
}

/* on anime le conteneur vidéo lui-même */
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* IMPORTANT: anim fluide */
  will-change: transform, border-radius, opacity, filter;
  transform-origin: center top;

  /* Valeurs par défaut (fullscreen) */
  transform: translate3d(0,0,0) scale(1);
  border-radius: 0px;
  box-shadow: none;
}

/* Quand la vidéo devient “bandeau” */
body.hero-shrink .hero-video{
  /* Le JS va piloter transform, on garde juste un style "final" si besoin */
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
}

/* Canvas doit suivre (mais reste fullscreen) */
#particle-canvas{
  will-change: opacity;
}

/* Titre en fondu + léger déplacement */
.hero-logo,
.hero-subtitle{
  will-change: opacity, transform;
}

/* Optionnel: quand shrink activé, le hint scroll disparaît */
body.hero-shrink .scroll-hint{
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

/* Sur mobile on réduit la "bandeau" (le JS s'adapte mais on sécurise) */
@media (max-width: 700px){
  body.hero-shrink .hero-video{
    border-radius: 14px;
  }
}

/* =========================
   PROJECT PREMIUM (style agence)
========================= */

.project-premium{
  padding-top: var(--nav-h);
  background: radial-gradient(900px 600px at 20% 10%, rgba(200,75,49,.10), transparent 60%),
              radial-gradient(900px 600px at 70% 0%, rgba(255,255,255,.06), transparent 60%),
              #0d0d0d;
}

.project-premium-hero{
  padding: 70px 0 40px;
}

.project-premium-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-kicker{
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .78;
  margin-bottom: 14px;
}

.project-premium-title{
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: .5px;
  margin: 0 0 18px;
  line-height: 1.05;
}

.project-premium-title-sub{
  display:block;
  font-family:'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
}

.project-premium-label{
  max-width: 980px;
  margin: 28px auto 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .95rem;
  color: rgba(255,255,255,.68);
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-premium-label::before{
  content: "";
  display: block;
  height: 1px;
  width: 42px;
  background: rgba(255,255,255,.18);
}

.project-premium-video{
  margin: 26px auto 22px;
  width: 100%;
  max-width: 980px;
}

.project-video{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  background: #000;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  display:block;
}

.project-premium-desc{
  max-width: 980px;
  margin: 0 auto;
  padding-top: 6px;
}

.project-premium-desc p{
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.project-meta{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.meta-item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 14px;
}

.meta-label{
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 8px;
}

.meta-value{
  color: rgba(255,255,255,.86);
  line-height: 1.4;
  font-weight: 600;
}

/* sections */
.project-premium-section{
  padding: 70px 0;
}

.project-premium-h2{
  font-family:'Lora',serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.project-premium-p{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 820px;
}

/* visuels forts grid */
.premium-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.premium-media{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 22px 70px rgba(0,0,0,.40);
}

.premium-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .55s ease;
}

.premium-media:hover img{
  transform: scale(1.03);
}

.premium-media.wide{
  grid-column: 1 / -1;
}

/* BTS grid */
.bts-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.bts-item{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 22px 70px rgba(0,0,0,.40);
}

.bts-item img{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:block;
}

.bts-item figcaption{
  padding: 12px 14px;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.bts-video video{
  width:100%;
  aspect-ratio: 16/9;
  background:#000;
  display:block;
}

.bts-caption{
  padding: 12px 14px;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* CTA */
.project-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg, rgba(200,75,49,.18), rgba(255,255,255,.02));
  padding: 22px;
}

/* responsive */
@media (max-width: 950px){
  .project-meta{ grid-template-columns: 1fr; }
  .premium-grid{ grid-template-columns: 1fr; }
  .bts-grid{ grid-template-columns: 1fr; }
  .bts-item img{ height: auto; }
  .project-cta{ flex-direction: column; align-items: flex-start; }
}
/* =========================
   PROJECT PREMIUM - V2 (title cut + panel + mosaic + albums)
========================= */

.big-type-wrap{
  position: relative;
  height: clamp(66px, 10vw, 110px);
  overflow: hidden;               /* le “coupé” */
  margin: 6px 0 6px;
  opacity: .95;
  pointer-events: none;
}

.big-type{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: .95;
  color: rgba(255,255,255,.08);
  transform: translateY(12px);    /* volontairement coupé en bas */
  white-space: nowrap;
}

/* panneau style “tableau” */
.project-panel{
  max-width: 980px;
  margin: 18px auto 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  overflow: hidden;
}

.panel-row{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.panel-row:first-child{ border-top: none; }

.panel-key{
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .8rem;
  opacity: .7;
}

.panel-val{
  color: rgba(255,255,255,.86);
  line-height: 1.5;
  font-weight: 600;
}

/* =========================
   MOSAIC GRID (mix media)
========================= */

.mosaic-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.mosaic-item{
  grid-column: span 4;            /* taille par défaut */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 22px 70px rgba(0,0,0,.40);
  position: relative;
}

/* variations */
.mosaic-item.is-wide{ grid-column: span 8; }
.mosaic-item.is-tall{ grid-row: span 2; }

.mosaic-item img,
.mosaic-item video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* hauteur “cadre” uniforme */
.mosaic-item{
  min-height: 240px;
}
.mosaic-item.is-tall{
  min-height: 500px;
}

.mosaic-item video{
  background: #000;
  filter: contrast(1.02) saturate(1.03);
}

/* caption subtil */
.mosaic-cap{
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .9rem;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
}

/* hover premium */
.mosaic-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 400px at 30% 20%, rgba(200,75,49,.16), transparent 60%),
              linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events:none;
}

.mosaic-item:hover::after{ opacity: 1; }

.mosaic-item img,
.mosaic-item video{
  transition: transform .6s ease;
}
.mosaic-item:hover img,
.mosaic-item:hover video{
  transform: scale(1.03);
}

/* responsive mosaic */
@media (max-width: 1050px){
  .mosaic-grid{ grid-template-columns: repeat(6, 1fr); }
  .mosaic-item{ grid-column: span 3; }
  .mosaic-item.is-wide{ grid-column: span 6; }
}
@media (max-width: 700px){
  .mosaic-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mosaic-item{ grid-column: span 2; min-height: 220px; }
  .mosaic-item.is-wide{ grid-column: span 2; }
  .mosaic-item.is-tall{ grid-row: auto; min-height: 260px; }
  .panel-row{ grid-template-columns: 1fr; gap: 6px; }
}

/* =========================
   ALBUMS (autres projets)
========================= */

.album-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.album-card{
  display: block;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 22px 70px rgba(0,0,0,.40);
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}

.album-media{
  height: 240px;
  overflow: hidden;
}
.album-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.album-info{
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.album-title{
  font-family:'Lora',serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.album-sub{
  color: rgba(255,255,255,.70);
  font-size: .95rem;
  line-height: 1.4;
}

/* hover super premium */
.album-card::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .25s ease;
  background: radial-gradient(700px 400px at 30% 20%, rgba(200,75,49,.18), transparent 60%),
              linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events:none;
}

.album-card:hover{
  transform: translateY(-4px);
  border-color: rgba(200,75,49,.38);
}
.album-card:hover::after{ opacity: 1; }
.album-card:hover .album-media img{ transform: scale(1.06); }

@media (max-width: 900px){
  .album-grid{ grid-template-columns: 1fr; }
  .album-media{ height: 220px; }
}
/* =========================
   COLLECTION PAGES (Entreprise / Mariage)
========================= */

.collection-premium{
  padding-top: var(--nav-h);
  background: radial-gradient(900px 600px at 20% 10%, rgba(200,75,49,.10), transparent 60%),
              radial-gradient(900px 600px at 70% 0%, rgba(255,255,255,.06), transparent 60%),
              #0d0d0d;
}

.collection-hero{
  position: relative;
  min-height: 72vh;
  padding: 70px 0 38px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 35%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.collection-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.72));
}

.collection-title{
  position: relative;
  z-index: 1;
  font-family: 'Lora', serif;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

.collection-sub{
  display:block;
  font-family:'Montserrat',sans-serif;
  font-weight:600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
}

.collection-panel{
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

/* mobile */
@media (max-width: 800px){
  .collection-hero{
    min-height: 78vh;
    background-position: center 25%;
  }
}

/* =========================
   HERO VIDEO (Entreprise / Mariage) — style index
========================= */

.page-hero-video{
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.page-hero-video video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  will-change: opacity, transform;
}

.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.75));
  opacity: .35;
  transition: opacity .2s linear;
}

.page-hero-ui{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  will-change: opacity, transform;
}

.page-hero-ui h1{
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-hero-ui p{
  color: rgba(255,255,255,.82);
  max-width: 850px;
  line-height: 1.6;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.page-hero-hint{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .78rem;
  letter-spacing: 4px;
  opacity: .75;
  user-select: none;
}

/* Section spacing cohérent */
.page-block{
  padding: 90px 0 40px;
}

.page-block .project-premium-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Un peu plus “agence” sur les titres de section */
.page-block h2{
  font-family: 'Lora', serif;
  font-size: 2rem;
  margin-bottom: 14px;
}

.page-block p.lead{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 850px;
  margin-bottom: 28px;
}
/* =========================
   NAV MOBILE (dropdown)
========================= */

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px;
}

.nav-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Mobile : on cache les liens, on affiche hamburger */
@media (max-width: 900px){
  .nav-toggle{ display:flex; }

  .nav-links{
    position:absolute;
    top: calc(100% + 10px);
    right: 18px;
    width: min(320px, calc(100vw - 36px));
    display:flex;
    flex-direction:column;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;

    background: rgba(0,0,0,.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 70px rgba(0,0,0,.55);

    opacity: 0;
    transform: translateY(-8px);
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-links a{
    margin-left: 0;           /* important: tu avais un margin-left desktop */
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 1rem;
    text-transform: none;      /* plus lisible sur mobile */
  }

  .nav-links a:hover{
    background: rgba(255,255,255,.06);
  }

  /* ouvert */
  body.nav-open .nav-links{
    opacity: 1;
    transform: translateY(0);
    pointer-events:auto;
  }

  /* anim hamburger -> X */
  body.nav-open .nav-toggle-bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  body.nav-open .nav-toggle-bar:nth-child(2){
    opacity:0;
  }
  body.nav-open .nav-toggle-bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* =========================
   HERO VIDEO size (mobile)
========================= */

@media (max-width: 700px){
  /* Page d'accueil */
  .hero-video-section{
    height: 82vh;      /* plus petit que 100vh */
  }

  /* Pages entreprise/mariage */
  .page-hero-video{
    height: 78vh;      /* un peu plus petit */
  }

  /* Titre un peu moins gros */
  .page-hero-ui h1{
    letter-spacing: 2px;
  }
}
/* =========================
   MOSAIC mini-grid (mobile)
   garde la forme desktop
========================= */

@media (max-width: 700px){
  .mosaic-grid{
    grid-template-columns: repeat(6, 1fr); /* au lieu de 2 colonnes */
    gap: 10px;
  }

  /* base */
  .mosaic-item{ 
    grid-column: span 3;     /* 2 items par ligne */
    min-height: 160px;       /* plus petit */
    border-radius: 14px;
  }

  /* wide = prend toute la ligne */
  .mosaic-item.is-wide{
    grid-column: span 6;
  }

  /* tall = plus haut mais pas énorme */
  .mosaic-item.is-tall{
    grid-row: span 2;
    min-height: 330px;
  }

  /* wide+tall = full width et plus haut */
  .mosaic-item.is-wide.is-tall{
    min-height: 360px;
  }

  /* captions plus discrètes */
  .mosaic-cap{
    font-size: .82rem;
    padding: 7px 9px;
    left: 10px;
    bottom: 10px;
  }
}
.navbar{ position: relative; }
/* =========================
   TRUST SECTION (Ils m'ont fait confiance)
========================= */

.trust-section{
  padding: 90px 0 40px;
}
.trust-section.section{
  min-height: auto;
  display: block;
  align-items: stretch;
  justify-content: flex-start;
  overflow: visible;
  scroll-snap-align: none;
  transform: none;
  position: static;
}

.trust-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-title{
  font-family: 'Lora', serif;
  font-size: 2rem;
  margin: 10px 0 12px;
}

.trust-lead{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 850px;
  margin-bottom: 28px;
}

/* logo strip */
.logo-strip{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  margin-bottom: 26px;
}

.logo-strip img{
  width: 100%;
  max-height: 46px;
  object-fit: contain;
  opacity: .78;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}

.logo-strip img:hover{
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

/* quote + video grid */
.trust-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: start;
}

.trust-quote{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.quote-mark{
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: 'Lora', serif;
  font-size: 5rem;
  color: rgba(255,255,255,.08);
  pointer-events: none;
}

.trust-quote p{
  color: rgba(255,255,255,.86);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.quote-meta{
  color: rgba(255,255,255,.70);
  font-size: .95rem;
}

/* video */
.trust-video{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px;
}

.trust-video .video-16-9{
  border-radius: 12px;
  overflow: hidden;
}

.trust-video-caption{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  font-size: .95rem;
}

/* responsive */
@media (max-width: 900px){
  .logo-strip{ grid-template-columns: repeat(3, 1fr); }
  .trust-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .logo-strip{ grid-template-columns: repeat(2, 1fr); }
}
/* =========================
   LOGO MARQUEE (boucle infinie)
========================= */

.logo-marquee{
  position: relative;
  margin: 18px 0 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  padding: 14px 0;
}

/* gradients de bord pour un effet premium */
.logo-marquee::before,
.logo-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 80px;
  z-index: 2;
  pointer-events:none;
}

.logo-marquee::before{
  left:0;
  background: linear-gradient(to right, rgba(13,13,13,1), rgba(13,13,13,0));
}
.logo-marquee::after{
  right:0;
  background: linear-gradient(to left, rgba(13,13,13,1), rgba(13,13,13,0));
}

.logo-marquee-track{
  display:flex;
  width: max-content;
  will-change: transform;
  animation: logoMarquee 16s linear infinite;
}

.logo-marquee-group{
  display:flex;
  align-items:center;
  gap: 55px;
  padding: 0 24px;
}

.logo-marquee-group img{
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: .92;
  filter: none;
  transition: transform .25s ease;
}

@keyframes logoMarquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* mobile: un peu plus lent + logos un poil plus petits */
@media (max-width: 700px){
  .logo-marquee-track{
    animation: logoMarquee 15s linear infinite;
    transform: translateX(0);
  }
  .logo-marquee-group{ gap: 34px; }
  .logo-marquee-group img{ height: 44px; }
  .logo-marquee::before,
  .logo-marquee::after{ width: 56px; }
}

/* accessibilité: si l’utilisateur préfère réduire les animations */
@media (prefers-reduced-motion: reduce){
  .logo-marquee-track{
    animation: none;
    transform: none;
  }
}

/* ===== TRUST: player stable (anti-zoom) ===== */
.trust-section{
  padding: 90px 0 40px;
  overflow: visible;
  display: block;
}

.trust-section .video-16-9,
.trust-section .custom-video{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  transform: none !important;
  animation: none !important;
  will-change: auto !important;
  isolation: isolate;
  transform-style: flat;
  perspective: none;
}

.trust-section .video-16-9{
  padding-top: 56.25%; /* 16/9 */
  height: auto;
}

.trust-section .custom-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.trust-section .custom-video .thumbnail{
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.trust-section .custom-video .thumbnail img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.trust-section .custom-video .play-icon{
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.trust-section .thumbnail:hover .play-icon{
  transform: scale(1.04);
}

.trust-section .custom-video iframe,
.trust-section .custom-video img{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  will-change: auto !important;
}

/* verrouille toute animation/zoom sur le bloc témoignage */
.trust-section .trust-video,
.trust-section .trust-video *{
  transform: none !important;
  transition: none !important;
  backface-visibility: hidden;
  animation: none !important;
  will-change: auto !important;
  isolation: isolate;
  contain: layout paint style;
  z-index: 1;
  transform-style: flat;
  perspective: none;
}

/* Désactive l’animation reveal pour éviter tout shift/zoom résiduel dans cette section */
.trust-section .reveal-on-scroll{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =========================
   SEO TEXT BLOCK
========================= */
.seo-section{
  padding: 60px 0 80px;
  background: rgba(255,255,255,.02);
}
.seo-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
}
.seo-section h2{
  font-family:'Lora',serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
