/* ============================================================
   Isabelle Dupéré Créations — style.css (version Fuchsia & Forêt)
   Palette fuchsia vif · vert forêt foncé · crème
   ============================================================ */

:root {
  /* Fuchsia */
  --rose:       #D4006E;
  --rose-dk:    #A80056;
  --rose-pale:  #FDE9F3;
  --rose-card:  #F5AEDD;

  /* Vert forêt */
  --sage:       #2A6A48;
  --sage-dk:    #1A4531;
  --sage-pale:  #DFF0E8;
  --sage-card:  #7DB89A;

  /* Vert menthe foncé */
  --mint:       #3D9970;
  --mint-card:  #A8D4BE;

  /* Neutres */
  --cream:   #FDFBF9;
  --lin:     #F8F3EF;
  --lin-mid: #F0E9E4;
  --encre:   #2D2535;
  --gray:    #8A7E8A;
  --gray-lt: #DDD5DA;
  --white:   #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h: 70px;
  --pad:   120px;
  --r:     16px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { overflow-x: hidden; }
body { background: var(--lin); color: var(--encre); font-family: var(--font-body); font-weight: 300; line-height: 1.75; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== EYEBROW ===== */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-dk);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.65); }

/* ===== SECTION HEADER ===== */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--encre);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-head p { font-size: 0.9rem; color: var(--gray); max-width: 480px; margin: 0 auto; line-height: 1.9; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid var(--rose);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-primary:hover { background: var(--rose-dk); border-color: var(--rose-dk); }

.btn-primary.btn-light {
  background: rgba(255,255,255,0.92);
  color: var(--sage-dk);
  border-color: rgba(255,255,255,0.92);
}
.btn-primary.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--encre);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid rgba(45,37,53,0.3);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--encre); color: var(--cream); border-color: var(--encre); }


/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 48px;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(253, 251, 249, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gray-lt);
}

/* Sur le hero : texte encre (fond clair) */
.nav:not(.scrolled) .nav-menu a:not(.nav-btn) { color: var(--encre); }
.nav:not(.scrolled) .nav-btn     { border-color: var(--rose) !important; color: var(--rose-dk) !important; }
.nav:not(.scrolled) .nav-burger span { background: var(--encre); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.85; }

.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-menu a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--encre);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-menu a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-menu a:not(.nav-btn):hover::after { transform: scaleX(1); }

.nav-btn {
  border: 2px solid var(--rose) !important;
  color: var(--rose-dk) !important;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s !important;
}
.nav-btn:hover { background: var(--rose) !important; color: var(--white) !important; }
.nav-btn::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--encre);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 48px 100px;
  overflow: hidden;
  background: var(--rose-pale);
}

/* Dégradé doux blush → crème */
.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 5%  10%,  rgba(212, 0, 110, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 95% 90%,  rgba(42, 106, 72, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 50%,  rgba(255,255,255, 0.55)   0%, transparent 70%);
}

/* Motif points discrets */
.hero-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,0,110,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

.hero-content > * {
  opacity: 0;
  animation: heroFade 0.9s var(--ease) forwards;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--encre);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--gray-lt);
  padding: 7px 18px;
  border-radius: 100px;
}

.hero-tag-location {
  background: var(--sage-pale);
  border-color: var(--sage);
  color: var(--sage-dk);
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 28px;
}
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--rose-dk);
  margin-bottom: 8px;
}
.hero-title strong {
  display: block;
  font-weight: 900;
  font-size: clamp(4rem, 11vw, 8.5rem);
  color: var(--encre);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: 0.88rem;
  color: var(--encre);
  line-height: 2.1;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.hero-logo {
  width: 280px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
  animation-delay: 0s !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--rose);
  border: none;
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  max-width: 680px;
  box-shadow: 0 8px 32px rgba(212, 0, 110, 0.35);
}
.badge-star { color: rgba(255,255,255,0.8); font-size: 1rem; flex-shrink: 0; }

.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.hero-mnet-badge {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.hero-mnet-badge:hover { opacity: 1; }
.hero-mnet-badge img { height: 64px; width: auto; display: block; }
/* Bouton ghost sur fond clair : version encre */
.hero-ctas .btn-outline {
  color: var(--encre);
  border-color: rgba(45,37,53,0.25);
}
.hero-ctas .btn-outline:hover { background: var(--encre); color: var(--cream); border-color: var(--encre); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  color: var(--rose);
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== SERVICES ===== */
.services {
  padding: var(--pad) 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 48px 36px;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45,37,53,0.1);
}

/* Pastels */
.service-terra { background: var(--rose-card); }
.service-sage  { background: var(--sage-card); }
.service-ocre  { background: var(--mint-card); }

/* Cercles décoratifs */
.service-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
}

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(45,37,53,0.08);
  line-height: 1;
  margin-bottom: -12px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--encre);
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 1rem;
  color: rgba(45,37,53,0.85);
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.service-card ul { position: relative; z-index: 1; }
.service-card li {
  font-size: 0.95rem;
  color: rgba(45,37,53,0.8);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(45,37,53,0.3);
  font-size: 0.7rem;
}

