/* ---------- STYLES COMPLETS ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blanc: #ffffff;
  --beige-clair: #f9f6f0;
  --beige-fonce: #e5d9c6;
  --vert-sauge: #AAC829;
  --vert-fonce: #3e5a3a;
  --gris-texte: #2c2c2c;
  --gris-clair: #b8b8b8;
  --gris-taupe: #5A554A;
  --rust: #a0522d;
  --error: #8b3a3a;
  --lin: #f5f1ea;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 28px rgba(0,0,0,0.08);
  --transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
body { font-family: 'Inter', sans-serif; background: var(--blanc); color: var(--gris-texte); line-height: 1.55; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0 0.5rem;
  transition: transform 0.3s ease-in-out, padding 0.3s;
}
.site-header.hidden { transform: translateY(-100%); }
.site-header.scrolled { padding: 0.5rem 0 0.2rem; background: rgba(255, 255, 255, 0.96); }
.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}
.logo-wrapper {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--beige-fonce);
  padding-bottom: 0.5rem;
  margin-bottom: 0.2rem;
}
.logo-img {
  height: 55px;
  width: auto;
  display: inline-block;
  transition: transform 0.2s;
  cursor: pointer;
}
.logo-img:hover { transform: scale(1.02); }
.main-nav {
  width: 100%;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  list-style: none;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: var(--gris-texte);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vert-fonce);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { 
  color: var(--vert-fonce);
  font-weight: 600;
}
.main-nav a.active::after {
  height: 3px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Menu mobile : fond transparent, arrière-plan flou *sauf* l'en-tête */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: transparent;
    backdrop-filter: none;
    transition: 0.3s ease-in-out;
    padding: 1rem;
    overflow-y: auto;
    z-index: 1001; /* au-dessus du voile (z-index: 999) */
  }
  .main-nav.active {
    left: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .close-nav {
    display: block;
    text-align: right;
    font-size: 1.8rem;
    cursor: pointer;
    margin-bottom: 1rem;
    background: none;
    border: none;
    width: 100%;
    color: white;
    text-shadow: 0 0 4px black;
  }
  /* Liens du menu : blanc avec ombre pour lisibilité */
  .main-nav a {
    color: white;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    font-size: 1.2rem;
  }
  .main-nav a:hover, .main-nav a.active {
    color: var(--vert-sauge);
    text-shadow: 0 0 4px black;
  }
  .main-nav a::after {
    background: white;
  }
}
.close-nav { display: none; } /* caché sur desktop */

/* Effet de flou sur le contenu principal (pas sur l'en-tête) */
body.menu-open #main-content,
body.menu-open footer {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

/* Voile sombre en arrière-plan */
body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  pointer-events: none;
}

/* BOUTONS */
.btn, button.btn { display: inline-block; background: white; color: var(--vert-sauge); padding: 0.7rem 1.6rem; text-decoration: none; border-radius: 40px; border: 1.5px solid var(--vert-sauge); cursor: pointer; transition: var(--transition); font-family: inherit; font-weight: 500; }
.btn:hover { background: var(--vert-sauge); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active, .btn-outline:active { transform: scale(0.97); }
.btn-outline { border: 1.5px solid var(--vert-sauge); background: white; color: var(--vert-sauge); padding: 0.6rem 1.4rem; border-radius: 40px; text-decoration: none; transition: var(--transition); display: inline-block; cursor: pointer; }
.btn-outline:hover { background: var(--vert-sauge); color: white; transform: translateY(-2px); }

/* SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-end;
  text-align: center;
  color: white;
  padding-bottom: 2.5rem;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
      rgba(0,0,0,0) 0%, 
      rgba(0,0,0,0) 65%, 
      rgba(0,0,0,0.5) 80%, 
      rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.6);
}
.hero-content p { 
  font-size: 1rem; 
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.8rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: rgba(0,0,0,0.8); }

/* SECTIONS PRINCIPALES */
.about-section, .values, .home-gallery, .contact-page, .blog-page, .gallery-page, .produits-page, .legal-page, .testimonials-page, .custom-page { padding: 4rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.about-text blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; margin: 1rem 0; padding-left: 1rem; border-left: 3px solid var(--vert-sauge); color: var(--vert-fonce); }
.about-image img { width: 100%; border-radius: 20px; transition: var(--transition); }
.about-image img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.values { background: var(--beige-clair); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2rem; margin-top: 2rem; }
.value-card { background: white; padding: 1.8rem; border-radius: 20px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.value-card h3 { font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }

/* TÉMOIGNAGES */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; margin-top: 2rem; }
.testimonial-card { background: white; padding: 1.5rem; border-radius: 20px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: #f5b042; margin-bottom: 0.5rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; margin: 0.5rem 0; }
.testimonial-author { font-weight: 600; margin-top: 0.5rem; }
.testimonial-project { font-size: 0.8rem; color: var(--gris-clair); }


/* PRODUITS avec badge RGE */
.produit-card { position: relative; background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.produit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.badge-rge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--vert-fonce);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.produit-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(1) contrast(1.02); transition: transform 0.5s ease, filter 0.3s; }
.produit-card:hover img { transform: scale(1.05); filter: grayscale(0.8) contrast(1.05); }
.produit-info { padding: 1.2rem; }
.produit-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
.produit-fabricant { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--vert-sauge); margin-bottom: 0.5rem; }
.filter-bar-produits { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; justify-content: center; }
.filter-btn-produit { background: none; border: 1px solid var(--beige-fonce); padding: 0.4rem 1.2rem; border-radius: 40px; cursor: pointer; transition: var(--transition); font-size: 0.8rem; }
.filter-btn-produit.active { background: var(--vert-sauge); border-color: var(--vert-sauge); color: white; }
.produits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }

