:root{
  --sage:#7F9C8B;
  --sage-700:#5F806F;
  --gold:#C4A768;
  --ink:#3E3A36;
  --muted:#EAE6DF;
}

/* ============================
   Base & Reset
============================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  margin:0;
  padding:0;
  font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#b7c8bc 0%,#dcd7c3 50%,#efe3d2 100%);
  background-attachment:fixed;
}

/* ============================
   Liens
============================ */
a {
  color: #3e593d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================
   Header
============================ */
.site-header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 12px 28px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1100px; /* valeur d'origine conservée */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Lien logo (ancre) */
.logo {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--sage-700);
  text-decoration: none;
}

/* Ajout : conteneur logo + nom pour le header actuel */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-container img {
  height: 40px;
}

/* Ajout : style du nom de marque utilisé dans le header */
.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}

/* Nav – on garde tes liens et on ajoute le conteneur pour remplacer les styles inline */
.nav-links {
  display: flex;               /* remplace le style inline */
  gap: 25px;                   /* espacement propre entre liens */
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.nav-links a {
  /* ton CSS d’origine mettait un margin-left; on le neutralise
     car on utilise désormais 'gap' sur le conteneur */
  margin-left: 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover {
  color: var(--gold);
}

/* Ajout : bouton burger (caché sur desktop) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #3E3A36;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============================
   Footer
============================ */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  background: #f4f2ed;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
  color: #555;
}

.site-footer a {
  color: var(--sage-700);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--gold);
}

/* ============================
   Lecture énergétique complète
============================ */

/* Boutons Virtual Essence 🌿 */
.btn-primary,
.btn-gold {
  display: inline-block;
  margin-top: 14px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--sage), var(--sage-700));
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25),
              0 0 12px rgba(127,156,139,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover,
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3),
              0 0 18px rgba(127,156,139,0.55);
}

/* Bloc 1 HERO */
.hero {
  text-align: center;
  padding: 80px 20px 120px;
}
.hero img {
  max-width: 900px;
  width: 100%;
  margin: 30px auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(42px, 6vw, 68px);
  color: var(--gold);
  margin: 0 0 12px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.25),
               0 0 18px rgba(196,167,104,0.45);
}
.hero h2 {
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.hero p {
  font-size: 22px;
  margin: 24px 0;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 3px 6px rgba(0,0,0,0.35);
}

/* Bloc 2 Pivot */
.pivot {
  padding: 70px 20px 90px;
  text-align: center;
}
.pivot .inner {
  max-width: 900px;
  margin: 0 auto;
}
.pivot .rule {
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 6px auto 28px;
}
.pivot h2 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  margin: 0 0 20px;
  color: var(--ink);
}
.pivot ul {
  list-style: none;
  padding-left: 40px;
  max-width: 500px;
  margin: 0 auto 28px;
  text-align: left;
}
.pivot ul li {
  font-size: 19px;
  line-height: 1.8;
  margin: 6px 0;
  color: var(--ink);
}
.pivot ul li::before {
  content: "–";
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  width: 24px;
  margin-left: -24px;
}
.pivot p {
  font-size: 19px;
  line-height: 1.8;
  margin: 10px 0;
}

/* Bloc 3 Promesse */
.promesse {
  padding: 80px 20px 90px;
  text-align: center;
}
.promesse .inner {
  max-width: 880px;
  margin: 0 auto;
}
.promesse .rule {
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 6px auto 28px;
}
.promesse h2 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  margin: 0 0 20px;
  color: var(--ink);
}
.promesse p {
  font-size: 19px;
  line-height: 1.8;
  margin: 14px 0;
}

/* Bloc 4 Après */
.apres {
  padding: 84px 20px 92px;
  text-align: center;
}
.apres .inner {
  max-width: 880px;
  margin: 0 auto;
}
.apres .rule {
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 6px auto 28px;
}
.apres h2 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  margin: 0 0 20px;
  color: var(--ink);
}
.apres ul {
  list-style: none;
  padding-left: 44px;
  max-width: 620px;
  margin: 0 auto 20px;
  text-align: left;
}
.apres li {
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.85;
}
.apres li::before {
  content: "–";
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  width: 24px;
  margin-left: -24px;
}

/* Bloc 5 Piliers */
.piliers {
  padding: 84px 20px 100px;
  text-align: center;
}
.piliers .inner {
  max-width: 980px;
  margin: 0 auto;
}
.piliers .rule {
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 6px auto 30px;
}
.piliers h2 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  margin: 0 0 24px;
  color: var(--ink);
}
.grid-4 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.pill h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4.8vw, 40px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 3px 8px rgba(0,0,0,.22),
               0 0 14px rgba(196,167,104,.38);
}
.piliers p.lead {
  font-size: 18.5px;
  line-height: 1.9;
  margin: 28px auto 0;
  max-width: 760px;
}