/* Couleur des → selon la carte */
.service-terra li::before { color: var(--rose-dk); opacity: 0.6; }
.service-sage  li::before { color: var(--sage-dk); opacity: 0.6; }
.service-ocre  li::before { color: var(--sage-dk); opacity: 0.6; }

/* ===== GALLERY ===== */
.gallery {
  padding: var(--pad) 0;
  background: var(--lin);
}

.gallery-masonry { columns: 3; column-gap: 20px; }
.gallery-item { break-inside: avoid; margin-bottom: 20px; }

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--rose-pale);
}
.gallery-img-wrap.tall   { aspect-ratio: 2 / 3; }
.gallery-img-wrap.medium { aspect-ratio: 3 / 4; }
.gallery-img-wrap.short  { aspect-ratio: 4 / 5; }

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.img-ph { display: none; }
.gallery-img-wrap.no-img .gallery-img { display: none; }
.gallery-img-wrap.no-img .img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--sage-pale) 100%);
}
.img-ph span { font-size: 2rem; color: var(--rose); opacity: 0.5; line-height: 1; }
.img-ph em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gray);
  text-align: center;
  font-weight: 400;
}

.gallery-item figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--gray);
  padding: 10px 2px 0;
  line-height: 1.4;
}

/* ===== ABOUT ===== */
.about { background: var(--sage); overflow: hidden; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-text {
  padding: var(--pad) 72px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-divider {
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  margin-bottom: 28px;
}
.about-text p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 2.05; margin-bottom: 18px; }
.about-text p + a { margin-top: 16px; }

/* Photo atelier */
.about-photo {
  margin: 0 0 16px;
  border-radius: var(--r);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-rows: auto repeat(3, 1fr);
  background: var(--cream);
}

.stat-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 52px;
  border-bottom: 1px solid var(--gray-lt);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-block:last-child { border-bottom: none; }
.stat-block:hover { background: var(--lin); }

.stat-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 0 2px 2px 0;
}
.stat-terra::before { background: var(--rose); }
.stat-sage::before  { background: var(--sage); }
.stat-ocre::before  { background: var(--mint); }

.stat-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-terra .stat-n { color: var(--rose-dk); }
.stat-sage  .stat-n { color: var(--sage-dk); }
.stat-ocre  .stat-n { color: #6BA88A; }

.stat-n sup { font-size: 2rem; font-weight: 400; vertical-align: super; }
.stat-l {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--pad) 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 30px; }

.info-block h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-dk);
  margin-bottom: 10px;
}
.info-block address,
.info-block p { font-size: 0.88rem; color: var(--encre); line-height: 1.85; }
.info-block a { transition: color 0.3s; }
.info-block a:hover { color: var(--rose-dk); }
.info-block em { font-style: normal; font-size: 0.75rem; color: var(--gray); }

.hours { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.hours td { padding: 7px 0; border-bottom: 1px solid var(--gray-lt); color: var(--encre); }
.hours td:first-child { color: var(--gray); padding-right: 16px; white-space: nowrap; }
.hours tr.closed td { color: var(--gray); font-style: italic; }

.rdv-note { font-size: 0.75rem; color: var(--rose-dk); margin-top: 14px; font-weight: 500; letter-spacing: 0.05em; }

.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2px; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--encre);
  background: var(--lin);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--gray-lt);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.social-pill:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }

/* Bloc Contact CTA */
.contact-cta-wrap {
  display: flex;
  align-items: stretch;
}

.contact-cta-card {
  background: linear-gradient(145deg, var(--rose-card), var(--mint-card));
  border-radius: var(--r);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  border: 1px solid var(--gray-lt);
}

.cta-eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-dk);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--encre);
}

.cta-sub {
  font-size: 0.9rem;
  color: var(--encre);
  opacity: 0.75;
  line-height: 1.75;
  max-width: 380px;
}

.cta-phones {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.cta-phone-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: 14px;
  padding: 18px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  color: var(--encre);
}
.cta-phone-btn:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  transform: translateX(4px);
}
.cta-phone-btn svg { color: var(--rose-dk); flex-shrink: 0; }
.cta-phone-btn span { display: flex; flex-direction: column; gap: 2px; }
.cta-phone-btn em { font-style: normal; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); }
.cta-phone-btn span:last-child { font-size: 1.15rem; font-weight: 500; letter-spacing: 0.04em; color: var(--encre); }

.cta-phone-mobile svg { color: var(--sage-dk); }
.cta-phone-mobile:hover { background: var(--sage-pale); border-color: var(--sage); }

.cta-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-lt), transparent);
  margin: 4px 0;
}

.cta-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--encre);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  align-self: flex-start;
}
.cta-gmaps svg { color: var(--rose-dk); }
.cta-gmaps:hover { opacity: 1; color: var(--rose-dk); }

