/* Ultra premium one-page — La Manufacture Partagée */
:root{
  /* Light — mode jour amélioré, plus lisible et premium */
  --bg:#faf8f5;
  --panel:rgba(255,255,255,.75);
  --panel2:rgba(255,255,255,.60);
  --text:#1a1a1a;
  --muted:#5a5a5a;
  --line:rgba(0,0,0,.12);
  --shadow: 0 22px 70px rgba(0,0,0,.18);
  --shadow2: 0 12px 34px rgba(0,0,0,.14);
  --accent:#a67c2f;
  --accent2:#c9a45c;
  --radius:22px;
  --radius2:28px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --fontDisplay: ui-serif, Georgia, "Times New Roman", Times, serif;
  --stroke:rgba(0,0,0,.14);
  --card:rgba(255,255,255,.80);
}

[data-theme="dark"]{
  /* Dark (par défaut) — luxe noir */
  --bg:#070707;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --text:#f4f4f4;
  --muted:#b7b7b7;
  --line:rgba(255,255,255,.10);
  --shadow: 0 26px 85px rgba(0,0,0,.62);
  --shadow2: 0 14px 40px rgba(0,0,0,.48);
  --accent:#c9a45c;
  --accent2:#f0d8a8;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
}

.bg{
  position:fixed; inset:0;
  background-image:url("assets/bg-bubbles.svg");
  background-size:cover;
  background-position:center;
  filter:saturate(.8) contrast(1.05) brightness(1.02);
  z-index:-2;
}
[data-theme="dark"] .bg{
  filter:saturate(.65) brightness(.35) contrast(1.1);
}

.bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(201,164,92,.12), rgba(0,0,0,0) 55%),
    radial-gradient(900px 650px at 90% 25%, rgba(240,216,168,.08), rgba(0,0,0,0) 60%),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.55));
  pointer-events:none;
  z-index:-1;
}
[data-theme="light"] .bg::after{
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(166,124,47,.16), rgba(255,255,255,0) 55%),
    radial-gradient(900px 650px at 90% 25%, rgba(201,164,92,.14), rgba(255,255,255,0) 60%),
    linear-gradient(to bottom, rgba(255,255,255,.45), rgba(250,248,245,.15));
}

.container{
  width:min(var(--max), calc(100% - 44px));
  margin:0 auto;
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(255,255,255,.70), rgba(255,255,255,.55));
  border-bottom:1px solid var(--line);
}
[data-theme="dark"] .topbar{
  background: linear-gradient(to bottom, rgba(7,7,7,.82), rgba(7,7,7,.55));
}
[data-theme="light"] .topbar{
  background: linear-gradient(to bottom, rgba(255,255,255,.75), rgba(255,255,255,.62));
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:10px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit;}
.brand__logo{
  width:42px; height:42px; border-radius:12px;
  object-fit:cover;
  box-shadow: var(--shadow2);
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
}
.brand__logo--wide{
  /* Logo principal (large) : lisible et "bien voyant" */
  width:140px;
  height:46px;
  border-radius:16px;
  object-fit:contain;
  padding:6px;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.40));
}
.brand__name{font-weight:800; letter-spacing:-.02em; line-height:1.05}
.brand__tag{font-size:12px; color:var(--muted); margin-top:2px}

.topbar__nav{
  display:flex; gap:18px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--panel2);
  border:1px solid var(--line);
}
.navlink{
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
}
.navlink:hover{color:var(--text)}
.topbar__actions{display:flex; align-items:center; gap:10px}

.iconbtn{
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--panel2);
  color:var(--text);
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.iconbtn svg{width:20px; height:20px; fill:currentColor}
.iconbtn:hover{transform: translateY(-1px); background:var(--panel)}

