:root {
  /* PlumiAJ Brand */
  --bg: #f7f2ea; /* lin/champagne */
  --paper: #fffaf2; /* papier crème */
  --ink: #1e2b3a; /* encre douce */
  --muted: #6b655f; /* gris chaud */
  --gold: #ffd46b; /* miel doré */
  --pine: #2f5d56; /* vert pin */
  --sky: #6fa8b4; /* bleu tendre */
  --rose: #d9a4a4; /* rouge assourdi */
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;
  --logo-h: clamp(72px, 7vw, 112px); 
  --font-head: 'Fraunces', serif;
  --font-body: 'Nunito', system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  --night: #0f2c3a; 
  --gold-glow: #ffd46b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background-color: var(--night);
  background-image: url('/assets/bg/plumiaj-feather-stars-desktop.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: fixed;
}

/* léger grain global + voile */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(60% 40% at 80% 0%, rgba(255,212,107,.05), transparent 70%), 
              linear-gradient(180deg, rgba(15,44,58,.18), rgba(15,44,58,.08) 40%, transparent) !important;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); letter-spacing: .2px; color: var(--ink); }

.container { width: min(1100px, 92vw); margin-inline: auto; }

header {
  position: sticky;
  top: 0;
  background: rgba(247,242,234,.55);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 50;
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
header.scrolled {
  background: rgba(247,242,234,.72);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  border-bottom-color: rgba(0,0,0,.08);
}

nav { display: flex; gap: 20px; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .3px; }
.brand .logo { height: var(--logo-h); width: auto; display: block; object-fit: contain; }
.menu { display: flex; gap: 16px; }
.menu a { padding: 10px 14px; border-radius: 12px; color: var(--ink); font-family: var(--font-head); font-weight: 800; letter-spacing: .5px; font-size: 1.12rem; line-height: 1.1; }
.menu a:hover { background: rgba(0,0,0,.05); color: var(--ink); }

.cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), var(--pine));
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.cta:hover { opacity: .95; transform: translateY(-1px); }

.ghost { padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(0,0,0,.12); color: var(--ink); background: #fff; }

/* --- HERO --- */
.hero { position: relative; padding: 84px 0 40px; background: transparent; }
.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(8px) saturate(120%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  overflow: hidden;
}
.hero-left { padding: 0; }
.hero-left h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--pine);
  margin-top: 0;
  margin-bottom: 20px;
}
.hero-left p {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero-right { display: block; position: relative; height: 100%; }
.hero-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: rotate(2deg);
}

section { padding: 60px 0; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin: 0 0 18px; }

.grid { display: grid; gap: 20px; }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; text-align: center; padding: 30px 20px; }
  .hero-right { display: none; }
  .cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) { .menu { display: none; } .cols-3 { grid-template-columns: 1fr; } }

.card {
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  border: 1px solid rgba(0,0,0,.05);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(42,39,36,.05);
  color: var(--pine);
  font-weight: 700;
  font-size: .92rem;
}
.kpi { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

/* Catalogue */
.product { display: grid; grid-template-rows: auto 1fr auto; gap: 10px; }
.product .img {
  border-radius: 16px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,250,242,.55));
  backdrop-filter: blur(4px);
  display: block;
  border: 1px solid rgba(0,0,0,.06);
}
.product .img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.product .img:hover img { transform: scale(1.05); }
.product h3 { margin: 6px 0 0; font-size: 1.08rem; }
.product p { margin: 0; color: var(--muted); font-size: .95rem; }
.product .buy { margin-top: 8px; }

