/* =========================
   PRESTATION (GLOBAL)
   ========================= */

.prestation-page{ padding: 12px 0 90px; }

/* Chips nav (commun) */
.prestation-nav{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
}

.prestation-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.80);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 10px;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}
.prestation-chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  opacity: 1;
}
.prestation-chip.is-active{
  border-color: rgba(138,161,89,.65);
  background: rgba(138,161,89,.14);
  color: rgba(255,255,255,.92);
}



/* ======================================
   PORTRAIT (ton design clean)
   Scoped: .prestation-portrait
   ====================================== */

.prestation-portrait .prestation-hero{ padding: 26px 0 18px; }

.prestation-portrait .prestation-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.prestation-portrait .prestation-kicker{
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 10px;
  padding-top: 10px;
}

.prestation-portrait .prestation-head{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 14px;
  align-items:start;
}

.prestation-portrait .brandline{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.prestation-portrait .brandline-logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,0)),
    rgba(255,255,255,.04);
}

.prestation-portrait .brandline-text{
  color: rgba(255,255,255,.86);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.prestation-portrait .prestation-title{
  margin: 0 0 6px;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: .01em;
}

.prestation-portrait .prestation-lead{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 62ch;
  font-size: 14px;
}

.prestation-portrait .prestation-actions{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.prestation-portrait .prestation-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0b0b0f;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, opacity .12s ease;
}
.prestation-portrait .prestation-cta:hover{ transform: translateY(-1px); }
.prestation-portrait .prestation-cta:active{ transform: translateY(0); }

.prestation-portrait .prestation-cta.ghost{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.16);
}

.prestation-portrait .prestation-link{
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .04em;
}
.prestation-portrait .prestation-link:hover{ text-decoration: underline; opacity: .9; }

/* Card */
.prestation-portrait .prestation-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}

.prestation-portrait .prestation-price{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.prestation-portrait .prestation-card-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  color: rgba(255,255,255,.70);
  margin-bottom: 8px;
}

.prestation-portrait .prestation-list{
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}

.prestation-portrait .prestation-list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}
.prestation-portrait .prestation-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.prestation-portrait .prestation-note{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  font-size: 13px;
}

/* Gallery portrait */
.prestation-portrait .prestation-gallery{ padding-top: 18px; }

.prestation-portrait .prestation-section-head{ margin-bottom: 12px; }
.prestation-portrait .prestation-section-head h2{ margin: 0 0 6px; font-size: 18px; }
.prestation-portrait .prestation-section-head p{ margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.6; }

.prestation-portrait .prestation-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.prestation-portrait .prestation-shot{
  grid-column: span 6;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
  transition: transform .55s ease, filter .55s ease;
}
.prestation-portrait .prestation-shot:hover{
  transform: translateZ(0) scale(1.02);
  filter: brightness(1.05);
}

.prestation-portrait .prestation-inline-link{ margin-top: 10px; }
.prestation-portrait .accent-link{ color: rgba(255,255,255,.86); font-weight: 900; letter-spacing: .02em; }
.prestation-portrait .accent-link span{ color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prestation-portrait .accent-link:hover{ opacity: .92; }

/* Body portrait */
.prestation-portrait .prestation-body{ padding-top: 22px; }

.prestation-portrait .body-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.prestation-portrait .body-card{
  grid-column: span 6;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}
.prestation-portrait .body-num{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(138,161,89,.55);
  background: rgba(138,161,89,.14);
  margin-bottom: 10px;
}
.prestation-portrait .body-card h3{ margin: 0 0 8px; font-size: 18px; }
.prestation-portrait .body-card p{ margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; font-size: 14px; }

.prestation-portrait .prestation-bottom-cta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

/* mini nav (commun) */
.mini-nav{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  color: rgba(255,255,255,.60);
  font-size: 13px;
}
.mini-nav a:hover{ color: rgba(255,255,255,.90); }
.mini-nav span{ opacity: .5; }

/* ======================================
   MARIAGE (design ciné reportage)
   Scoped: .prestation-wedding
   ====================================== */

.prestation-wedding{ padding: 0 0 90px; }

/* HERO */
.wed-hero{
  position: relative;
  padding: 26px 0 26px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ✅ IMPORTANT :
   Pas de background-image ici.
   L'image est injectée par le PHP via style="background-image:url(...)"
*/
.wed-hero-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);

  will-change: transform;
}