.cta{
  position:relative;
  height:42px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid rgba(201,164,92,.40);
  background: linear-gradient(135deg, rgba(201,164,92,.96), rgba(240,216,168,.92));
  color:white;
  font-weight:800;
  cursor:pointer;
  box-shadow: var(--shadow2);
  display:flex;
  align-items:center;
  gap:10px;
  overflow:hidden;
  transform-origin:center;
  animation: ctaShake 3.5s ease-in-out infinite;
}
.cta__pulse{
  width:10px;height:10px;border-radius:999px;
  background:rgba(255,255,255,.95);
  box-shadow: 0 0 0 0 rgba(255,255,255,.55);
  animation:pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,.55)}
  70%{box-shadow:0 0 0 12px rgba(255,255,255,0)}
  100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}
}
@keyframes ctaShake{
  0%, 92%, 100%{transform:translateX(0)}
  94%{transform:translateX(-2px)}
  96%{transform:translateX(2px)}
  98%{transform:translateX(-1px)}
}
.cta.isRevealed{
  border-color: rgba(240,216,168,.55);
  background: linear-gradient(135deg, rgba(201,164,92,.92), rgba(240,216,168,.88));
  animation:none;
}
.cta:active{transform:scale(.98)}

.sparkles{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.hero{
  padding:46px 0 22px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:stretch;
}
.pill{
  display:inline-flex; align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:var(--panel2);
  border:1px solid var(--line);
  font-weight:700;
  color:var(--muted);
  font-size:12px;
}
h1{
  margin:14px 0 12px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height:1.05;
  letter-spacing:-.03em;
  font-family: var(--fontDisplay);
  font-weight: 800;
}
.section__head h2,
h2{
  font-family: var(--fontDisplay);
  letter-spacing: -.02em;
}
.accent{color:var(--accent)}
.lead{
  font-size:15.5px;
  color:var(--muted);
  line-height:1.55;
  margin:0 0 18px;
}
.hero__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin: 16px 0 18px;
}
.kpi{
  padding:14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(8px);
}
[data-theme="light"] .kpi{
  background: rgba(255,255,255,.50);
}
.kpi__v{font-weight:900; letter-spacing:-.02em}
.kpi__l{font-size:12px; color:var(--muted); margin-top:3px}

.hero__buttons{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:800;
  color:var(--text);
  background:var(--panel2);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background:var(--panel)}
.btn.primary{
  border-color: rgba(201,164,92,.40);
  background: linear-gradient(135deg, rgba(201,164,92,.96), rgba(240,216,168,.92));
  color:white;
}
.btn.ghost{
  background: transparent;
}
.fineprint{
  font-size:12px;
  color:var(--muted);
  margin-top:12px;
}

.hero__media{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow:hidden;
  padding:14px;
}
.carousel{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
}
.carousel__track{
  display:flex;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.carousel img{
  width:100%;
  height:420px;
  flex: 0 0 100%;
  /* IMPORTANT: éviter le recadrage — on conserve l’intégralité de l’asset */
  object-fit:contain;
  background:
    radial-gradient(1200px 420px at 20% 15%, rgba(201,164,92,.14), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
  display:block;
}
.carousel__btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:42px;height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  font-size:26px;
  color:#0b1220;
  cursor:pointer;
}
[data-theme="dark"] .carousel__btn{background:rgba(15,23,42,.55); color:#e8eef8}
.carousel__btn.prev{left:10px}
.carousel__btn.next{right:10px}
.carousel__dots{
  position:absolute;
  left:0; right:0; bottom:10px;
  display:flex; justify-content:center; gap:8px;
}
.dot{
  width:8px;height:8px;border-radius:999px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.12);
  cursor:pointer;
}
.dot.isActive{background:var(--accent); border-color:rgba(0,0,0,.10)}
[data-theme="dark"] .dot{background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.10)}
[data-theme="dark"] .dot.isActive{background:rgba(201,164,92,.95); border-color:rgba(240,216,168,.28)}

.badge{
  margin-top:12px;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid var(--line);
  background:var(--panel2);
  display:flex;
  flex-direction:column;
  gap:2px;
}
.badge__title{font-weight:900}
.badge__text{font-size:12px;color:var(--muted)}