/* Price badge */
.price-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(47,93,86,.12);
  color: var(--pine);
  font-weight: 800;
  font-size: 1rem;
}
/* Bouton Feuilleter */
.btn-preview {
  display: block;
  width: 100%;
  padding: 8px;
  background: transparent;
  border: 2px solid var(--pine);
  border-radius: 99px;
  color: var(--pine);
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all .2s ease;
}
.btn-preview:hover { background: var(--pine); color: #fff; }

/* Product title stacked layout */
.product h3.title-stacked { margin: 6px 0 0; font-size: 1.08rem; text-align: center; }
.product h3.title-stacked .t1 { display: block; text-transform: uppercase; letter-spacing: .8px; font-weight: 800; color: var(--pine); font-size: .9em; line-height: 1; }
.product h3.title-stacked .t2 { display: block; font-weight: 700; line-height: 1.15; }

/* Steps */
.steps { counter-reset: step; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step .num { width: 36px; height: 36px; border-radius: 999px; background: var(--pine); color: #fff; display: grid; place-items: center; font-weight: 800; }
.step .num::before { counter-increment: step; content: counter(step); }

footer { padding: 40px 0 70px; border-top: 1px solid rgba(0,0,0,.06); }
footer .links { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.small { font-size: .9rem; color: var(--muted); }
.skip { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip:focus { position: static; width: auto; height: auto; background: #fff; padding: 8px; border-radius: 10px; }

/* Motifs d'arrière-plan style PlumiAJ */
.bg-stars { position: relative; isolation: isolate; }
.bg-stars::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .08;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(1px 1px at 60% 10%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(1px 1px at 80% 70%, rgba(255,255,255,.8), transparent 60%);
}

/* Centrage carte projet + tags */
.card.center { text-align: center; }
.center .kpi { justify-content: center; }

/* Mosaïque d’illustrations sous le projet */
.mosaic { width: min(760px, 96%); margin: 16px auto 10px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
@media (max-width: 900px) { .mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .mosaic { grid-template-columns: repeat(2, 1fr); } }
.mosaic img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow); transition: transform .3s ease; }
.mosaic img:hover { transform: scale(1.05); z-index: 2; position: relative; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

/* Divider + centrage section projet */
.divider { width: 80px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--gold), transparent); margin: 8px auto 18px; }
.grid.centered { justify-items: center; }

/* Centrage des 3 encadrés */
#projet .container.grid.cols-3 { grid-template-columns: repeat(3, minmax(260px, 1fr)); justify-content: center; }
#projet .card.center { max-width: 320px; width: 100%; justify-self: center; position: relative; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease; }
#projet .card.center:hover, #projet .card.center:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
  border-color: rgba(47,93,86,.25);
  background: linear-gradient(180deg, #fff, #fffaf2);
  outline: none;
}
#projet .card.center:hover h3, #projet .card.center:focus-within h3 { color: var(--pine); }
#projet .card.center .pill { transition: background-color .2s ease, color .2s ease; }
#projet .card.center:hover .pill, #projet .card.center:focus-within .pill { background: rgba(47,93,86,.12); color: var(--pine); }
#projet .card.center::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(255,212,107,0), 0 0 0 rgba(255,212,107,0);
  transition: opacity .25s ease, box-shadow .25s ease;
}
#projet .card.center:hover::after, #projet .card.center:focus-within::after { opacity: 1; box-shadow: 0 0 0 2px rgba(255,212,107,.6), 0 0 22px rgba(255,212,107,.45), 0 0 50px rgba(255,212,107,.28); }

/* Mobile nav (burger) */
.burger { display: none; flex-direction: column; gap: 5px; border: 0; background: transparent; cursor: pointer; }
.burger span { width: 26px; height: 2px; background: var(--ink); display: block; border-radius: 2px; }
@media (max-width: 900px) {
  .burger { display: inline-flex; }
  header .menu {
    display: none;
    position: absolute;
    right: 16px;
    top: 64px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.35);
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    min-width: 240px;
  }
  header[data-open="true"] .menu { display: flex; }
}

@media (max-width: 380px) { :root { --logo-h: 48px; } }

section.bg-stars > .container > h2 { color: #fff; }
.faq details { background: rgba(255,255,255,.7); backdrop-filter: blur(6px); border-radius: var(--radius); padding: 14px 16px; border: 1px solid rgba(0,0,0,.06); }
#projet .container > .card:first-child h2, #projet .container > .card:first-child p { text-align: center; }
#projet [data-ico="feather"] .kpi .pill, #projet [data-ico="star"] .kpi .pill { flex: 0 0 100%; justify-content: center; }
#projet [data-ico="shield"] .kpi .break { flex-basis: 100%; display: flex; justify-content: center; }
#projet [data-ico="shield"] .kpi .pill { flex: 0 0 100%; justify-content: center; }
#process h2, #process #process-title { color: #fff; }

#contact .contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,250,242,.58));
  border: 1px solid rgba(0,0,0,.06);
}
#contact .contact-items { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 14px; justify-items: center; align-items: center; margin-top: 4px; }
@media (max-width: 620px) { #contact .contact-items { grid-template-columns: 1fr; } }
#contact .contact-item { display: flex; align-items: center; gap: 12px; }
#contact .contact-item .label { font-weight: 700; color: var(--muted); font-size: .9rem; }
#contact .contact-link { font-weight: 800; text-decoration: none; }
#contact .icon { width: 40px; height: 40px; border-radius: 999px; background: rgba(47,93,86,.12); display: grid; place-items: center; color: var(--pine); box-shadow: var(--shadow); }
#contact .foot { margin-top: 10px; }

@media (max-width: 980px) { .menu a { font-size: 1.05rem; } }
@media (max-width: 900px) { .menu a { font-size: 1rem; } }
@media (max-width: 420px) { .menu a { font-size: .98rem; } }
@media (max-width: 980px) { #projet .container.grid.cols-3 { grid-template-columns: repeat(2, minmax(240px, 1fr)); } }
@media (max-width: 900px) { .mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { #projet .container.grid.cols-3 { grid-template-columns: 1fr; } .mosaic { grid-template-columns: repeat(2, 1fr); } }

/* === VISIONNEUSE (LIGHTBOX) === */
.viewer-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,44,58,0.95); backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.viewer-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.viewer-content { position: relative; max-width: 90vw; max-height: 90vh; text-align: center; }

/* Loader for viewer */
.viewer-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom-color: var(--gold);
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  display: none;
  z-index: -1; /* Behind image */
}
.viewer-overlay.loading .viewer-loader {
  display: block;
}
.viewer-overlay.loading .viewer-img {
  opacity: 0;
}
@keyframes rotation {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.viewer-img { 
  max-width: 100%; max-height: 80vh; border-radius: 12px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
  border: 2px solid rgba(255,255,255,0.1);
  transition: opacity 0.3s ease;
}
.viewer-close { position: absolute; top: -50px; right: 0; background: transparent; border: 0; color: #fff; font-size: 2rem; cursor: pointer; }
.viewer-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); color: #fff; border: 0; padding: 15px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; transition: background .2s; }
.viewer-nav:hover { background: var(--gold); color: var(--ink); }
.viewer-prev { left: -70px; }
.viewer-next { right: -70px; }
.viewer-count { color: #fff; margin-top: 15px; font-family: var(--font-head); font-size: 1.1rem; }

/* Bouton FERMER */
.viewer-return-btn {
  margin-top: 15px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.viewer-return-btn:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 800px) {
  .viewer-prev { left: 0; top: auto; bottom: -80px; transform: none; padding: 10px; }
  .viewer-next { right: 0; top: auto; bottom: -80px; transform: none; padding: 10px; }
  .viewer-close { top: 15px; right: 15px; z-index: 10; background: rgba(0,0,0,0.6); width: 44px; height: 44px; border-radius: 50%; font-size: 1.8rem; line-height: 1; padding-bottom: 4px; }
  .viewer-return-btn { font-size: 1.1rem; padding: 14px 28px; }
  .viewer-count { margin-top: 25px; }
}

/* === ANIMATION D'APPARITION (Scroll Reveal) === */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.grid > .reveal:nth-child(1) { transition-delay: 0s; }
.grid > .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid > .reveal:nth-child(3) { transition-delay: 0.2s; }
.grid > .reveal:nth-child(4) { transition-delay: 0.3s; }

/* === STICKY CTA MOBILE === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), var(--pine));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}
@media (max-width: 620px) {
  .sticky-cta { display: inline-flex; justify-content: center; align-items: center; }
  footer { padding-bottom: 90px; }
}

/* === 1. SCROLL PROGRESS BAR === */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pine));
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(255,212,107,.5);
}

/* === 2. HERO PARTICLES === */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  15% { opacity: 1; transform: translateY(-20px) scale(1); }
  85% { opacity: .6; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.3); }
}
.hero { overflow: hidden; }
.hero .container { position: relative; z-index: 1; }

/* === 3. TYPING EFFECT === */
.typing-cursor::after {
  content: "|";
  animation: blink .7s step-end infinite;
  color: var(--gold);
  font-weight: 400;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* === 4. WAVE DIVIDERS === */
.wave-divider {
  position: relative;
  height: 40px;
  margin: -1px 0;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-divider path { fill: rgba(255,255,255,.06); }
.wave-flip { transform: scaleY(-1); }

/* === 5. COUNTERS === */
.counters { padding: 50px 0; }
.counter-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.counter-item {
  text-align: center;
  flex: 1 1 120px;
  min-width: 120px;
}
.counter-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.counter-label {
  display: block;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  font-weight: 600;
}

/* === 6. CAROUSEL AVIS === */
.carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scrollCarousel 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-slide {
  flex: 0 0 320px;
  max-width: 320px;
}
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
@media (max-width: 620px) {
  .carousel-slide { flex: 0 0 280px; max-width: 280px; }
}

/* === 7. TILT 3D PRODUCT CARDS === */
.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tilt-card .tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity .3s ease;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.25), transparent 60%);
}
.tilt-card:hover .tilt-shine { opacity: 1; }