/* BLOG */
.blog-search { margin-bottom: 2rem; }
.blog-search input { width: 100%; max-width: 400px; padding: 0.7rem 1rem; border: 1px solid var(--beige-fonce); border-radius: 40px; font-size: 0.9rem; }
.blog-grid { display: flex; flex-direction: column; gap: 2rem; }
.blog-card { display: flex; gap: 1.5rem; border-bottom: 1px solid var(--beige-fonce); padding-bottom: 1.5rem; transition: var(--transition); align-items: flex-start; }
.blog-card-img { flex-shrink: 0; width: 160px; height: 120px; object-fit: cover; border-radius: 16px; filter: grayscale(0.8); transition: var(--transition); }
.blog-card-content { flex: 1; }
.blog-card h2 a { text-decoration: none; color: var(--vert-fonce); transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--vert-sauge); text-decoration: underline; }
.blog-meta { font-size: 0.8rem; color: var(--gris-clair); margin: 0.3rem 0; }
.blog-views { font-size: 0.7rem; color: var(--gris-clair); margin-top: 0.3rem; }
.article-hero-img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 24px; margin: 1.5rem 0; filter: grayscale(0.9); }
@media (max-width: 768px) { .blog-card { flex-direction: column; } .blog-card-img { width: 100%; height: auto; } }

/* GALERIE */
.home-gallery-grid, .gallery-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin: 2rem 0; }
.gallery-item { position: relative; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease, filter 0.3s; filter: grayscale(1) brightness(0.98); }
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0.7) brightness(1.02); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
  color: white;
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  font-weight: 400;
  letter-spacing: 0.02em;
  backdrop-filter: blur(2px);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.filter-btn { background: none; border: 1px solid var(--beige-fonce); padding: 0.4rem 1.2rem; border-radius: 40px; cursor: pointer; font-size: 0.8rem; transition: var(--transition); }
.filter-btn.active { background: var(--vert-sauge); border-color: var(--vert-sauge); color: white; }

/* ADMIN ACCORDÉON */
.admin-panel { background: var(--beige-clair); padding: 2rem; border-radius: 28px; margin: 2rem 0; }
.admin-section { margin-bottom: 1rem; border: 1px solid var(--beige-fonce); border-radius: 16px; overflow: hidden; background: white; }
.admin-section-header {
  background: var(--beige-fonce);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.admin-section-header:hover { background: #dcd0bc; }
.admin-section-header h3 { margin: 0; font-size: 1.1rem; font-weight: 600; }
.section-toggle-icon { font-size: 1rem; transition: transform 0.2s; }
.admin-section-content { padding: 1rem 1.2rem; display: none; border-top: 1px solid var(--beige-fonce); }
.admin-section-content.open { display: block; }
.admin-form-group { margin-bottom: 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.admin-form-group label { display: block; width: 100%; font-weight: 500; margin-bottom: 0.3rem; }
.admin-form-group input, .admin-form-group textarea { width: 100%; padding: 0.6rem; border: 1px solid var(--beige-fonce); border-radius: 12px; background: white; }
.admin-form-group .upload-btn { background: white; color: var(--vert-sauge); border: 1.5px solid var(--vert-sauge); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; cursor: pointer; transition: 0.2s; margin-left: 0; margin-top: 0.3rem; }
.admin-form-group .upload-btn:hover { background: var(--vert-sauge); color: white; }
.admin-article-item, .admin-gallery-item, .admin-produit-item, .admin-testimonial-item, .admin-page-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lin);
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.move-buttons { display: flex; gap: 0.3rem; margin-left: 0.5rem; }
.move-up, .move-down { background: none; border: none; cursor: pointer; font-size: 1.2rem; padding: 0 0.3rem; }

/* MODAL */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); justify-content: center; align-items: center; z-index: 1000; backdrop-filter: blur(4px); }
.modal-content { background: white; max-width: 600px; width: 90%; padding: 2rem; border-radius: 32px; box-shadow: var(--shadow-hover); animation: fadeInUp 0.3s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-content h3 { margin-bottom: 1.2rem; font-family: 'Playfair Display', serif; }
.modal-content input, .modal-content textarea, .modal-content select { width: 100%; margin-bottom: 1rem; padding: 0.7rem; border: 1px solid var(--beige-fonce); border-radius: 12px; }
.modal-buttons { display: flex; gap: 1rem; justify-content: flex-end; }

/* FOOTER */
footer {
  background: var(--beige-fonce);
  padding: 2rem 0 1rem;
  margin-top: 3rem;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand { flex: 1; min-width: 150px; }
.footer-brand .logo img { height: 32px; width: auto; }
.footer-brand p { font-size: 0.8rem; margin-top: 0.3rem; }
.footer-links { flex: 1; min-width: 120px; }
.footer-links h4 { font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--vert-fonce); }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li, .footer-links a { display: block; margin-bottom: 0.3rem; font-size: 0.75rem; line-height: 1.3; text-decoration: none; color: var(--gris-texte); transition: var(--transition); }
.footer-links a:hover { color: var(--vert-fonce); transform: translateX(3px); }
.footer-contact { flex: 1; min-width: 150px; font-size: 0.75rem; line-height: 1.3; }
.footer-contact h4 { font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--vert-fonce); }
.footer-contact p { margin-bottom: 0.2rem; }
.footer-bottom { text-align: center; margin-top: 1.5rem; padding-top: 0.8rem; border-top: 1px solid rgba(0,0,0,0.08); font-size: 0.65rem; color: var(--gris-taupe); }

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  color: var(--vert-sauge);
  border: 1.5px solid var(--vert-sauge);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 99;
  box-shadow: var(--shadow-md);
  font-size: 1.5rem;
  font-weight: bold;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--vert-sauge);
  color: white;
  transform: translateY(-5px) scale(1.1);
}

