/* =========================================================
   Conseil Bien-Être — Feuille de style (thème Nature & doux)
   ========================================================= */

:root {
  --sage:        #7c9885;
  --sage-light:  #a8bfae;
  --eucalyptus:  #5f7d6e;
  --deep-green:  #3a5246;
  --deep-green-d:#2c3f35;
  --cream:       #f7f3ec;
  --beige:       #ece3d4;
  --off-white:   #fdfcf8;
  --charcoal:    #2d352f;
  --grey:        #6b736c;
  --cta:         #d98248;
  --cta-dark:    #c46d35;
  --cta-glow:    rgba(217,130,72,.45);
  --shadow:      0 10px 30px rgba(58,82,70,.10);
  --shadow-lg:   0 20px 50px rgba(58,82,70,.16);
  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1140px;
  --font-head:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:   'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--eucalyptus); text-decoration: none; transition: color .2s; }
a:hover { color: var(--deep-green); }

h1,h2,h3,h4 { font-family: var(--font-head); color: var(--deep-green); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 4.5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tight { padding: 54px 0; }
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--beige); }
.text-center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--grey); max-width: 720px; }
.lead.center { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .16em;
  font-size: .78rem; font-weight: 600; color: var(--sage);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
  padding: 15px 30px; border-radius: 100px; transition: all .25s ease;
  font-family: var(--font-body);
}
.btn--ghost { background: transparent; color: var(--deep-green); border: 1.5px solid var(--sage-light); }
.btn--ghost:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.btn--green { background: var(--eucalyptus); color: #fff; }
.btn--green:hover { background: var(--deep-green); color: #fff; }

/* ---- The star: "Demander une consultation" ---- */
.btn--cta {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px var(--cta-glow);
  position: relative;
  font-weight: 700;
  letter-spacing: .01em;
}
.btn--cta::after {
  content: "→"; font-size: 1.15em; transition: transform .25s;
}
.btn--cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--cta-glow);
}
.btn--cta:hover::after { transform: translateX(4px); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }
.btn--pulse { animation: pulse 2.6s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 8px 22px var(--cta-glow); }
  50%  { box-shadow: 0 8px 22px var(--cta-glow), 0 0 0 10px rgba(217,130,72,0); }
  100% { box-shadow: 0 8px 22px var(--cta-glow); }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,252,248,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124,152,133,.18);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--eucalyptus));
  display: grid; place-items: center; color: #fff; flex: 0 0 auto;
}
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--deep-green); line-height: 1.1; }
.brand__name small { display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav__links a { color: var(--charcoal); font-weight: 500; font-size: .97rem; }
.nav__links a:hover, .nav__links a.active { color: var(--eucalyptus); }
.nav__cta { margin-left: 8px; }
.nav__cta .btn { padding: 11px 22px; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--deep-green); margin: 5px 0; border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(124,152,133,.28), transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--off-white) 100%);
  padding: 90px 0 80px;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero p { font-size: 1.2rem; color: var(--grey); margin-bottom: 30px; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual {
  aspect-ratio: 1/1; border-radius: 28px;
  background: linear-gradient(150deg, var(--sage) 0%, var(--eucalyptus) 60%, var(--deep-green) 100%);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.hero__visual .leafmark { font-size: 8rem; opacity: .9; }
.hero__visual::before, .hero__visual::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.hero__visual::before { width: 220px; height: 220px; top: -60px; right: -50px; }
.hero__visual::after  { width: 150px; height: 150px; bottom: -40px; left: -30px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(124,152,133,.12);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
  background: var(--cream); display: grid; place-items: center;
  color: var(--eucalyptus);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--grey); margin-bottom: 0; font-size: .98rem; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex: 0 0 24px; height: 24px; width: 24px; border-radius: 50%;
  background: var(--sage); color: #fff; font-size: .8rem; font-weight: 700;
  display: grid; place-items: center; margin-top: 2px;
}
.checklist--2col { grid-template-columns: 1fr 1fr; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split__media {
  border-radius: var(--radius); min-height: 320px;
  background: linear-gradient(150deg, var(--sage-light), var(--eucalyptus));
  box-shadow: var(--shadow); display: grid; place-items: center; color: #fff; font-size: 5rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--eucalyptus) 100%);
  color: #fff; text-align: center; border-radius: 0;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); border: 1px solid rgba(124,152,133,.14);
  display: flex; flex-direction: column; position: relative;
}
.price-card--featured {
  border: 2px solid var(--cta);
  box-shadow: var(--shadow-lg);
}
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cta); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 6px 18px; border-radius: 100px; letter-spacing: .04em; white-space: nowrap;
}
.price-card__accroche { color: var(--sage); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.price-card h3 { font-size: 1.5rem; margin: 6px 0 4px; }
.price-card__meta { color: var(--grey); font-size: .92rem; margin-bottom: 16px; }
.price-card__price { font-family: var(--font-head); font-size: 2.6rem; color: var(--deep-green); font-weight: 600; }
.price-card__price small { font-size: .95rem; color: var(--grey); font-family: var(--font-body); font-weight: 400; }
.price-card__desc { color: var(--grey); font-size: .96rem; margin: 14px 0 18px; }
.price-card .checklist { margin-bottom: 24px; }
.price-card .checklist li { font-size: .94rem; }
.price-card .btn { margin-top: auto; justify-content: center; width: 100%; }

.pay-options { display: grid; gap: 12px; margin: 4px 0 22px; }
.pay-option {
  border: 1px solid rgba(124,152,133,.25); border-radius: var(--radius-sm);
  padding: 14px 16px; background: var(--cream);
}
.pay-option__top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.pay-option__label { font-weight: 600; color: var(--deep-green); font-size: .95rem; }
.pay-option__amount { font-family: var(--font-head); font-weight: 600; color: var(--cta-dark); font-size: 1.15rem; white-space: nowrap; }
.pay-option__arg { font-size: .85rem; color: var(--grey); margin-top: 2px; }
.pay-option--best { border-color: var(--cta); background: #fff7f1; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(124,152,133,.12);
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card__cover {
  height: auto; aspect-ratio: 600 / 380; display: grid; place-items: center; color: #fff; font-size: 3rem;
}
.cover-thyroide  { background: linear-gradient(135deg,#7c9885,#3a5246); }
.cover-feminin   { background: linear-gradient(135deg,#c98a9b,#8a5a6b); }
.cover-energie   { background: linear-gradient(135deg,#e0a85d,#c46d35); }
.cover-digestion { background: linear-gradient(135deg,#86a9a0,#4a6e64); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat {
  align-self: flex-start; font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--eucalyptus); background: var(--cream);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 12px;
}
.post-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.post-card p { color: var(--grey); font-size: .94rem; flex: 1; }
.post-card__meta { font-size: .82rem; color: var(--sage); margin-top: 14px; display: flex; gap: 12px; }
.post-card__link { margin-top: 14px; font-weight: 600; color: var(--cta-dark); }

/* ---------- Article ---------- */
.article-hero { padding: 60px 0 40px; }
.article-hero .post-card__cat { display: inline-block; }
.article-hero h1 { margin: 14px 0 16px; max-width: 820px; }
.article-meta { color: var(--sage); font-size: .9rem; display: flex; gap: 16px; flex-wrap: wrap; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 1.07rem; color: #3c453d; }
.article-body h2 { margin: 38px 0 14px; }
.article-body blockquote {
  border-left: 4px solid var(--cta); background: var(--cream);
  padding: 20px 26px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head); font-size: 1.25rem; color: var(--deep-green);
  margin: 30px 0; font-style: italic;
}
.content-list { background: var(--cream); border-radius: var(--radius-sm); padding: 22px 26px; margin: 24px 0; }
.content-list__title { font-weight: 700; color: var(--deep-green); margin-bottom: 12px; font-family: var(--font-head); }
.content-list ul { list-style: none; display: grid; gap: 10px; }
.content-list li { display: flex; gap: 10px; align-items: flex-start; color: #3c453d; }
.content-list li::before { content: "•"; color: var(--cta); font-weight: 700; font-size: 1.3rem; line-height: 1; }

.article-disclaimer {
  max-width: 760px; margin: 40px auto 0; padding: 18px 22px;
  background: #f4f6f3; border: 1px solid rgba(124,152,133,.25); border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--grey);
}

/* ---------- Legal page ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { margin: 34px 0 12px; font-size: 1.5rem; }
.legal h3 { margin: 22px 0 8px; }
.legal p, .legal li { color: #3c453d; }
.legal ul { margin: 0 0 16px 22px; }
.legal ul li { margin-bottom: 8px; }
.legal .updated { color: var(--grey); font-size: .9rem; font-style: italic; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-green-d); color: rgba(255,255,255,.82); padding: 56px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; display: grid; gap: 10px; font-size: .95rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { font-size: .95rem; color: rgba(255,255,255,.7); margin-top: 14px; max-width: 320px; }
.footer-cta .btn { margin-top: 6px; }
.disclaimer-bar {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0; font-size: .78rem; color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.disclaimer-bar strong { color: rgba(255,255,255,.75); }
.footer-legal { padding: 16px 0 26px; font-size: .8rem; color: rgba(255,255,255,.5); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Misc ---------- */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.pill-note { display: inline-block; background: var(--cream); color: var(--eucalyptus); padding: 10px 20px; border-radius: 100px; font-size: .92rem; font-weight: 500; }

/* ---------- Photos (avec repli dégradé) ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--sage-light), var(--eucalyptus));
}
.ph img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Repli coloré par thème quand utilisé sur les couvertures */
.ph.cover-thyroide  { background: linear-gradient(135deg,#7c9885,#3a5246); }
.ph.cover-feminin   { background: linear-gradient(135deg,#c98a9b,#8a5a6b); }
.ph.cover-energie   { background: linear-gradient(135deg,#e0a85d,#c46d35); }
.ph.cover-digestion { background: linear-gradient(135deg,#86a9a0,#4a6e64); }

/* Hero avec photo */
.hero__photo { aspect-ratio: 4/5; box-shadow: var(--shadow-lg); border-radius: 28px; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(44,63,53,.28));
}

/* Bloc média des sections split (remplace l'ancien .split__media) */
.split__media.ph { min-height: 340px; }
.split__media.ph img { position: absolute; }

/* Couvertures blog/article : la photo remplit, l'emoji disparaît s'il y a image */
.post-card__cover.ph { display: block; }
.post-card__cover.ph .cover-emoji { display: none; }

/* Voile vert léger sur les couvertures pour garder le badge lisible */
.post-card__cover.ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(58,82,70,.10), rgba(58,82,70,.30));
}

/* ---------- Sélecteur Mensuel / Forfait ---------- */
.price-toggle {
  display: flex; gap: 4px; padding: 5px; margin: 4px 0 6px;
  background: var(--cream); border-radius: 100px;
}
.price-toggle button {
  flex: 1; border: none; cursor: pointer; padding: 10px 12px; border-radius: 100px;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--grey);
  transition: all .2s;
}
.price-toggle button.active {
  background: #fff; color: var(--deep-green); box-shadow: 0 2px 10px rgba(58,82,70,.12);
}
.price-toggle button:hover:not(.active) { color: var(--deep-green); }

.pay-view { display: none; margin: 14px 0 4px; }
.pay-view.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.pay-view__amount { font-family: var(--font-head); font-size: 2.6rem; color: var(--deep-green); font-weight: 600; line-height: 1; }
.pay-view__amount small { font-size: .42em; color: var(--grey); font-family: var(--font-body); font-weight: 500; }
.pay-view__sub { color: var(--grey); font-size: .92rem; margin-top: 8px; }
.pay-view__save {
  display: inline-block; margin-top: 10px; background: #fff3e9; color: var(--cta-dark);
  font-weight: 700; font-size: .85rem; padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(217,130,72,.35);
}
.pay-view__total { color: var(--grey); font-size: .85rem; margin-top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
  .grid--3, .grid--4, .price-grid, .post-grid, .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .checklist--2col { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; top: 69px; right: 0; height: calc(100vh - 69px); width: 270px;
    background: var(--off-white); flex-direction: column; align-items: flex-start;
    padding: 30px 28px; gap: 22px; box-shadow: -10px 0 40px rgba(0,0,0,.1);
    transform: translateX(100%); transition: transform .3s; z-index: 60;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__toggle { display: block; z-index: 70; }
  .nav__cta { margin-left: 0; }
  .grid--4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