.section{
  padding:56px 0;
}
.section.alt{
  background: linear-gradient(to bottom, rgba(255,255,255,.45), rgba(255,255,255,.28));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
[data-theme="dark"] .section.alt{
  background: linear-gradient(to bottom, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
[data-theme="light"] .section.alt{
  background: linear-gradient(to bottom, rgba(255,255,255,.55), rgba(250,248,245,.42));
}
.section__head{
  max-width:720px;
}
h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing:-.02em;
}
.section__head p{color:var(--muted); margin:0; line-height:1.55}

.cards{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.15);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(8px);
}
[data-theme="light"] .card{
  background: rgba(255,255,255,.45);
}
.card__icon{font-size:22px}
.card h3{margin:10px 0 8px; font-size:16px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.55; font-size:13.5px}
.list{margin:0; padding-left:18px; color:var(--muted); font-size:13px}
.list li{margin:6px 0}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.lead2{color:var(--muted); line-height:1.6; margin:0 0 14px}

.highlights{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin:14px 0 16px;
}
.highlight{
  padding:12px 12px;
  border-radius:18px;
  border:1px solid var(--line);
  background: var(--panel2);
}
.highlight__t{font-weight:900}
.highlight__d{font-size:12.5px; color:var(--muted); margin-top:3px; line-height:1.5}

.note{
  margin-top:14px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(8px);
}
[data-theme="light"] .note{
  background: rgba(255,255,255,.48);
}
.note.small{margin-top:18px}
.note__title{font-weight:900; margin-bottom:10px}
.note__grid{
  display:grid;
  gap:10px;
}
.note__grid span{display:block; font-size:12px; color:var(--muted)}
.note__grid strong{display:block}

.mediaStack{
  display:grid;
  gap:12px;
}
.shot{
  width:100%;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  background:rgba(255,255,255,.7);
}

.masonry{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.masonry img{
  width:100%;
  height:240px;
  /* Les affiches / photos portrait ne doivent pas être coupées */
  object-fit:contain;
  background:
    radial-gradient(900px 300px at 10% 10%, rgba(201,164,92,.10), rgba(0,0,0,0)),
    rgba(255,255,255,.72);
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.masonry img:nth-child(1){grid-column: span 7; height:300px}
.masonry img:nth-child(2){grid-column: span 5; height:300px}
.masonry img:nth-child(3){grid-column: span 4}
.masonry img:nth-child(4){grid-column: span 8}
.masonry img:nth-child(5){grid-column: span 6}
.masonry img:nth-child(6){grid-column: span 6}

.reviews{
  display:grid;
  gap:12px;
  margin:14px 0 14px;
}
.review{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(8px);
}
[data-theme="light"] .review{
  background: rgba(255,255,255,.48);
}
.review__top{display:flex; justify-content:space-between; align-items:center}
.review__name{font-weight:900}
.review__stars{color:var(--accent); letter-spacing:1px}
.review p{margin:10px 0 0; color:var(--muted); line-height:1.55}

.mapCard{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mapCard iframe{width:100%; height:420px; border:0; display:block}
.mapPlaceholder{
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.05));
  padding:32px;
  text-align:center;
}
.mapPlaceholder__content{
  max-width:420px;
}
.mapCard__meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  padding:12px 14px;
  border-top:1px solid var(--line);
}
.mapCard__meta strong{display:block}
.mapCard__meta span{display:block; color:var(--muted); font-size:12.5px; margin-top:2px}

.contactCards{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:14px;
}
.contactCard{
  text-decoration:none; color:inherit;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow2);
  transition: transform .15s ease;
}
.contactCard:hover{transform: translateY(-1px)}
.contactCard__k{font-size:12px; color:var(--muted)}
.contactCard__v{font-weight:900; margin-top:4px}
.contactCard__s{font-size:12px; color:var(--muted); margin-top:4px}

.form{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.form__row{display:grid; gap:6px; margin-bottom:12px}
label{font-size:12px; color:var(--muted); font-weight:700}
input, textarea{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.45);
  color: var(--text);
  padding:12px 12px;
  outline:none;
  font: inherit;
}
[data-theme="dark"] input, [data-theme="dark"] textarea{
  background: rgba(255,255,255,.06);
}
[data-theme="light"] input, [data-theme="light"] textarea{
  background: rgba(255,255,255,.65);
}
textarea{resize:vertical; min-height:120px}
input:focus, textarea:focus{border-color: rgba(14,165,233,.55)}

.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
[data-theme="dark"] .footer{background: rgba(7,11,18,.35)}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.footer__brand{font-weight:900}
.footer__meta{font-size:12px; color:var(--muted); margin-top:3px}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.linklike{
  border:0;
  background:transparent;
  color:var(--muted);
  font-size:12px;
  cursor:pointer;
  text-decoration:underline;
  padding:6px 8px;
  border-radius:12px;
}
.linklike:hover{color:var(--text); background:var(--panel2)}