/* Effet "ciné" (desktop). Désactivé sur mobile (perf) */
@media (min-width: 901px){
  .wed-hero-bg{
    background-attachment: fixed;
  }
}

.wed-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(0,0,0,.18), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.85));
}

.wed-hero-inner{ position: relative; z-index: 1; }

.wed-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.wed-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  padding-top: 8px;
}
.wed-logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,0)),
    rgba(255,255,255,.04);
}
.wed-brandname{
  color: rgba(255,255,255,.86);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.wed-head{ max-width: 780px; padding: 34px 0 12px; }

.wed-kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.wed-title{
  margin: 12px 0 10px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: .01em;
}
.wed-sub{
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.75;
  font-size: 14px;
  max-width: 70ch;
}

.wed-cta{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.wed-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0b0b0f;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, opacity .12s ease;
}
.wed-btn:hover{ transform: translateY(-1px); }
.wed-btn:active{ transform: translateY(0); }
.wed-btn.ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.wed-link{
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .04em;
}
.wed-link:hover{ text-decoration: underline; opacity: .9; }

.wed-badges{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.wed-badges span{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* MOSAÏQUE */
.wed-gallery{ padding: 18px 0 0; }

.wed-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* Net + stable (écrans non-retina aussi) */
.wed-shot{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  min-height: 260px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  transform: translateZ(0);
}

.wed-shot img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;

  image-rendering:auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transform: translateZ(0);
}

.wed-shot:hover img{
  will-change: transform;
  transform: translateZ(0) scale(1.02);
  filter: brightness(1.04);
  transition: transform .55s ease, filter .55s ease;
}

.wed-shot-0{ grid-column: span 7; min-height: 360px; }
.wed-shot-1{ grid-column: span 5; min-height: 360px; }
.wed-shot-2{ grid-column: span 4; }
.wed-shot-3{ grid-column: span 4; }
.wed-shot-4{ grid-column: span 4; }
.wed-shot-5{ grid-column: span 12; min-height: 320px; }

/* SECTIONS */
.wed-steps, .wed-packs, .wed-testimonials{ padding: 46px 0 0; }

.wed-section-head{ margin-bottom: 12px; }
.wed-section-head h2{ margin: 0 0 6px; font-size: 18px; }
.wed-section-head p{ margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.6; }

/* Steps */
.wed-steps-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.wed-step{
  grid-column: span 6;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}
.wed-step-num{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(138,161,89,.55);
  background: rgba(138,161,89,.14);
  margin-bottom: 10px;
}
.wed-step h3{ margin: 0 0 8px; font-size: 16px; }
.wed-step p{ margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; font-size: 14px; }

/* Packs */
.wed-packs-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.wed-pack{
  grid-column: span 4;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.wed-pack.is-featured{
  border-color: rgba(138,161,89,.45);
  background: linear-gradient(180deg, rgba(138,161,89,.10), rgba(255,255,255,.02));
}
.wed-pack-badge{
  position:absolute;
  top: 12px;
  right: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(138,161,89,.55);
  background: rgba(138,161,89,.16);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
}
.wed-pack-head{ margin-bottom: 10px; }
.wed-pack-name{ margin: 0 0 6px; font-size: 18px; }
.wed-pack-price{ font-weight: 900; font-size: 16px; }
.wed-pack-max{ margin-top: 4px; color: rgba(255,255,255,.65); font-size: 12px; }

.wed-pack-list{
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  font-size: 13px;
}
.wed-pack-list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}
.wed-pack-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}
.wed-pack-cta{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
}
.wed-pack-cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
}