/* ===== FOOTER ===== */
.footer { background: var(--encre); padding: 64px 0 40px; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-logo-link { display: inline-block; margin-bottom: 10px; }
.footer-logo-img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.footer-sub  { font-size: 0.64rem; color: rgba(255,255,255,0.3); letter-spacing: 0.15em; text-transform: uppercase; }

.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-nav a:hover { color: var(--rose); }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.35);
  transition: border-color 0.3s, color 0.3s;
}
.footer-socials a:hover { border-color: var(--rose); color: var(--rose); }

.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.2); }

.footer-badge-mariages { display: flex; align-items: center; opacity: 0.85; transition: opacity 0.3s; }
.footer-badge-mariages:hover { opacity: 1; }
.footer-badge-mariages img { height: 56px; width: auto; display: block; }

/* ===== REVUE DE PRESSE ===== */
.press { background: var(--lin); padding: var(--pad) 0; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.press-card:hover {
  box-shadow: 0 8px 32px rgba(45,37,53,0.10);
  transform: translateY(-3px);
  border-color: var(--rose);
}

.press-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

.press-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--encre);
  line-height: 1.4;
  margin: 0;
}

.press-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.press-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-dk);
  margin-top: 4px;
}

/* ===== AVIS CLIENTS ===== */
.reviews { padding: var(--pad) 0; background: var(--cream); }

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.reviews-stars { color: #FBBC04; font-size: 1.1rem; letter-spacing: 2px; }
.reviews-avg {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--encre);
  line-height: 1;
}
.reviews-denom { font-size: 0.82rem; font-weight: 400; color: var(--gray); }
.reviews-sep { color: var(--gray-lt); }
.reviews-count {
  font-size: 0.78rem;
  color: var(--gray);
  transition: color 0.3s;
}
.reviews-count:hover { color: var(--rose-dk); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(45,37,53,0.09);
  transform: translateY(-2px);
  border-color: var(--rose);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  flex-shrink: 0;
}
.av-rose { background: var(--rose); }
.av-sage { background: var(--sage); }
.av-mint { background: var(--mint); }

.review-meta { flex: 1; min-width: 0; }
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--encre); line-height: 1.3; }
.review-date { font-size: 0.7rem; color: var(--gray); margin-top: 2px; }

.review-glogo { width: 20px; height: 20px; flex-shrink: 0; }

.review-mnet {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #E8345A;
  border: 1px solid #E8345A;
  border-radius: 4px;
  padding: 3px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-stars { color: #FBBC04; font-size: 0.9rem; letter-spacing: 2px; }

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.93rem;
  color: var(--encre);
  line-height: 1.8;
  flex: 1;
}

.reviews-cta { text-align: center; margin-top: 48px; display: flex; flex-direction: column; gap: 14px; align-items: center; }

.btn-reviews-write {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--encre);
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: 100px;
  padding: 14px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s;
}
.btn-reviews-write:hover {
  border-color: var(--rose);
  color: var(--rose-dk);
  box-shadow: 0 4px 16px rgba(45,37,53,0.1);
}
.btn-reviews-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre);
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: 100px;
  padding: 14px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s;
}
.btn-reviews-more:hover {
  border-color: var(--encre);
  box-shadow: 0 4px 16px rgba(45,37,53,0.1);
}

/* ===== RESPONSIVE — TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
  :root { --pad: 80px; }
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-masonry { columns: 2; }

  .press-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-text { padding: 72px 48px; }
  .about-stats { grid-template-rows: auto; grid-template-columns: repeat(3, 1fr); }
  .stat-block { border-bottom: none; border-right: 1px solid var(--gray-lt); }
  .stat-block:last-child { border-right: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== RESPONSIVE — MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; --pad: 60px; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  /* backdrop-filter sur le header casse position:fixed des enfants sur mobile */
  .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }

  .nav-burger { display: flex; }
  .nav-menu {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--cream);
    padding: 32px 20px;
    gap: 24px;
    border-top: 1px solid var(--gray-lt);
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu a { font-size: 0.9rem; color: var(--encre) !important; }
  .nav-btn { border-color: var(--rose) !important; color: var(--rose-dk) !important; background: transparent !important; }

  .hero { padding: calc(var(--nav-h) + 32px) 20px 100px; }
  .hero-logo { width: 200px; }
  .hero-badge { font-size: 0.8rem; padding: 14px 22px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .gallery-masonry { columns: 2; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--gray-lt); }
  .stat-block:last-child { border-bottom: none; }

  .contact-cta-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ===== PETIT MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {
  .hero-title strong { font-size: clamp(3rem, 15vw, 4.5rem); }
  .gallery-masonry { columns: 2; }
  .stat-block { padding: 28px 32px; }
  .stat-n { font-size: 3rem; }
}

/* ===== LIGHTBOX ===== */
/* Stratégie : toujours display:flex, toggle via opacity/visibility/pointer-events
   Évite le bug Android Chrome où display:none→flex casse position:fixed */
.lightbox {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
  line-height: 1;
  z-index: 10;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
  z-index: 10;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next { width: 36px; height: 36px; font-size: 1.4rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; }
}