/* Bloc 6 Produit */
.produit {
  padding: 90px 20px 100px;
  text-align: center;
}
.produit img {
  max-width: 480px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* Bloc 7 Offre */
.cards-wrap {
  max-width: 1100px;
  margin: 28px auto;
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .cards-wrap {
    grid-template-columns: 1.35fr .9fr;
  }
}
.card {
  background: #fff;
  border: 1px solid #E8E2D8;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(44,35,22,.08);
  padding: 24px 28px;
}
.card-left h3 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  color: #2c2a27;
  margin: 0 0 10px;
}
.card-left ul {
  margin: 14px 0 0 18px;
  padding-left: 12px;
}
.card-left li {
  margin: .6em 0;
  line-height: 1.6;
}
.card-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6d4e2d;
  background: rgba(179,139,89,.10);
  border: 1px solid rgba(179,139,89,.28);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.price {
  font-family: "Fraunces", serif;
  font-size: 44px;
  color: #b38b59;
  margin: .5em 0;
}

/* Bloc 8 Témoignages */
.testimonials-section {
  max-width: 1100px;
  margin: 80px auto;
  text-align: center;
}
.testimonials-section h2 {
  font-family: "Fraunces", serif;
  font-size: 32px;
  color: #b38b59;
  margin-bottom: 40px;
}
.testimonials-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.testimonial-featured {
  background: #fff;
  border: 1px solid #E8E2D8;
  border-radius: 18px;
  padding: 32px 36px;
  margin-bottom: 60px;
  box-shadow: 0 18px 40px rgba(44,35,22,.08);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.testimonial-featured::before {
  content: "“";
  font-size: 70px;
  color: #b38b59;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.3;
}
.testimonial-featured strong {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  color: #444;
}
.testimonials-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-card {
  background: #fff;
  border: 1px solid #E8E2D8;
  border-radius: 14px;
  padding: 20px 22px;
  font-size: .95rem;
  line-height: 1.6;
  box-shadow: 0 10px 28px rgba(44,35,22,.06);
  position: relative;
  text-align: left;
}
.testimonial-card::before {
  content: "“";
  font-size: 42px;
  color: #b38b59;
  position: absolute;
  top: -10px;
  left: 12px;
  opacity: 0.25;
}
.testimonial-card strong {
  display: block;
  margin-top: 14px;
  font-size: .9rem;
  color: #444;
}

/* Bloc 9 Final */
.final-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f4f2ed 0%, #e7e0d5 100%);
  border-top: 1px solid rgba(0,0,0,.05);
}
.final-section .separator {
  width: 70px;
  height: 3px;
  background: #b38b59;
  margin: 0 auto 24px;
  border-radius: 2px;
}
.final-section h2 {
  font-family: "Fraunces", serif;
  font-size: 36px;
  color: #b38b59;
  margin-bottom: 24px;
}
.final-section p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 20px;
}
.final-section .subtle {
  font-size: .9rem;
  color: #6f6b68;
  margin-top: 14px;
}

/* ============================
   Styles quiz / résultats
============================ */
.page-contact .apres ul {
  list-style: none;
  padding-left: 0;
  max-width: 750px;
  margin: 0 auto;
}

.page-contact .apres ul li {
  background: #fff;
  border: 1px solid #E8E2D8;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 16px 0;
  box-shadow: 0 10px 28px rgba(44,35,22,.06);
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-contact .apres ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(44,35,22,.10);
}

.page-contact .apres ul li strong {
  font-size: 18px;
  color: var(--gold);
}

.page-contact .apres ul li a.btn-primary {
  align-self: flex-start;
  padding: 8px 20px;
  font-size: 14px;
  margin-top: 6px;
  border-radius: 999px;
}



/* ============================
   Page Qui suis-je
============================ */

.page-qui .hero {
  text-align: center;
  padding: 80px 20px 100px;
}

.page-qui .hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--gold);
  margin: 0 0 20px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.25),
               0 0 18px rgba(196,167,104,0.45);
}

.page-qui .hero p {
  font-size: 20px;
  max-width: 760px;
  margin: 14px auto;
  line-height: 1.6;
}

.page-qui section {
  padding: 70px 20px 90px;
  text-align: center;
}

.page-qui .inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-qui h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 20px;
}

.page-qui ul {
  list-style: none;
  padding-left: 0;
}

.page-qui ul li {
  margin: 8px 0;
}