.wed-notes{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.wed-note{
  grid-column: span 6;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 13px;
}

/* Testimonials */
.wed-quotes{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.wed-quote{
  grid-column: span 4;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}
.wed-quote blockquote{ margin: 0; position: relative; }
.wed-quote blockquote::before{
  content:"“";
  position:absolute;
  top: -16px;
  left: -4px;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,.10);
  font-weight: 900;
}

.wed-quote p{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 13px;
  padding-left: 10px;
}
.wed-quote figcaption{
  margin-top: 10px;
  color: rgba(255,255,255,.65);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
}

.wed-bottom{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

/* ======================================
   GROSSESSE (nouveau design premium)
   Scoped: .prestation-pregnancy
   ====================================== */

.prestation-pregnancy{ padding: 0 0 90px; }

/* HERO */
.preg-hero{
  position: relative;
  padding: 26px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.preg-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.preg-kicker{
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 10px;
  padding-top: 10px;
}

.preg-head{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 14px;
  align-items:start;
}

.prestation-pregnancy .brandline{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.prestation-pregnancy .brandline-logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,0)),
    rgba(255,255,255,.04);
}
.prestation-pregnancy .brandline-text{
  color: rgba(255,255,255,.86);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.preg-title{
  margin: 0 0 8px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: .01em;
}

.preg-lead{
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  max-width: 70ch;
  font-size: 14px;
}

.preg-actions{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.preg-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0b0b0f;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, opacity .12s ease, background .18s ease;
}
.preg-cta:hover{ transform: translateY(-1px); }
.preg-cta:active{ transform: translateY(0); }

.preg-cta.ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.preg-link{
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .04em;
}
.preg-link:hover{ text-decoration: underline; opacity: .9; }

.preg-badges{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.preg-badges span{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* CARD (right) */
.preg-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}

.preg-price{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.preg-card-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  color: rgba(255,255,255,.70);
  margin-bottom: 8px;
}

.preg-list{
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}

.preg-list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}
.preg-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.preg-note{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  font-size: 13px;
}

/* SECTIONS */
.preg-gallery,
.preg-highlights,
.preg-steps,
.preg-faq{
  padding: 46px 0 0;
}

.preg-section-head{ margin-bottom: 12px; }
.preg-section-head h2{ margin: 0 0 6px; font-size: 18px; }
.preg-section-head p{ margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.6; }

/* Mosaic gallery */
.preg-mosaic{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.preg-shot{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  overflow: hidden;
  background: rgba(255,255,255,.02);
  min-height: 240px;
  transform: translateZ(0);
}
.preg-shot img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform: translateZ(0);
}
.preg-shot:hover img{
  will-change: transform;
  transform: translateZ(0) scale(1.02);
  filter: brightness(1.04);
  transition: transform .55s ease, filter .55s ease;
}

/* layout desktop (6 images) */
.preg-shot-0{ grid-column: span 7; min-height: 360px; }
.preg-shot-1{ grid-column: span 5; min-height: 360px; }
.preg-shot-2{ grid-column: span 4; }
.preg-shot-3{ grid-column: span 4; }
.preg-shot-4{ grid-column: span 4; }
.preg-shot-5{ grid-column: span 12; min-height: 320px; }

.preg-inline-link{ margin-top: 10px; }
.prestation-pregnancy .accent-link{ color: rgba(255,255,255,.86); font-weight: 900; letter-spacing: .02em; }
.prestation-pregnancy .accent-link span{ color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prestation-pregnancy .accent-link:hover{ opacity: .92; }

/* Highlights cards */
.preg-cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.preg-hcard{
  grid-column: span 6;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}
.preg-hcard h3{ margin: 0 0 8px; font-size: 16px; }
.preg-hcard p{ margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; font-size: 14px; }

/* Steps */
.preg-steps-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.preg-step{
  grid-column: span 6;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}
.preg-step-num{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(138,161,89,.55);
  background: rgba(138,161,89,.14);
  margin-bottom: 10px;
}
.preg-step h3{ margin: 0 0 8px; font-size: 16px; }
.preg-step p{ margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; font-size: 14px; }

.preg-bottom-cta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 14px;
  flex-wrap:wrap;
}

/* FAQ */
.preg-faq-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.preg-faq-item{
  grid-column: span 6;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 0;
  overflow: hidden;
}

.preg-faq-item > summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255,255,255,.90);
}
.preg-faq-item > summary::-webkit-details-marker{ display:none; }