/* ANIMATIONS */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.stagger-item.appear { opacity: 1; transform: translateY(0); }
.skeleton-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lin);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.skeleton-loader.fade-out { opacity: 0; pointer-events: none; }
.skeleton-spinner {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, var(--beige-fonce) 25%, var(--beige-clair) 50%, var(--beige-fonce) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 50%;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.appear { opacity: 1; transform: translateY(0); }
.narrow { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.stars { color: #f5b042; }

@media (max-width: 768px) {
  .hero-slider { min-height: 400px; }
  .hero-content h1 { font-size: 1.8rem; }
  .slider-prev, .slider-next { width: 36px; height: 36px; font-size: 1.2rem; }
  .footer-flex { flex-direction: column; gap: 1rem; }
}
/* Note moyenne des avis */
.average-rating {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--beige-clair);
  border-radius: 20px;
}
.average-stars {
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: #f5b042;
}
.average-text {
  font-size: 1rem;
  margin-top: 0.3rem;
  color: var(--gris-taupe);
}

/* Boutons de partage social */
.share-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.share-btn.facebook {
  background: #3b5998;
  color: white;
}
.share-btn.twitter {
  background: #1da1f2;
  color: white;
}
.share-btn.linkedin {
  background: #0077b5;
  color: white;
}
.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.share-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}
/* PROMO BANNER */
.promo-banner {
    padding: 0.8rem 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.promo-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.promo-banner.style-info { background: #dbeafe; color: #1e40af; }
.promo-banner.style-urgent { background: #fee2e2; color: #991b1b; }
.promo-banner.style-success { background: #dcfce7; color: #166534; }
.promo-banner.style-neutre { background: #f3f4f6; color: #374151; }
.promo-link { color: inherit; text-decoration: underline; font-weight: 600; font-size: 0.9rem; }
.promo-banner-close {
    background: rgba(0,0,0,0.1);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.promo-banner-close:hover { background: rgba(0,0,0,0.2); }
.promo-banner.hidden { display: none; }
/* Force la bannière promo au-dessus du hero */
.promo-banner {
    position: relative;
    z-index: 50;
}/* PAGE HERO BANNER (titres de pages internes) */
.page-hero-banner {
    background: linear-gradient(135deg, #f5f2ec 0%, #e0dcd2 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.page-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: white;
    margin: 0 0 0.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 5px 16px rgba(0,0,0,0.30), 0 2px 5px rgba(0,0,0,0.18);
}
.page-hero-subtitle {
    color: var(--gris-texte);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .page-hero-banner { padding: 2.5rem 1.5rem; }
}

/* === Bandeau titre pages internes : fond blanc + texte gris clair === */
.page-hero-banner {
    background: #ffffff !important;
    background-image: none !important;
}
.page-hero-title,
.page-title {
    color: #fafafa !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.85), 1px 1px 2px rgba(0, 0, 0, 0.95) !important;
}
.page-hero-subtitle,
.page-subtitle {
    color: #000000 !important;
}

/* === Footer : fond vert sauge clair === */
footer {
    background: rgba(170, 200, 41, 0.15) !important;
    background-image: none !important;
}

/* === Menu : texte plus grand + plus d'espacement (DESKTOP UNIQUEMENT) === */
@media (min-width: 1025px) {
    .main-nav ul {
        gap: 2.5rem !important;
    }
    .main-nav a {
        font-size: 1.05rem !important;
        letter-spacing: 0.01em !important;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .main-nav ul {
        gap: 1.8rem !important;
    }
    .main-nav a {
        font-size: 1rem !important;
    }
}

/* === Fond du site === */
body {
    background: #fafafa !important;
}