.page-qui ul li::before {
  content: "–";
  color: var(--gold);
  font-weight: bold;
  margin-right: 6px;
}

.page-qui .final-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f4f2ed 0%, #e7e0d5 100%);
  border-top: 1px solid rgba(0,0,0,.05);
}

/* ============================
   Harmonisation automatique des emojis
============================ */

/* Assure une base typographique propre */
body, p, li, h1, h2, h3 {
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Règle générale pour les emojis inline */
body {
  font-variant-emoji: emoji;
}

/* Ajuste la taille et l’alignement des emojis */
p, li, h1, h2, h3 {
  font-size: inherit;
}

@supports (font-variant-emoji: emoji) {
  p, li, h1, h2, h3 {
    font-variant-emoji: emoji;
  }
}

/* Optionnel : si tu veux forcer un style plus fin pour certains emojis */
.emoji-inline {
  font-size: 0.9em; /* légèrement réduit par rapport au texte */
  vertical-align: -0.1em; /* alignement parfait avec la ligne de texte */
}

/* ============================
   Cartes de résultats (services.html)
============================ */

.page-services .pivot ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 30px auto;
  display: grid;
  gap: 18px;
}

.page-services .pivot ul li {
  background: #fff;
  border: 1px solid #E8E2D8;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 10px 28px rgba(44,35,22,.06);
  font-size: 17px;
  line-height: 1.6;
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-services .pivot ul li strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}

.page-services .pivot ul li:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44,35,22,.12);
}

/* ============================
   Pages légales (CGV, Confidentialité, Mentions)
============================ */
main.legal{
  max-width:900px;
  margin:60px auto;
  padding:40px;
  background:rgba(255,255,255,0.92); /* translucide pour laisser voir le dégradé */
  border-radius:16px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

main.legal h1{
  font-family:"Fraunces",serif;
  font-size:32px;
  color:var(--gold);
  margin-bottom:20px;
}

main.legal h2{
  font-size:20px;
  margin-top:28px;
  color:var(--sage-700);
}

main.legal p, main.legal li{
  font-size:16px;
  line-height:1.7;
  margin:10px 0;
}

/* Correction affichage : footer toujours collé en bas */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}

.services-grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  grid-template-columns: 1fr; /* Mobile par défaut */
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes sur desktop */
  }
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--sage-700, #5F806F);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  margin: 10px 0;
  color: var(--ink, #3E3A36);
}

.service-card .gain {
  color: var(--sage, #7F9C8B);
  font-style: italic;
  margin-top: 10px;
}

.btn-card {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: var(--gold, #C4A768);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-card:hover {
  background: #a88d54;
}

.unsubscribe {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh; /* centré verticalement */
  padding: 20px;
}

.unsubscribe-container {
  background: #F7F5F2;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.unsubscribe-container h1 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--sage);
  margin-bottom: 20px;
}

.unsubscribe-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 15px 0;
}

.unsubscribe-container a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.unsubscribe-container a:hover {
  text-decoration: underline;
}

.footer-note {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #555;
}

/* Bloc Offre - Colonne de droite */
.cards-wrap .card-right {
  text-align: center;
  padding: 3rem 2rem; /* plus d’air autour */
}

.cards-wrap .price-rounded {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  border-radius: 999px;
  background: #f6f1e7;
  color: var(--sage-700);
  letter-spacing: -0.01em;
  padding: 0.7em 1.4em;
  margin: 2rem 0 2.5rem;
}

.cards-wrap .card-right .btn-gold {
  margin: 2.5rem 0;      /* espace haut/bas équilibré */
  padding: 18px 44px;    /* bouton plus généreux */
  font-size: 19px;
}

/* Ajustement page-qui (bloc demandé précédemment) */
.page-qui .inner {
  max-width: 800px;   /* largeur confortable pour lecture */
  margin: 0 auto;     /* centre horizontalement */
  text-align: left;   /* texte aligné à gauche */
  padding: 0 20px;    /* petite marge interne pour mobile */
}

/* ============================
   Responsive Header (burger)
============================ */
@media (max-width: 768px) {
  .burger {
    display: flex; /* visible sur mobile */
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    flex-direction: column;
    background: #fff;
    gap: 15px;
    padding: 20px;
    width: 220px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: none; /* caché par défaut */
    z-index: 1001; /* garantit que le menu passe au-dessus du contenu */
  }

  .nav-links.open {
    display: flex;
  }

  /* Animation burger en croix */
  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

.testimonial-card .stars {
  font-size: 20px;
  color: gold;
  margin-bottom: 8px;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2em;
  color: var(--gold);
  text-decoration: none;
  margin-left: 8px;
}

.brand-name:hover {
  opacity: 0.9;
}