.preg-faq-item > summary::after{
  content:"+";
  float: right;
  color: rgba(255,255,255,.55);
  font-weight: 900;
}

.preg-faq-item[open] > summary{
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.preg-faq-item[open] > summary::after{ content:"–"; }

.preg-faq-body{ padding: 12px 16px 16px; }
.preg-faq-body p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 14px;
}

/* ======================================
   COUPLE (box prix dans la zone rouge / colonne gauche)
   Scoped: .prestation-couple
   ====================================== */

.prestation-couple{ padding: 0 0 90px; }

.couple-hero{
  position: relative;
  padding: 26px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.couple-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.couple-kicker{
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 10px;
  padding-top: 10px;
}

.couple-head{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 14px;
  align-items: stretch;
}

/* Colonne gauche */
.couple-left{
  display:flex;
  flex-direction: column;
  min-height: 100%;
}

.couple-left .brandline{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.couple-left .brandline-logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,0)),
    rgba(255,255,255,.04);
}
.couple-left .brandline-text{
  color: rgba(255,255,255,.86);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.couple-title{
  margin: 0 0 8px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: .01em;
}

.couple-lead{
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  max-width: 70ch;
  font-size: 14px;
}

.couple-actions{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.couple-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0b0b0f;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, opacity .12s ease, background .18s ease;
}
.couple-cta:hover{ transform: translateY(-1px); }
.couple-cta:active{ transform: translateY(0); }

.couple-cta.ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.couple-link{
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .04em;
}
.couple-link:hover{ text-decoration: underline; opacity: .9; }

.couple-note-inline{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  font-size: 13px;
  max-width: 70ch;
}

/* Box prix */
.couple-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}
.couple-card-list{ margin-top: auto; }

.couple-price{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.couple-card-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  color: rgba(255,255,255,.70);
  margin-bottom: 8px;
}

.couple-list{
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}
.couple-list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}
.couple-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.couple-note{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  font-size: 13px;
}

/* Colonne droite (2 images empilées) */
.couple-photos{
  display:grid;
  gap: 12px;
}

.couple-shot{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  overflow: hidden;
  background: rgba(255,255,255,.02);
  min-height: 260px;
  transform: translateZ(0);
}

.couple-shot img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform: translateZ(0);
}

.couple-shot:hover img{
  will-change: transform;
  transform: translateZ(0) scale(1.02);
  filter: brightness(1.04);
  transition: transform .55s ease, filter .55s ease;
}

/* Body couple */
.couple-body{ padding: 18px 0 0; }

.couple-card-main{ margin-top: 16px; }
.couple-h2{ margin: 0 0 10px; font-size: 26px; }

.couple-card-main p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 14px;
}

.couple-inline-cta{
  margin-top: 14px;
  display:flex;
  justify-content:center;
}

.couple-bottom-link{ margin-top: 14px; }

/* ======================================
   AUTOMOBILE (même disposition que COUPLE)
   Scoped: .prestation-auto
   ✅ 2 images empilées + box prix en bas à gauche
   ====================================== */

.prestation-auto{ padding: 0 0 90px; }

.auto-hero{
  position: relative;
  padding: 26px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.auto-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.auto-kicker{
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 10px;
  padding-top: 10px;
}

.auto-head{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 14px;
  align-items: stretch; /* même hauteur que la colonne photos */
}

/* Colonne gauche */
.auto-left{
  display:flex;
  flex-direction: column;
  min-height: 100%;
}

.auto-left .brandline{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.auto-left .brandline-logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,0)),
    rgba(255,255,255,.04);
}
.auto-left .brandline-text{
  color: rgba(255,255,255,.86);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.auto-title{
  margin: 0 0 8px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: .01em;
}

.auto-lead{
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  max-width: 70ch;
  font-size: 14px;
}

.auto-actions{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.auto-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0b0b0f;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, opacity .12s ease, background .18s ease;
}
.auto-cta:hover{ transform: translateY(-1px); }
.auto-cta:active{ transform: translateY(0); }

.auto-cta.ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.auto-link{
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .04em;
}
.auto-link:hover{ text-decoration: underline; opacity: .9; }

.auto-note-inline{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  font-size: 13px;
  max-width: 70ch;
}

/* ✅ Box prix en bas (comme couple) */
.auto-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 16px;
}