/* === 8. CTA MAGNETIC + SHINE === */
.cta {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.cta:hover::before {
  animation: ctaShine .6s ease forwards;
}
@keyframes ctaShine {
  0% { left: -100%; }
  100% { left: 150%; }
}
.cta:hover {
  box-shadow: 0 8px 25px rgba(255,212,107,.3);
}

/* === 9. CONFETTI === */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  animation: confettiFall 1.2s ease-out forwards;
}
.confetti-star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@keyframes confettiFall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translateY(120px) rotate(720deg) scale(0.3); }
}

/* === 10. BADGES PULSANTS === */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #e6a800);
  box-shadow: 0 4px 12px rgba(255,212,107,.4);
}
.badge-new { background: linear-gradient(135deg, var(--pine), #3a7a6f); box-shadow: 0 4px 12px rgba(47,93,86,.4); }
.badge-pulse { animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(255,212,107,.4); }
  50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(255,212,107,.6); }
}
.badge-new.badge-pulse {
  animation-name: badgePulseGreen;
}
@keyframes badgePulseGreen {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(47,93,86,.4); }
  50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(47,93,86,.6); }
}

/* === 11. ENHANCED REVEAL ANIMATIONS === */
.reveal-left { transform: translateX(-50px) translateY(0); opacity: 0; }
.reveal-right { transform: translateX(50px) translateY(0); opacity: 0; }
.reveal-left.active, .reveal-right.active { transform: translateX(0) translateY(0); opacity: 1; }
.reveal-scale { transform: scale(0.85); opacity: 0; }
.reveal-scale.active { transform: scale(1); opacity: 1; }

/* === 12. PARALLAX HERO IMAGE === */
.hero-right img { transition: transform .1s linear; will-change: transform; }

/* Cadeau naissance text center tweaks */
.text-center { text-align: center; }
.btn-retour { display: inline-block; margin-bottom: 20px; color: #fff; text-decoration: underline; }