.modal{
  position:fixed; inset:0;
  display:none;
  z-index:80;
}
.modal.isOpen{display:block}
.modal__overlay{
  position:absolute; inset:0;
  background: rgba(2,6,23,.5);
}
.modal__panel{
  position:relative;
  width:min(860px, calc(100% - 30px));
  margin: 7vh auto;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow:hidden;
  /* mobile friendly */
  max-height: 86vh;
}
.modal__head{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
}
.modal__content{
  padding:14px;
  color:var(--muted);
  line-height:1.6;
  font-size:13.5px;
  overflow:auto;
  max-height: calc(86vh - 64px);
}
.modal__content h4{color:var(--text); margin:14px 0 8px}
.modal__content p{margin:0 0 10px}

@media (max-width: 980px){
  .topbar__nav{display:none}
  .hero__grid, .split{grid-template-columns: 1fr}
  .carousel img{height:340px}
  .cards{grid-template-columns: 1fr 1fr}
  .masonry img{height:220px}
  .masonry img:nth-child(1), .masonry img:nth-child(2){grid-column: span 12}
  .masonry img:nth-child(3), .masonry img:nth-child(4), .masonry img:nth-child(5), .masonry img:nth-child(6){grid-column: span 6}
}
@media (max-width: 560px){
  .container{width:min(var(--max), calc(100% - 28px))}
  .brand__text{display:none}
  .brand__logo--wide{width:100px; height:38px; padding:5px; border-radius:12px}
  .cards{grid-template-columns: 1fr}
  .hero__kpis{grid-template-columns: 1fr}
  .masonry{grid-template-columns: repeat(6, 1fr)}
  .masonry img:nth-child(3), .masonry img:nth-child(4), .masonry img:nth-child(5), .masonry img:nth-child(6){grid-column: span 6}
  .mapCard__meta{grid-template-columns: 1fr}

  /* Optimisation topbar mobile - ergonomie améliorée */
  .topbar .container{width:min(var(--max), calc(100% - 20px))}
  .topbar__inner{gap:8px; padding:8px 0; flex-wrap:nowrap}
  .topbar__actions{gap:6px; flex-shrink:0}
  .brand{flex-shrink:0}
  .iconbtn{width:40px; height:40px; border-radius:12px}
  .iconbtn svg{width:18px; height:18px}
  .cta{height:40px; border-radius:14px; padding:0 14px; font-size:13px; white-space:nowrap}

  /* Optimisation mobile pour la section contact */
  .split{grid-template-columns: 1fr; gap:18px}
  .form{padding:14px}
  .form__row{margin-bottom:10px}
  input, textarea{padding:10px 12px; font-size:16px}
  .contactCards{gap:10px}
  .contactCard{padding:12px}
  .btn{font-size:14px; height:42px; padding:0 14px}

  /* Amélioration logo mobile */
  .logo-top{padding:15px 0 8px}
  .logo-top img{max-width:280px; width:85%}
}

@media (max-width: 420px){
  /* Topbar ultra compact et ergonomique pour très petits écrans */
  .topbar .container{width:min(var(--max), calc(100% - 16px))}
  .brand__logo--wide{width:85px; height:34px; padding:4px}
  .topbar__inner{gap:5px; padding:6px 0}
  .topbar__actions{gap:4px}
  .iconbtn{width:36px; height:36px; border-radius:10px}
  .iconbtn svg{width:16px; height:16px}
  .cta{height:36px; border-radius:11px; padding:0 10px; font-size:12px}
  .carousel img{height:300px}
  .modal__panel{width: calc(100% - 22px); margin: 6vh auto; max-height: 90vh}
  .modal__content{max-height: calc(90vh - 64px)}

  /* Section contact très petits écrans */
  .container{width:min(var(--max), calc(100% - 20px))}
  .form{padding:12px; border-radius:18px}
  .form__row{margin-bottom:8px}
  input, textarea{padding:10px; font-size:16px; border-radius:14px}
  textarea{min-height:100px}
  .contactCard{padding:10px; font-size:14px}
  .contactCard__v{font-size:15px}
  .btn{height:40px; padding:0 12px; font-size:14px; border-radius:14px}

  /* Texte plus lisible sur petit écran */
  h1{font-size:24px}
  h2{font-size:20px}
  .lead{font-size:14px}
  .lead2{font-size:14px}

  /* Logo optimisé petit écran */
  .logo-top{padding:12px 0 6px}
  .logo-top img{max-width:240px; width:90%}

  /* Espacement sections */
  .section{padding:42px 0}
}