.auto-card-list{
  margin-top: auto; /* pousse la box en bas */
}

.auto-price{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.auto-card-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  color: rgba(255,255,255,.70);
  margin-bottom: 8px;
}

.auto-list{
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}
.auto-list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}
.auto-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.auto-note{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  font-size: 13px;
}

/* ✅ Colonne droite (2 images empilées comme couple) */
.auto-photos{
  display:grid;
  gap: 12px;
}

.auto-shot{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  overflow: hidden;
  background: rgba(255,255,255,.02);
  min-height: 260px;
  transform: translateZ(0);
}

.auto-shot img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform: translateZ(0);
}

.auto-shot:hover img{
  will-change: transform;
  transform: translateZ(0) scale(1.02);
  filter: brightness(1.04);
  transition: transform .55s ease, filter .55s ease;
}

/* Body auto (même esprit que couple) */
.auto-body{ padding: 18px 0 0; }

.auto-card-main{ margin-top: 16px; }
.auto-h2{ margin: 0 0 10px; font-size: 26px; }

.auto-card-main p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 14px;
}

.auto-inline-cta{
  margin-top: 14px;
  display:flex;
  justify-content:center;
}

.auto-bottom-link{ margin-top: 14px; }

/* ======================================
   Responsive
   ====================================== */

@media (max-width: 900px){
  .prestation-portrait .prestation-top{ flex-direction:column; align-items:flex-start; }
  .prestation-nav{ justify-content:flex-start; }

  .prestation-portrait .prestation-head{ grid-template-columns: 1fr; }
  .prestation-portrait .prestation-title{ font-size: 30px; }
  .prestation-portrait .prestation-shot{ grid-column: span 12; min-height: 260px; }
  .prestation-portrait .body-card{ grid-column: span 12; }

  .wed-top{ flex-direction:column; align-items:flex-start; }
  .wed-head{ padding-top: 18px; }
  .wed-hero-bg{ background-attachment: scroll; }

  .wed-shot-0, .wed-shot-1, .wed-shot-2, .wed-shot-3, .wed-shot-4, .wed-shot-5{
    grid-column: span 12;
    min-height: 240px;
  }

  .wed-step{ grid-column: span 12; }
  .wed-pack{ grid-column: span 12; }
  .wed-note{ grid-column: span 12; }
  .wed-quote{ grid-column: span 12; }

  /* Grossesse */
  .preg-top{ flex-direction:column; align-items:flex-start; }
  .preg-head{ grid-template-columns: 1fr; }
  .preg-title{ font-size: 32px; }

  .preg-shot-0, .preg-shot-1, .preg-shot-2, .preg-shot-3, .preg-shot-4, .preg-shot-5{
    grid-column: span 12;
    min-height: 240px;
  }

  .preg-hcard{ grid-column: span 12; }
  .preg-step{ grid-column: span 12; }
  .preg-faq-item{ grid-column: span 12; }

  /* Couple */
  .couple-top{ flex-direction:column; align-items:flex-start; }
  .couple-head{ grid-template-columns: 1fr; }
  .couple-card-list{ margin-top: 14px; }
  .couple-shot{ min-height: 240px; }

  /* Automobile (comme couple) */
  .auto-top{ flex-direction:column; align-items:flex-start; }
  .auto-head{ grid-template-columns: 1fr; }
  .auto-card-list{ margin-top: 14px; } /* sur mobile, évite de coller en bas */
  .auto-shot{ min-height: 240px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .prestation-chip,
  .prestation-portrait .prestation-shot,
  .prestation-portrait .prestation-cta,
  .wed-shot,
  .wed-btn,
  .wed-pack-cta,
  .preg-shot,
  .preg-cta,
  .couple-shot,
  .couple-cta,
  .auto-shot,
  .auto-cta{
    transition:none;
  }

  .wed-shot:hover img,
  .preg-shot:hover img,
  .couple-shot:hover img,
  .auto-shot:hover img{
    transform: translateZ(0);
    filter: none;
  }

  .wed-hero-bg{
    transform:none;
  }
}