/* ===== Added premium sections (MOF / Presse / Tarifs) ===== */
.mofGrid{display:grid; grid-template-columns: 1.25fr .75fr; gap:18px; align-items:stretch}
.mofCard{border:1px solid var(--stroke); background:rgba(40,40,40,.95); border-radius:18px; padding:18px; box-shadow: 0 24px 70px rgba(0,0,0,.14)}
.mofCard__top{display:flex; gap:14px; align-items:center; padding-bottom:14px; border-bottom:1px solid var(--stroke); margin-bottom:14px}
.mofCard__top img{width:66px; height:auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.18))}
.mofCard__title{font-weight:800; letter-spacing:-0.02em}
.mofCard__sub{color:var(--muted); margin-top:2px}
.mofActions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}

.mofMedia{position:relative; border:1px solid var(--stroke); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0)); border-radius:18px; overflow:hidden; box-shadow: 0 24px 70px rgba(0,0,0,.16)}
.mofMedia__img{
  width:100%; height:100%;
  /* pas de recadrage : médaille / visuels doivent rester lisibles */
  object-fit:contain;
  display:block;
  min-height: 320px;
  background:
    radial-gradient(900px 360px at 25% 20%, rgba(201,164,92,.12), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
}
.mofMedia__btn{position:absolute; left:14px; bottom:14px; padding:10px 12px; border-radius:999px; border:1px solid var(--stroke); background: rgba(0,0,0,.35); color: var(--text); backdrop-filter: blur(10px); cursor:pointer}
.mofMedia__btn:hover{transform: translateY(-1px)}

.h3{font-size:18px; margin:0}

.miniCarousel{position:relative; border:1px solid var(--stroke); border-radius:18px; overflow:hidden; background:rgba(40,40,40,.95)}
.miniCarousel .carousel__track{display:flex; transition: transform 600ms cubic-bezier(.2,.9,.2,1)}
.miniCarousel img{
  width:100%; flex: 0 0 100%;
  height: 500px;
  object-fit: contain;
  background:
    radial-gradient(900px 360px at 25% 20%, rgba(201,164,92,.10), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
}

.pressGrid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px}
.pressCard{border:1px solid var(--stroke); border-radius:18px; overflow:hidden; background:rgba(40,40,40,.95); display:flex; flex-direction:column; box-shadow: 0 24px 70px rgba(0,0,0,.12)}
.pressCard__media{aspect-ratio: 16/10; overflow:hidden}
.pressCard__media{background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0))}
.pressCard__media img{
  width:100%; height:100%;
  object-fit:contain;
  display:block;
}
.pressCard__body{padding:16px}
.pressCard__body h3{margin:0 0 6px; font-size:18px}
.pressCard__body p{margin:0 0 12px; color:var(--muted)}
.pressActions{display:flex; gap:10px; flex-wrap:wrap}

.docRow{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 18px}
.docPill{display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:999px; border:1px solid var(--stroke); background:rgba(255,255,255,.04); color:var(--text); cursor:pointer; text-decoration:none}
.docPill:hover{transform: translateY(-1px)}
.docPill__k{font-weight:800}
.docPill__v{color:var(--muted)}

/* Modal lightbox */
.lightbox img{width:100%; height:auto; border-radius:14px; border:1px solid var(--stroke); background: rgba(0,0,0,.25)}
.lightbox__actions{display:flex; justify-content:flex-end; margin-top:12px}
.docList{display:grid; gap:10px; margin-top:10px}
.docLink{display:block; padding:12px 14px; border-radius:14px; border:1px solid var(--stroke); text-decoration:none; color:var(--text); background: rgba(255,255,255,.04)}
.docLink:hover{transform: translateY(-1px)}

@media (max-width: 900px){
  .mofGrid{grid-template-columns: 1fr}
  .pressGrid{grid-template-columns: 1fr}
  .miniCarousel img{height: 300px}
}

/* Optimisations supplémentaires pour mobile */
@media (max-width: 560px){
  .mofCard{padding:14px}
  .mofCard__top{flex-direction:column; align-items:flex-start; gap:10px}
  .mofCard__top img{width:50px}
  .mofActions{flex-direction:column}
  .mofActions .btn{width:100%}

  .pressCard{margin-bottom:12px}
  .pressCard__body{padding:12px}
  .pressActions{flex-direction:column}
  .pressActions .btn{width:100%}

  .docRow{flex-direction:column}
  .docPill{width:100%; justify-content:space-between}

  .note{padding:12px}
  .note.small{padding:10px}

  .hero__buttons{flex-direction:column; width:100%}
  .hero__buttons .btn{width:100%; justify-content:center}

  .miniCarousel img{height:260px}

  .reviews{gap:10px}
  .review{padding:12px}

  .footer__inner{flex-direction:column; text-align:center}
  .footer__links{justify-content:center}
}

@media (max-width: 420px){
  .mofCard{padding:12px}
  .mofCard__title{font-size:15px}
  .mofCard__sub{font-size:12px}

  .miniCarousel img{height:220px}
  .carousel img{height:260px}

  .kpi{padding:10px}
  .kpi__v{font-size:15px}
  .kpi__l{font-size:11px}
}

/* FIX CENTRAGE IMAGE SECTION TRANSMISSION (Desktop uniquement) */
@media (min-width: 981px) {
  .container.split {
    align-items: center;
  }
}

.mediaStack {
  display: flex;
  justify-content: center;
}

.mediaStack img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.logo-top {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}

.logo-top img {
  max-width: 320px;
  width: 80%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-top img:hover {
  transform: scale(1.1);
}

/* ===== FEUX D'ARTIFICE MOF ===== */
.mof-fireworks-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(3px);
}

.mof-fireworks-overlay.fade-out {
  animation: fadeOut 1s ease forwards;
}

.mof-fireworks-content {
  position: relative;
  z-index: 10001;
  text-align: center;
  animation: zoomIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mof-fireworks-title {
  font-family: var(--fontDisplay);
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  color: #f0d8a8;
  text-shadow:
    0 0 20px rgba(201, 164, 92, 0.8),
    0 0 40px rgba(240, 216, 168, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.5);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mof-fireworks-subtitle {
  font-family: var(--fontDisplay);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  color: #c9a45c;
  text-shadow:
    0 0 15px rgba(201, 164, 92, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 10px 0 0;
  letter-spacing: 0.05em;
}

#fireworksCanvas {
  position: absolute;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Curseur pointer pour les éléments MOF */
.mof-fixed,
.mofCard__top img {
  cursor: pointer !important;
  transition: transform 0.2s ease;
}

.mof-fixed:hover,
.mofCard__top img:hover {
  transform: scale(1.05);
}

/* ===== BOX CTA CONTACT ===== */
.contact-cta-box {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 42px 32px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-cta-box__logo {
  margin-bottom: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-cta-box__logo:hover {
  transform: scale(1.08);
}

.contact-cta-box__logo img {
  max-width: 200px;
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.contact-cta-box__content h3 {
  font-family: var(--fontDisplay);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.contact-cta-box__content p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 28px;
}

.contact-cta-box__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 120px;
  padding: 20px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel2);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow2);
}

.contact-icon-btn:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--accent);
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(201, 164, 92, 0.25);
}

.contact-icon-btn svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.contact-icon-btn:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.contact-icon-btn__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* Animation révélation numéro */
@keyframes revealPhone {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
  }
  50% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.contact-icon-btn.revealed {
  background: linear-gradient(135deg, rgba(201,164,92,.96), rgba(240,216,168,.92));
  border-color: rgba(201,164,92,.40);
  color: white;
}

.contact-icon-btn.revealed svg,
.contact-icon-btn.revealed .contact-icon-btn__label {
  color: white;
}

.contact-icon-btn__label.phone-number {
  animation: revealPhone 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 15px;
}

/* Responsive */
@media (max-width: 560px) {
  .contact-cta-box {
    padding: 32px 24px;
  }

  .contact-cta-box__actions {
    gap: 12px;
  }

  .contact-icon-btn {
    width: 100px;
    padding: 16px 12px;
  }

  .contact-icon-btn svg {
    width: 28px;
    height: 28px;
  }

  .contact-icon-btn__label {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .contact-cta-box {
    padding: 28px 20px;
  }

  .contact-cta-box__logo img {
    max-width: 160px;
  }

  .contact-icon-btn {
    width: 90px;
    padding: 14px 10px;
  }
}