/* ============================================================
   DOMINIQUE JOLIVET — Hypnothérapeute
   v3 · Clean & Professional
   ============================================================ */

/* --- Tokens --- */
:root {
  --gold: #d4a24c;
  --gold-light: #f5e6c8;
  --gold-dark: #a07830;
  --gold-bg: rgba(212,162,76,0.06);
  --teal: #2a9d8f;
  --teal-light: #e8f5f3;
  --teal-dark: #1e7a6e;
  --dark: #2d2a26;
  --text: #3d3935;
  --text-light: #6b6560;
  --bg: #fdfcfa;
  --bg-warm: #f5f2ed;
  --white: #ffffff;
  --border: #ece8e2;
  --border-hover: #d4a24c;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 16px rgba(212,162,76,0.2);
  --max-w: 1180px;
  --text-w: 700px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --neutral-800: #363330;
}

html { color-scheme: light; scroll-behavior: smooth; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px; line-height: 1.75; color: var(--text);
  background: var(--bg); -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--dark); line-height: 1.25; font-weight: 400;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }
ul, ol { list-style: none; }
::selection { background: var(--gold-light); color: var(--dark); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
p { max-width: 68ch; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(253,252,250,0.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 5%; background: var(--dark); color: rgba(255,255,255,0.8);
  font-size: 12px; letter-spacing: 0.02em;
  flex-wrap: wrap; gap: 4px 12px;
}
.stars-badge { display: flex; align-items: center; gap: 6px; }
.stars-badge .stars-text { color: rgba(255,255,255,0.7); }
.stars-badge .stars-text strong { color: #fff; }
.stars-badge .lost-reviews { color: rgba(255,255,255,0.62); font-size: 11px; text-decoration: underline; text-underline-offset: 2px; }
.stars-badge .lost-reviews:hover { color: var(--gold); }
.nav-top .phone a { color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.nav-top .phone a:hover { color: var(--gold-light); }

/* Nav CTA — Premium conversion button */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 28px; border-radius: 50px; justify-content: center; text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, #c08b30 100%);
  color: #fff !important; font-weight: 700;
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  border: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px rgba(212,162,76,0.3);
  text-decoration: none !important; position: relative;
}
.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #c08b30 0%, var(--gold) 100%);
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,162,76,0.45);
}
.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212,162,76,0.3);
}
.nav-main {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 5%; max-width: var(--max-w); margin: 0 auto;
}
.logo-block { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-block img { height: 44px; width: auto; }
.logo-subtitle {
  font-size: 10px; font-weight: 500; color: #888 !important;
  letter-spacing: 0.04em; line-height: 1; margin: 0; padding: 0;
}
.nav-links, .nav-links ul {
  display: flex; gap: 16px; align-items: center; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text); font-size: 13px; font-weight: 500; padding: 4px 0; position: relative;
  transition: color 0.2s var(--ease); white-space: nowrap;
}
.nav-links a:hover, .nav-links .current-menu-item a, .nav-links a.active { color: var(--gold); }
.menu-toggle {
  display: none; background: none; border: none; color: var(--dark);
  cursor: pointer; padding: 8px; font-size: 22px; line-height: 1;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 14px 32px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em;
  border: none; cursor: pointer; box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,162,76,0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--dark); padding: 12px 28px; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
  border: 1.5px solid var(--dark); transition: all 0.25s var(--ease);
}
.btn-secondary:hover { background: var(--dark); color: #fff; }
.btn-secondary svg { width: 16px; height: 16px; }
.btn-teal { background: var(--teal); box-shadow: 0 4px 16px rgba(42,157,143,0.2); }
.btn-teal:hover { background: var(--teal-dark); box-shadow: 0 6px 20px rgba(42,157,143,0.3); color: #fff; }
.btn-large { padding: 14px 36px; font-size: 15px; }
.btn-nav { font-size: 13px; padding: 8px 18px; border-radius: 8px; }
.btn-icon svg { transition: transform 0.2s; }
.btn-icon:hover svg { transform: translateX(3px); }
.btn-sticky { display: block; width: 100%; text-align: center; }

/* NAV CTA GROUP (phone + RDV buttons in header) */
.nav-cta-group { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: 8px; }
.btn-nav--phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text); font-size: 13px; font-weight: 500; white-space: nowrap;
  padding: 7px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  text-decoration: none; transition: all 0.2s;
}
.btn-nav--phone:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.btn-nav--rdv { white-space: nowrap; }
@media (max-width: 1280px) {
  .btn-nav-label { display: none; }
  .btn-nav--phone { padding: 7px 10px; }
}

/* HERO */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  min-height: 88vh; padding: 140px 5% 80px; max-width: var(--max-w); margin: 0 auto;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; background: var(--gold-bg); color: var(--gold-dark);
  border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(212,162,76,0.15);
}
.badge svg, .badge img { height: 14px; flex-shrink: 0; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.highlight { color: var(--teal); }
.hero-content > p { font-size: 17px; color: var(--text); margin-bottom: 32px; line-height: 1.75; }
.cta-group { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-image { position: relative; }
.hero-image::before {
  content: ''; position: absolute; top: -12px; right: -12px; width: 100%; height: 100%;
  border: 2px solid var(--gold-light); border-radius: var(--radius-lg); z-index: -1;
}

/* TRUST BAR */
.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--dark); }
.trust-item { text-align: center; padding: 28px 16px; position: relative; }
.trust-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: rgba(255,255,255,0.08);
}
.trust-item strong { display: block; font-size: 28px; font-family: 'DM Serif Display', sans-serif; color: var(--gold); font-weight: 800; line-height: 1; }
.trust-item span { display: block; margin-top: 4px; color: rgba(255,255,255,0.72); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }

/* SECTIONS */
.section-spacing { padding: 80px 5%; max-width: var(--max-w); margin: 0 auto; }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--dark); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.6); }
.section-header, .section-title { text-align: center; margin-bottom: 48px; }
.section-header h2, .section-title h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 12px; letter-spacing: -0.01em; }
.section-header p, .section-title p { color: var(--text-light); font-size: 16px; max-width: 520px; margin: 0 auto; }
.accent-line { width: 40px; height: 3px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); padding: 32px;
  border-radius: var(--radius-lg); transition: all 0.3s var(--ease); position: relative;
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-card--numbered { counter-increment: feature; }
.feature-card--numbered::after {
  content: counter(feature, decimal-leading-zero); position: absolute; top: 24px; right: 24px;
  font-family: 'DM Serif Display', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; color: rgba(255,255,255,0.06);
}
.feature-card .icon-svg { margin-bottom: 16px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card h3 a { color: var(--dark); }
.feature-card h3 a:hover { color: var(--teal); }
.feature-card p { color: var(--text-light); font-size: 14px; line-height: 1.65; }

/* SVG ICONS */
.icon-svg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 10px; color: var(--gold);
  background: var(--gold-bg); border-radius: var(--radius); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.icon-svg svg { width: 100%; height: 100%; }
.icon-svg--teal { color: var(--teal); background: var(--teal-light); }
.icon-svg--dark { color: var(--gold); background: rgba(255,255,255,0.06); }
.icon-svg--large { width: 64px; height: 64px; padding: 14px; border-radius: var(--radius-lg); }
.icon-quote { position: absolute; top: 24px; left: 28px; opacity: 0.08; }

/* TWO COLUMNS */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.col-text h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.col-text p { margin-bottom: 20px; font-size: 15px; }
.col-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* PAGE HEADER */
.page-header {
  padding: 120px 5% 40px; text-align: center; max-width: var(--max-w); margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.page-header h1 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 12px; letter-spacing: -0.01em; }
.page-header p { color: var(--text-light); font-size: 16px; max-width: 560px; margin: 0 auto; }
.author-line { color: var(--text-light); font-size: 14px; margin-top: 8px; }
.author-line strong { color: var(--dark); }

/* BREADCRUMB */
.breadcrumb { padding: 110px 5% 0; max-width: var(--max-w); margin: 0 auto; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { margin: 0 4px; opacity: 0.4; }

/* ARTICLE BODY */
.content-section { max-width: var(--text-w); margin: 0 auto; padding: 40px 5%; }
.article-body h2 { font-size: 24px; margin: 40px 0 14px; padding-left: 16px; border-left: 3px solid var(--gold); }
.article-body h3 { font-size: 19px; margin: 32px 0 10px; }
.article-body p { margin-bottom: 16px; font-size: 15.5px; line-height: 1.75; }
.article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: var(--dark); }
.article-body ul, .article-body ol { margin: 12px 0 20px 24px; }
.article-body li { margin-bottom: 6px; list-style: disc; }
.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 16px 20px; margin: 20px 0;
  background: var(--gold-bg); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--dark);
}
.article-body img, .article-body .wp-block-image img {
  margin: 24px auto; border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.article-body figure figcaption { text-align: center; color: var(--text-light); font-size: 12px; margin-top: 6px; }

/* ARTICLE CTA */
.article-cta {
  margin-top: 48px; padding: 36px; text-align: center;
  background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.article-cta h3 { font-size: 20px; margin-bottom: 8px; color: var(--dark); }
.article-cta p { color: var(--text); margin: 0 auto 20px; }
.article-cta a.btn-primary { color: #fff; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s var(--ease);
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date {
  display: block; font-size: 12px; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px;
}
.blog-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.35; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { color: var(--text-light); font-size: 13.5px; line-height: 1.6; flex: 1; margin-bottom: 12px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 4px; }
.read-more svg { width: 14px; height: 14px; transition: transform 0.2s; }
.read-more:hover svg { transform: translateX(3px); }

/* CONTACT */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 0; }
.contact-block { margin-bottom: 16px; padding: 20px; background: var(--bg-warm); border-radius: var(--radius); transition: transform 0.2s; }
.contact-block:hover { transform: translateX(3px); }
.contact-block h3 { font-size: 15px; margin-bottom: 6px; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.contact-block p { font-size: 14px; color: var(--text); margin: 0; }
.contact-block .icon-svg { width: 28px; height: 28px; padding: 5px; }
.phone-link { color: var(--teal); font-size: 22px; font-weight: 700; font-family: 'DM Serif Display', sans-serif; }
.phone-link:hover { color: var(--teal-dark); }
.horaires-table { width: 100%; font-size: 14px; color: var(--text); border-collapse: collapse; }
.horaires-table td { padding: 3px 0; }
.horaires-table td:last-child { text-align: right; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 8px; }
.map-container iframe { width: 100%; min-height: 300px; display: block; }

/* CONTACT FORM */
.contact-form-col { position: sticky; top: 120px; }
.contact-form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 22px; margin-bottom: 6px; }
.form-subtitle { color: var(--text-light); font-size: 14px; margin-bottom: 28px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 600; color: var(--dark);
  margin-bottom: 6px; font-family: 'DM Serif Display', sans-serif;
}
.contact-form label .required { color: #e74c3c; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--dark);
  background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); opacity: 0.6; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal); outline: none; background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-light);
}
.contact-form input:hover:not(:focus),
.contact-form textarea:hover:not(:focus) { border-color: var(--text-light); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-form-submit { width: 100%; justify-content: center; padding: 14px 28px; font-size: 16px; margin-top: 4px; }

/* Legacy form styles */
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; background: var(--white); transition: border-color 0.2s;
}
.wpcf7 input:focus, .wpcf7 textarea:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px var(--teal-light); }

/* Contact page responsive */
@media (max-width: 1024px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-col { position: static; }
}
@media (max-width: 480px) {
  .contact-form-card { padding: 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* REVIEWS */
.reviews-bar {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  background: var(--gold-bg); border-radius: var(--radius); border: 1px solid rgba(212,162,76,0.12); margin-bottom: 24px;
}
.reviews-bar img.google-icon { height: 24px; border-radius: 0; }
.reviews-bar img.stars { height: 16px; border-radius: 0; }
.reviews-bar strong { color: var(--dark); font-size: 16px; font-family: 'DM Serif Display', sans-serif; }
.reviews-bar span { color: var(--text-light); font-size: 13px; }

/* TESTIMONIALS */
.testimonial-card { position: relative; padding-top: 48px; text-align: left; }
.testimonial-stars { font-size: 14px; color: var(--gold); letter-spacing: 1px; margin-bottom: 12px; }
.testimonial-card blockquote { border-left: none; background: none; padding: 0; margin: 0 0 16px; font-style: italic; font-size: 15px; line-height: 1.7; color: var(--text); }
.testimonial-card cite { font-style: normal; font-weight: 600; font-size: 13px; color: var(--dark); }
.temoignage-story { padding: 36px; background: var(--gold-bg); border-radius: var(--radius-lg); border-left: 3px solid var(--gold); }
.temoignage-story h2 { font-size: 22px; margin-bottom: 12px; }
.temoignage-story p { margin-bottom: 12px; }

/* POST NAV & PAGINATION */
.post-navigation { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-navigation a { color: var(--teal); font-weight: 500; font-size: 14px; }
.pagination-wrap { margin-top: 48px; text-align: center; }
.pagination-wrap .nav-links { display: flex; justify-content: center; gap: 6px; }
.pagination-wrap .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 6px; border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--text); font-weight: 500; font-size: 14px; transition: all 0.2s;
}
.pagination-wrap .page-numbers.current { background: var(--gold); color: #fff; border-color: var(--gold); }
.pagination-wrap .page-numbers:hover:not(.current) { border-color: var(--gold); color: var(--gold-dark); }

/* FOOTER */
footer { margin-top: 0; padding: 80px 5% 80px; background: var(--dark); color: rgba(255,255,255,0.72); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; max-width: var(--max-w); margin: 0 auto; text-align: center; }
.footer-col { text-align: center; }
.footer-col h4 { font-size: 11px; margin-bottom: 16px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.72); font-size: 13.5px; }
.footer-col p { max-width: 100%; margin-left: auto; margin-right: auto; }
.footer-col li { margin-bottom: 6px; }
.footer-col a:hover { color: var(--gold); }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 6px; }
.footer-menu a { color: rgba(255,255,255,0.72); font-size: 13.5px; }
.footer-menu a:hover { color: var(--gold); }
.footer-partner { max-width: var(--max-w); margin: 28px auto 0; text-align: center; }
.tis-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; color: rgba(255,255,255,0.7); font-size: 12px;
  text-decoration: none; transition: all 0.25s ease;
}
.tis-badge:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.tis-badge strong { color: var(--gold); font-size: 14px; }
.tis-badge svg { color: var(--teal); flex-shrink: 0; }
.footer-bottom { max-width: var(--max-w); margin: 20px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.7; margin-bottom: 4px; max-width: 100%; margin-left: auto; margin-right: auto; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { font-size: 11px !important; color: rgba(255,255,255,0.4) !important; font-style: italic; }
/* STICKY CTA MOBILE */
.sticky-cta-mobile {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999;
  padding: 12px 5%; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(253,252,250,0.97); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.animate-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* UTILITIES */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }
body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .navbar { top: 46px; } }

/* --- Warm tap highlight for iOS/Android --- */
a, button, .btn-primary, .btn-secondary, .nav-cta, .menu-toggle {
  -webkit-tap-highlight-color: rgba(212,162,76,0.15);
}
html { scroll-padding-top: 100px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-top: 130px; padding-bottom: 60px; text-align: center; }
  .hero-image { max-width: 280px; margin: 0 auto; }
  .hero-content > p { margin-left: auto; margin-right: auto; }
  .hero-content .badge { justify-content: center; }
  .cta-group { justify-content: center; }
  .hero-image::before { top: -8px; right: -8px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col .col-text { text-align: center; }
  .two-col .col-text p { margin-left: auto; margin-right: auto; }
  .two-col .col-image { max-width: 280px; margin: 0 auto; }
  .reviews-bar { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  html { scroll-padding-top: 80px; }
}

/* ===== TEST RESPIRATOIRE ===== */
.breath-test-card { text-align: center; max-width: 420px; margin: 0 auto; }
.breath-circle {
  width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--color-accent), var(--teal));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(42,157,143,0.2);
}
.breath-circle.active {
  transform: scale(1.15);
  box-shadow: 0 8px 40px rgba(42,157,143,0.4);
}
.breath-timer { font-size: 36px; font-weight: 800; color: #fff; line-height: 1; }
.breath-label { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 4px; }
.breath-btn {
  -webkit-user-select: none; user-select: none;
  touch-action: manipulation; cursor: pointer;
}
.breath-result {
  margin-top: 20px; padding: 16px 20px; border-radius: var(--radius);
  font-size: 15px; line-height: 1.5;
}
.breath-result.good { background: #d1fae5; color: #065f46; }
.breath-result.warning { background: #fef3c7; color: #92400e; }
.breath-result.danger { background: #fee2e2; color: #991b1b; }

@media (max-width: 768px) {
  .menu-toggle { display: block; padding: 10px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .nav-main { padding: 10px 5%; }
  .nav-links {
    display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--bg-warm); padding: 16px 5% 24px; border-bottom: 2px solid var(--gold-light); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; align-items: center; }
  .nav-links a { padding: 14px 0; font-size: 15px; display: flex; align-items: center; min-height: 44px; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
  .nav-links li:last-child a:not(.nav-cta) { border-bottom: none; }
  .nav-links .nav-cta { margin-top: 16px; width: 100%; max-width: 280px; padding: 14px 28px; font-size: 14px; min-height: 48px; align-self: center; }
  .btn-nav { display: none; }
  .hero { padding-top: 120px; padding-bottom: 48px; gap: 32px; }
  .hero h1 { font-size: clamp(26px, 7vw, 36px); margin-bottom: 16px; }
  .hero-content > p { font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
  .hero-trust-badges { gap: 8px; margin-bottom: 20px; }
  .cta-group { flex-direction: column; align-items: center; gap: 10px; }
  .cta-group .btn-primary { width: 100%; max-width: 340px; }
  .hero-image { max-width: 260px; }
  .hero-image::before { display: none; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(even)::after { display: none; }
  .trust-item { padding: 24px 12px; }
  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-header { margin-bottom: 32px; }
  .feature-card h3 { font-size: 17px; }
  .feature-card p { font-size: 13.5px; }
  .feature-card--numbered::after { font-size: 36px; top: 16px; right: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-col { text-align: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-col:last-child { padding-bottom: 0; border-bottom: none; }
  .footer-col h4 { font-size: 11px; margin-bottom: 12px; }
  .footer-col p, .footer-menu a { font-size: 12.5px; }
  .footer-col a[href^="tel:"] { display: inline-block; padding: 8px 0; font-size: 15px; font-weight: 600; color: var(--gold); }
  .footer-menu a { padding: 10px 0; display: flex; align-items: center; justify-content: center; min-height: 44px; }
  .footer-menu li { margin-bottom: 0; }
  .footer-bottom { margin-top: 24px; padding-top: 16px; }
  .footer-bottom p { font-size: 11.5px; line-height: 1.8; }
  .footer-legal { font-size: 11px !important; }
  .footer-credit { font-size: 10.5px !important; }
  footer { padding: 40px 5% 80px; }
  .sticky-cta-mobile { display: block; }
  .sticky-cta-mobile .btn-sticky { padding: 16px 24px; font-size: 16px; min-height: 52px; }
  main { padding-bottom: 72px; }
  .reviews-bar { flex-wrap: wrap; justify-content: center; text-align: center; }
  .page-header { padding-top: 100px; }
  .section-spacing { padding: 48px 5%; }
  .two-col { gap: 28px; }
  .urgency-bar { padding: 12px 4%; }
  .urgency-bar p { font-size: 13px; }
  .calc-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 15px; }
  .btn-calc { margin-left: 0; width: 100%; max-width: 280px; justify-content: center; padding: 14px 28px; min-height: 44px; font-size: 15px; }
  .read-more { padding: 10px 0; min-height: 44px; display: inline-flex; align-items: center; }
  .logo-block img { height: 36px; }
  .logo-subtitle { font-size: 10px; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .nav-top { font-size: 11px; padding: 5px 3%; gap: 2px 8px; justify-content: center; text-align: center; }
  .nav-top .phone { font-size: 11px; }
  .stars-badge { font-size: 11px; flex-wrap: wrap; justify-content: center; }
  .stars-badge svg { width: 11px; height: 11px; }
  .stars-badge .lost-reviews { font-size: 10px; }
  .breadcrumb { padding-top: 100px; font-size: 11px; }
  .trust-bar { gap: 0; }
  .trust-item { padding: 18px 10px; }
  .trust-item strong { font-size: 20px; }
  .trust-item span { font-size: 11px; }
  .feature-card { padding: 20px; }
  .hero { padding-top: 108px; padding-bottom: 36px; }
  .hero h1 { font-size: 26px; line-height: 1.2; }
  .hero-content > p { font-size: 14.5px; }
  .hero-image { max-width: 220px; }
  .hero-badge { font-size: 10px; padding: 4px 8px; }
  .btn-large { padding: 12px 24px; font-size: 14px; }
  .page-header { padding-top: 90px; }
  .page-header h1 { font-size: 22px; }
  .section-spacing { padding: 40px 5%; }
  .section-header { margin-bottom: 28px; }
  .card-grid { gap: 14px; }
  .urgency-bar { padding: 10px 4%; }
  .urgency-bar p { font-size: 12.5px; }
  .logo-block img { height: 30px; }
  .logo-subtitle { font-size: 9px; }
  .testimonial-card { padding-top: 36px; }
  .testimonial-card blockquote { font-size: 14px; line-height: 1.65; }
  .calc-results { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 24px; }
  .nav-top { flex-direction: column; gap: 2px; padding: 6px 4%; text-align: center; }
  .trust-item strong { font-size: 18px; }
  .trust-item span { font-size: 10px; }
  .btn-primary.btn-large { padding: 12px 20px; font-size: 13px; }
}
@media (max-width: 380px) {
  .section-spacing { padding-left: 6%; padding-right: 6%; }
  .hero { padding-left: 6%; padding-right: 6%; }
}
@media print {
  .navbar, .sticky-cta-mobile, .article-cta, footer, .trust-bar { display: none; }
  .page-header { padding-top: 24px; }
  body { color: #000; background: #fff; }
}

/* --- Focus states --- */
.btn-primary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-secondary:focus-visible { outline: 3px solid var(--dark); outline-offset: 3px; }
.nav-cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* --- No-JS fallback --- */
.no-js .reveal, .no-js .animate-on-scroll { opacity: 1; transform: none; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .animate-on-scroll { opacity: 1 !important; transform: none !important; }
}

/* --- Dark feature cards --- */
.feature-card--dark { background: var(--neutral-800); border-color: rgba(255,255,255,0.06); }
.feature-card--dark h3 { color: #fff; }
.feature-card--dark p { color: rgba(255,255,255,0.6); }

/* ============================================================
   NEW COMPONENTS — Neuromarketing & Compliance (2026-03-25)
   ============================================================ */

/* HERO TRUST BADGES */
.hero-trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--teal-light); color: var(--teal-dark);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(42,157,143,0.15);
}
.hero-badge svg { color: var(--teal); flex-shrink: 0; }

/* CTA REASSURANCE */
.cta-reassurance {
  display: block; font-size: 12px; color: var(--text-light);
  margin-top: 8px; letter-spacing: 0.02em;
}

/* URGENCY BAR */
.urgency-bar {
  background: var(--gold-bg); border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(212,162,76,0.12);
  padding: 14px 5%; text-align: center;
}
.urgency-bar p {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 auto; font-size: 15px; color: var(--dark); max-width: none;
}
.urgency-bar svg { color: var(--gold); flex-shrink: 0; }
.urgency-bar a {
  color: var(--teal); font-weight: 700; text-decoration: underline;
  text-underline-offset: 2px;
}
.urgency-bar a:hover { color: var(--teal-dark); }

/* CALCULATOR */
.calculator-section { background: var(--bg-warm); border-radius: 0; }
.calculator-card {
  max-width: 680px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label { font-size: 14px; font-weight: 600; color: var(--dark); }
.calc-field input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  background: var(--border); border-radius: 3px; outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
  background: var(--gold); border-radius: 50%; cursor: pointer;
  box-shadow: 0 2px 6px rgba(212,162,76,0.3);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; background: var(--gold); border-radius: 50%;
  cursor: pointer; border: none; box-shadow: 0 2px 6px rgba(212,162,76,0.3);
}
.calc-value {
  font-size: 24px; font-weight: 800; color: var(--dark);
  font-family: 'DM Serif Display', sans-serif; text-align: center;
}
.calc-results {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 24px;
}
.calc-result {
  text-align: center; padding: 20px 12px; background: var(--bg-warm);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.calc-result--highlight {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-color: transparent;
}
.calc-result--highlight .calc-amount { color: #fff; }
.calc-result--highlight .calc-label { color: rgba(255,255,255,0.8); }
.calc-amount {
  display: block; font-size: 28px; font-weight: 800; color: var(--dark);
  font-family: 'DM Serif Display', sans-serif; line-height: 1;
}
.calc-label { display: block; margin-top: 4px; font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; }
.calc-cta {
  text-align: center; font-size: 16px; color: var(--text);
  max-width: none; margin: 0;
}
.btn-calc {
  display: inline-flex; margin-left: 12px; padding: 10px 24px; font-size: 14px;
}

/* RGPD COOKIE BANNER */
.rgpd-banner {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
  background: rgba(45,42,38,0.97); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 5%; display: flex; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.rgpd-content {
  display: flex; align-items: center; gap: 20px; max-width: var(--max-w);
  flex-wrap: wrap; justify-content: center;
}
.rgpd-content p {
  color: rgba(255,255,255,0.8); font-size: 13px; margin: 0; max-width: none;
}
.rgpd-content p a { color: var(--gold); text-decoration: underline; }
.rgpd-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.rgpd-accept {
  padding: 8px 20px; background: var(--teal); color: #fff; border: none;
  border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.rgpd-accept:hover { background: var(--teal-dark); }
.rgpd-refuse {
  padding: 8px 20px; background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.rgpd-refuse:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* CALCULATOR RESPONSIVE */
@media (max-width: 768px) {
  .calc-inputs { grid-template-columns: 1fr; gap: 20px; }
  .calc-results { grid-template-columns: 1fr; gap: 10px; }
  .calculator-card { padding: 24px; }
  .hero-trust-badges { justify-content: center; }
  .cta-reassurance { text-align: center; }
  .urgency-bar p { flex-wrap: wrap; font-size: 14px; }
  .rgpd-content { text-align: center; }
}
@media (max-width: 480px) {
  .hero-badge { font-size: 11px; padding: 5px 10px; }
  .calc-amount { font-size: 22px; }
  .btn-calc { display: block; margin: 12px auto 0; }
}

/* ============================================================
   HEALTH RECOVERY TIMELINE
   ============================================================ */
.health-timeline-section { background: var(--bg-warm); }
.ht-wrapper { max-width: 680px; margin: 0 auto; position: relative; padding-left: 40px; }
.ht-progress-track { position: absolute; left: 15px; top: 0; bottom: 0; width: 4px; background: var(--border); border-radius: 2px; }
.ht-progress-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0%; background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%); border-radius: 2px; transition: height 0.4s var(--ease); }
.ht-step { position: relative; padding: 24px 0; opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.ht-step.ht-visible { opacity: 1; transform: translateY(0); }
.ht-dot { position: absolute; left: -33px; top: 32px; width: 14px; height: 14px; background: var(--border); border: 3px solid var(--bg-warm); border-radius: 50%; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease); z-index: 2; }
.ht-step.ht-visible .ht-dot { background: var(--teal); box-shadow: 0 0 0 4px rgba(42,157,143,0.2); }
.ht-time { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 8px; }
.ht-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.ht-step.ht-visible .ht-card { border-color: rgba(42,157,143,0.3); box-shadow: var(--shadow); }
.ht-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 12px; }
.ht-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--dark); }
.ht-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; max-width: none; }
.ht-cta { text-align: center; font-size: 16px; color: var(--text); margin-top: 40px; max-width: none; }
@media (max-width: 640px) {
  .ht-wrapper { padding-left: 32px; }
  .ht-progress-track { left: 10px; }
  .ht-dot { left: -28px; width: 12px; height: 12px; }
  .ht-card { padding: 16px; }
  .ht-card h3 { font-size: 16px; }
  .ht-card p { font-size: 14px; }
  .ht-icon { width: 38px; height: 38px; }
}

/* ============================================================
   LIVE COUNTER — fixed bottom widget
   ============================================================ */
.live-counter {
  position: fixed; bottom: -200px; left: 50%; transform: translateX(-50%); z-index: 900;
  background: var(--dark); color: #fff; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 16px 24px 12px; box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  max-width: 640px; width: calc(100% - 24px); transition: bottom 0.6s var(--ease); text-align: center;
}
.live-counter.lc-show { bottom: 0; }
.live-counter.lc-hidden { bottom: -200px !important; }
.lc-close { position: absolute; top: 8px; right: 12px; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 22px; cursor: pointer; padding: 4px 8px; line-height: 1; transition: color 0.2s; }
.lc-close:hover { color: #fff; }
.lc-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.lc-stats { display: flex; justify-content: center; align-items: center; gap: 16px; margin-bottom: 12px; }
.lc-stat { display: flex; flex-direction: column; align-items: center; min-width: 0; }
.lc-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.lc-value { font-family: 'DM Serif Display', Georgia, serif; font-size: 22px; font-weight: 400; color: #fff; line-height: 1.2; white-space: nowrap; }
.lc-value--money { color: #e74c3c; }
.lc-value--life { color: var(--gold); }
.lc-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); margin-top: 2px; }
.lc-source { font-size: 9px; color: rgba(255,255,255,0.3); margin-bottom: 8px; letter-spacing: 0.02em; }
.lc-cta { display: inline-block; background: var(--gold); color: var(--dark); font-size: 13px; font-weight: 700; padding: 8px 24px; border-radius: 6px; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.lc-cta:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
@keyframes lc-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }
.lc-value.lc-bump { animation: lc-pulse 0.35s var(--ease); }
@media (max-width: 480px) {
  .live-counter { padding: 12px 16px 10px; border-radius: var(--radius) var(--radius) 0 0; }
  .lc-stats { gap: 10px; }
  .lc-value { font-size: 18px; }
  .lc-label { font-size: 9px; }
  .lc-cta { font-size: 12px; padding: 7px 18px; }
}

/* --- Zone list items --- */
.zone-list-item { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   CARBON FIELDS COMPAT — Old theme class styles
   ============================================================ */

/* --- Full-width layout for Carbon Fields pages --- */
.article-cf-fullwidth { width: 100%; max-width: none; margin: 0; }

/* --- Hero image (block-enTeteInterne / block-image) --- */
article section.background { position: relative; width: 100%; max-height: 420px; overflow: hidden; border-radius: 0; margin: 0; }
article section.background img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 420px; }

/* --- Page title block --- */
article .titrePage { background: var(--bg-warm); padding: 48px 24px 36px; text-align: center; }
article .titrePage .contain { max-width: var(--max-w); margin: 0 auto; }
article .titrePage h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark); margin: 0 0 8px; }
article .titrePage span { color: var(--text-light); font-size: 1rem; }
article .titrePage .toDown { margin-top: 18px; color: var(--teal); font-size: 1.4rem; opacity: 0.5; }

/* --- Paragraph / content blocks --- */
article section.paragraphe { padding: 48px 24px; }
article section.paragraphe.fondBlanc { background: var(--white); }
article section.paragraphe.margeUp { padding-top: 56px; }
article section.paragraphe.margeDown { padding-bottom: 56px; }
article section.paragraphe .containDeuxColonnes { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) {
  article section.paragraphe .containDeuxColonnes { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}
article section.paragraphe .colonne { line-height: 1.75; color: var(--text); }
article section.paragraphe .colonne h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--dark); margin: 0 0 16px; }
article section.paragraphe .colonne h3 { font-size: 1.15rem; color: var(--gold-dark); margin: 24px 0 12px; font-weight: 600; }
article section.paragraphe .colonne p { margin: 0 0 16px; }
article section.paragraphe .colonne a { color: var(--teal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
article section.paragraphe .colonne a:hover { color: var(--teal-dark); }
article section.paragraphe .colonne ul,
article section.paragraphe .colonne ol { padding-left: 20px; margin: 12px 0 20px; }
article section.paragraphe .colonne li { margin-bottom: 6px; }
article section.paragraphe .colonne strong { color: var(--dark); font-weight: 600; }

/* Single column contain */
article section.paragraphe .contain { max-width: var(--max-w); margin: 0 auto; line-height: 1.75; color: var(--text); }
article section.paragraphe .contain h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--dark); margin: 0 0 16px; }
article section.paragraphe .contain h3 { font-size: 1.15rem; color: var(--gold-dark); margin: 24px 0 12px; font-weight: 600; }
article section.paragraphe .contain p { margin: 0 0 16px; }

/* --- Image blocks --- */
article section.image { padding: 0; overflow: hidden; }
article section.image .image { max-width: var(--max-w); margin: 0 auto; text-align: center; }
article section.image .image img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
article section.image.m1280 .image,
article section.image.m1280pad .image { max-width: 1280px; }
article section.image.m1280pad { padding: 24px; }
article section.image .image.parallax { position: relative; overflow: hidden; border-radius: var(--radius-lg); max-height: 400px; }
article section.image .image.parallax img { width: 100%; height: 100%; object-fit: cover; }

/* --- CTA Button blocks --- */
article section.bouton { text-align: center; padding: 32px 24px; }
article section.bouton a,
article a.bouton,
article a.bouton-popup { display: inline-block; background: var(--gold); color: var(--white) !important; font-weight: 700; font-size: 1rem; padding: 14px 36px; border-radius: var(--radius); text-decoration: none; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; box-shadow: var(--shadow-gold); text-align: center; margin: 16px 0; }
article section.bouton a:hover,
article a.bouton:hover,
article a.bouton-popup:hover { background: var(--gold-dark); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,162,76,0.3); }

/* --- FAQ blocks --- */
article section.faq { background: var(--bg-warm); padding: 56px 24px; }
article .faq .contain { max-width: var(--max-w); margin: 0 auto; }
article .faq .section-head { text-align: center; font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--dark); margin: 0 0 32px; }
article .faq .question-container { max-width: 800px; margin: 0 auto; }
article .faq .question-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.25s; }
article .faq .question-block:hover { box-shadow: var(--shadow); }
article .faq .item-head { padding: 18px 24px; cursor: pointer; font-weight: 600; color: var(--dark); display: flex; justify-content: space-between; align-items: center; }
article .faq .item-head h3,
article .faq .item-head h4 { font-size: 1rem; margin: 0; font-weight: 600; }
article .faq .item-content { padding: 0 24px 18px; color: var(--text); line-height: 1.7; }
article .faq .item-content p { margin: 0 0 12px; }

/* --- List blocks (icones) --- */
article .list-container { max-width: var(--max-w); margin: 0 auto; padding: 40px 24px; }
article .list-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
article .list-item:last-child { border-bottom: none; }

/* --- Head / section head --- */
article .head { max-width: var(--max-w); margin: 0 auto; padding: 40px 24px 16px; text-align: center; }
article .head h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--dark); }

/* --- Wrap / content generic --- */
article .wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
article .content { line-height: 1.75; color: var(--text); }

/* --- Float images --- */
article .alignleft { float: left; margin: 0 24px 16px 0; max-width: 45%; border-radius: var(--radius); }
article .alignright { float: right; margin: 0 0 16px 24px; max-width: 45%; border-radius: var(--radius); }

/* --- Marge helpers --- */
article .marge { padding: 24px; }

/* --- Carbon Fields images general --- */
article section img.size-full { max-width: 100%; height: auto; }

/* --- Responsive Carbon Fields compat --- */
@media (min-width: 768px) {
  article section.paragraphe .containDeuxColonnes { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 767px) {
  article section.background img { max-height: 280px; }
  article .titrePage { padding: 32px 16px 24px; }
  article section.paragraphe { padding: 32px 16px; }
  article .alignleft, article .alignright { float: none; max-width: 100%; margin: 0 0 16px 0; }
  article .bouton a { padding: 12px 28px; font-size: 0.95rem; }
  article .faq .item-head { padding: 14px 18px; }
  article .faq .item-content { padding: 0 18px 14px; }
}

/* ============================================================
   TODOWN ARROW — SVG (replaces old icon font 'd')
   ============================================================ */
article .titrePage .toDown {
  margin-top: 20px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(42,157,143,0.08); border: 1.5px solid rgba(42,157,143,0.2);
  color: var(--teal); transition: background 0.25s, border-color 0.25s;
  animation: todown-bounce 2.2s ease-in-out infinite;
}
article .titrePage .toDown span { display: none; } /* hide old icon-font char */
/* No ::after — SVG chevron is already in the HTML (block-enTeteInterne) */
article .titrePage .toDown svg { display: block; width: 22px; height: 22px; }
article .titrePage .toDown:hover { background: rgba(42,157,143,0.15); border-color: var(--teal); }
@keyframes todown-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ============================================================
   FAQ ACCORDION — JS-driven states
   ============================================================ */
.faq .item-content { overflow: hidden; }
.faq .faq-chevron {
  display: inline-flex; flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--text-light); margin-left: 8px;
}
.faq .question-block.faq-open .faq-chevron { transform: rotate(180deg); }
.faq .question-block.faq-open {
  border-color: rgba(212,162,76,0.3);
  box-shadow: 0 4px 16px rgba(212,162,76,0.08);
}
.faq .question-block.faq-open .item-head { color: var(--gold-dark); }
.faq .item-head { user-select: none; }
.faq .item-head:hover { background: var(--gold-bg); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS — Carbon Fields blocks
   ============================================================ */
[data-cf-anim] {
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
[data-cf-anim="slide-up"]   { opacity: 0; transform: translateY(36px); }
[data-cf-anim="fade-in"]    { opacity: 0; transform: none; }
[data-cf-anim="scale-in"]   { opacity: 0; transform: scale(0.92); }
[data-cf-anim].cf-visible   { opacity: 1; transform: none; }
/* Disable for reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-cf-anim] { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
   BLOG POST — single.php styles
   ============================================================ */
.post-hero-image { margin: 0 0 32px; border-radius: var(--radius-lg); overflow: hidden; }
.post-hero-image img { width: 100%; height: auto; display: block; }
.article-body:not(.article-cf-fullwidth) { max-width: var(--text-w); margin: 0 auto; }
.article-body h2 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); margin: 32px 0 12px; color: var(--dark); }
.article-body h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 10px; color: var(--gold-dark); }
.article-body p { margin: 0 0 18px; line-height: 1.78; color: var(--text); }
.article-body ul, .article-body ol { padding-left: 24px; margin: 12px 0 20px; }
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-body a { color: var(--teal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.article-body a:hover { color: var(--teal-dark); }
.article-body blockquote {
  border-left: 3px solid var(--gold); background: var(--gold-bg);
  padding: 16px 20px; margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text);
}
.article-body strong { color: var(--dark); font-weight: 600; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 16px 0; }

/* Article CTA box at end of post */
.article-cta {
  background: var(--bg-warm); border-radius: var(--radius-lg);
  text-align: center; padding: 40px 32px; margin: 48px auto;
  max-width: var(--text-w); border: 1px solid rgba(212,162,76,0.12);
}
.article-cta h3 { font-size: 1.35rem; margin-bottom: 8px; }
.article-cta p { color: var(--text-light); margin-bottom: 20px; }
.article-cta p a { color: var(--teal); font-weight: 600; }
@media (max-width: 767px) {
  .article-cta { padding: 28px 20px; }
  .post-hero-image { border-radius: var(--radius); }
}

/* ============================================================
   IMAGEPARAGRAPHE block
   ============================================================ */
article section.imageParagraphe { padding: 48px 24px; }
article section.imageParagraphe .contain { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
article section.imageParagraphe .image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
article section.imageParagraphe .paragraphe { line-height: 1.75; color: var(--text); }
article section.imageParagraphe .paragraphe h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--dark); margin-bottom: 16px; }
article section.imageParagraphe .paragraphe p { margin-bottom: 14px; }
@media (max-width: 767px) {
  article section.imageParagraphe .contain { grid-template-columns: 1fr; gap: 24px; }
  article section.imageParagraphe { padding: 32px 16px; }
}

/* ============================================================
   CONTACT FORM BLOCK (block-formContact)
   ============================================================ */
.formContact { padding: 40px 5%; }
.formContact .contain { max-width: 720px; margin: 0 auto; }
.formContact .s1 { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.formContact .ligne { width: 100%; }
.formContact .ligne.small { width: calc(50% - 8px); }
.formContact .ligne.right { /* right col — same width, handled by flex */ }
.formContact .ligne input[type="text"],
.formContact .ligne input[type="tel"],
.formContact .ligne input[type="email"],
.formContact .ligne textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text);
  background: #fff; box-sizing: border-box;
  transition: border-color 0.2s;
}
.formContact .ligne input:focus,
.formContact .ligne textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.1);
}
.formContact .ligne textarea { min-height: 130px; resize: vertical; }
.formContact .ligne.center { text-align: center; }
.formContact .ligne input[type="submit"] {
  background: var(--gold); color: #fff; font-weight: 600;
  cursor: pointer; border: none; padding: 14px 48px;
  border-radius: 50px; font-size: 15px; letter-spacing: 0.02em;
  box-shadow: var(--shadow-gold); transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.formContact .ligne input[type="submit"]:hover {
  background: var(--gold-dark); transform: translateY(-1px);
}
#contact-loading { text-align: center; padding: 24px; display: none; }
#contact-loading svg { animation: cf-spin 0.8s linear infinite; }
@keyframes cf-spin { to { transform: rotate(360deg); } }
#contact-reply { text-align: center; padding: 16px; font-size: 16px; font-weight: 500; display: none; }
#contact-reply.success { color: var(--teal-dark); }
#contact-reply.error { color: #e63946; }
@media (max-width: 600px) {
  .formContact .ligne.small { width: 100%; }
}

/* ============================================================
   YOUTUBE BLOCK (block-youtube)
   ============================================================ */
section.youtube { padding: 32px 5%; }
section.youtube .video-facade {
  position: relative; max-width: 780px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; background: #000;
  box-shadow: var(--shadow);
}
section.youtube .video-facade img {
  width: 100%; height: auto; display: block;
  transition: opacity 0.2s;
}
section.youtube .video-facade:hover img { opacity: 0.85; }
section.youtube .yt-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer;
  padding: 0; transition: transform 0.2s;
}
section.youtube .video-facade:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.12); }

/* Center bouton-popup within its column */
article section.paragraphe .colonne a.bouton-popup,
article section.paragraphe .contain a.bouton-popup {
  display: block;
  width: fit-content;
  margin: 24px auto 8px;
  text-decoration: none;
  border-radius: 50px;
}

/* ============================================================
   PAGE HERO NATIF (pages Gutenberg — pas Carbon Fields)
   ============================================================ */

.page-hero-native {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  background-color: var(--dark);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.page-hero-native__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,26,22,0.55) 0%, rgba(30,26,22,0.72) 100%);
  z-index: 0;
}

.page-hero-native__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero-native__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.page-hero-native__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: unset;
}

.page-hero-native__arrow {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.65);
  animation: bounce-arrow 2s ease-in-out infinite;
}
.page-hero-native__arrow svg {
  display: block;
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   PAGE CONTENT NATIF (Gutenberg body)
   ============================================================ */

.page-native-content {
  padding: 72px 5% 96px;
  background: var(--bg);
}

.page-native-content__inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Headings dans le contenu natif */
.page-native-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 20px;
  margin-top: 56px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  text-align: left;
}
.page-native-content h2:first-child { margin-top: 0; }
.page-native-content h3 {
  font-size: 1.2rem;
  color: var(--gold-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 36px;
}

/* Paragraphes */
.page-native-content p {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: left;
}

/* Listes */
.page-native-content ul,
.page-native-content ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.page-native-content ol { list-style: decimal; padding-left: 1.5em; }
.page-native-content li {
  color: var(--text);
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}
.page-native-content ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
/* Keep normal disc for ol */
.page-native-content ol > li::before { display: none; }
.page-native-content ol > li { padding-left: 0; }

/* ============================================================
   BLOCS GUTENBERG NATIFS — styles dans page-native-content
   ============================================================ */

/* --- wp:columns --- */
.page-native-content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.page-native-content .wp-block-column {
  flex: 1 1 280px;
  min-width: 0;
}

/* --- wp:button --- */
.page-native-content .wp-block-button {
  margin: 28px auto 8px;
  display: flex;
  justify-content: center;
}
.page-native-content .wp-block-button__link {
  display: inline-block;
  padding: 14px 32px;
  background: var(--teal);
  color: #fff !important;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(42,157,143,0.22);
}
.page-native-content .wp-block-button__link:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(42,157,143,0.3);
  transform: translateY(-1px);
}
.page-native-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal) !important;
}
.page-native-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--teal);
  color: #fff !important;
}

/* --- wp:quote --- */
.page-native-content blockquote,
.page-native-content .wp-block-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--gold-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--text);
}
.page-native-content .wp-block-quote cite {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: normal;
}

/* --- wp:separator --- */
.page-native-content hr,
.page-native-content .wp-block-separator {
  border: none;
  border-top: 2px solid var(--border);
  margin: 48px auto;
  max-width: 120px;
  opacity: 0.7;
}
.page-native-content .wp-block-separator.is-style-wide {
  max-width: 100%;
}

/* --- wp:image --- */
.page-native-content .wp-block-image {
  margin: 32px 0;
}
.page-native-content .wp-block-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.page-native-content .wp-block-image figcaption {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

/* --- wp:group (encadré / CTA block) --- */
.page-native-content .wp-block-group.has-background {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  margin: 56px 0 32px;
  text-align: center;
}
.page-native-content .wp-block-group.has-background p {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.page-native-content .wp-block-group.has-background h3 {
  text-align: center;
  border: none;
  padding-bottom: 0;
  color: var(--dark);
  margin-top: 0;
}
.page-native-content .wp-block-group.has-base-2-background-color,
.page-native-content .wp-block-group.has-base-2-background-color.has-background {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #ede8df 100%) !important;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.page-native-content .wp-block-group.has-teal-background-color {
  background: var(--teal-light) !important;
}
.page-native-content .wp-block-group.has-gold-background-color {
  background: var(--gold-bg) !important;
}

/* --- wp:details (accordion / FAQ) --- */
.page-native-content details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.page-native-content details[open] {
  box-shadow: var(--shadow-sm);
}
.page-native-content summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  user-select: none;
  gap: 12px;
}
.page-native-content summary::-webkit-details-marker { display: none; }
.page-native-content summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.page-native-content details[open] summary::after {
  content: '−';
}
.page-native-content details > *:not(summary) {
  padding: 0 22px 20px;
  color: var(--text);
  background: var(--white);
}

/* --- Encadré FAQ via wp:group --- */
.page-native-content .is-layout-flow > .wp-block-group:has(details) {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .page-hero-native {
    min-height: 44vh;
    padding: 100px 6% 64px;
  }
  .page-native-content {
    padding: 48px 6% 72px;
  }
  .page-native-content__inner {
    max-width: 100%;
  }
  .page-native-content .wp-block-columns {
    flex-direction: column;
    gap: 28px;
  }
  .page-native-content .wp-block-group.has-background {
    padding: 28px 20px;
    margin: 40px 0 24px;
  }
}

@media (max-width: 480px) {
  .page-hero-native__title { font-size: 1.75rem; }
  .page-native-content h2 { font-size: 1.35rem; }
  .page-native-content p { font-size: 0.95rem; }
}

/* ============================================================
   PAGE CONTACT — grille infos + carte + formulaire
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.contact-info-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.15s;
}
.contact-info-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal-light);
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
.contact-pricing-banner {
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #ede8df 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-pricing-banner p {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 0;
  max-width: 100%;
  text-align: center;
}
.contact-map-wrap {
  margin-bottom: 48px;
}
.contact-form-section {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  text-align: left;
}
@media (max-width: 600px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-info-card { padding: 20px 12px; }
}
@media (max-width: 380px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Formulaire de contact natif (shortcode dj_contact_form)
   ============================================================ */
.dj-contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.dj-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.dj-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.dj-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dj-form__field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2d2a26;
  letter-spacing: 0.02em;
}
.dj-form__field label span {
  color: #e63946;
}
.dj-form__field input,
.dj-form__field textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #2d2a26;
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.dj-form__field input:focus,
.dj-form__field textarea:focus {
  outline: none;
  border-color: #2a9d8f;
  box-shadow: 0 0 0 3px rgba(42,157,143,0.12);
}
.dj-form__field textarea {
  resize: vertical;
  min-height: 130px;
}
.dj-form__submit {
  text-align: center;
  margin-top: 0.5rem;
}
.dj-form__submit .btn-primary {
  min-width: 220px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}
#contact-reply {
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 580px) {
  .dj-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE TARIFS — Neuromarketing Premium
   ============================================================ */

/* --- Hero animation intro --- */
.tarif-hero-anim {
  text-align: center;
  padding: 48px 24px 32px;
  max-width: 640px;
  margin: 0 auto;
}
.tarif-hero-anim__icon { margin-bottom: 20px; }
.tarif-hero-anim__icon svg { animation: tarif-pulse 3s ease-in-out infinite; }
@keyframes tarif-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}
.tarif-hero-anim__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.65rem;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.tarif-hero-anim__text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* --- Breathing test section --- */
.tarif-breath-section {
  padding: 48px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  margin: 0 auto 48px;
  max-width: 620px;
}

/* --- Book section --- */
.tarif-book-section {
  padding: 48px 0;
  margin-bottom: 48px;
}
.tarif-book-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.tarif-book-cover { text-align: center; }
.tarif-book-3d {
  perspective: 600px;
  display: inline-block;
  margin-bottom: 20px;
}
.tarif-book-3d img {
  max-width: 220px;
  border-radius: 4px;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.18), -2px -2px 12px rgba(0,0,0,0.05);
  transform: rotateY(-8deg);
  transition: transform 0.4s var(--ease);
}
.tarif-book-3d:hover img {
  transform: rotateY(0deg);
}
.tarif-book-dl {
  font-size: 13px;
  padding: 10px 20px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.tarif-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #c08b30 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tarif-book-text h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.tarif-book-author {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-style: italic;
}
.tarif-book-points {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tarif-book-points li {
  font-size: 0.92rem;
  line-height: 1.55;
  padding-left: 12px;
  border-left: 3px solid var(--teal);
}
.tarif-book-cta-text {
  color: var(--teal-dark);
  font-size: 0.95rem;
  margin-top: 16px;
}

/* --- Pricing card --- */
.tarif-pricing-section {
  padding: 48px 0;
}
.tarif-pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(212,162,76,0.12);
  text-align: center;
  position: relative;
}
.tarif-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #c08b30 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 24px;
  border-radius: 50px;
  white-space: nowrap;
}
.tarif-pricing-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.55rem;
  color: var(--dark);
  margin: 16px 0 20px;
  line-height: 1.3;
}
.tarif-pricing-price { margin: 20px 0 16px; }
.tarif-price-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.tarif-price-note {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}
.tarif-pricing-duration {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.tarif-pricing-asterisk {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin: 8px 0 28px;
}
.tarif-includes-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.tarif-includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}
.tarif-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.5;
}
.tarif-includes-list li:last-child { border-bottom: none; }
.tarif-includes-list li svg { flex-shrink: 0; margin-top: 2px; }
.tarif-pricing-cta { margin-top: 8px; }
.tarif-btn-main {
  font-size: 1rem;
  padding: 16px 36px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.tarif-pricing-reassurance {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* --- Calculator section (tarifs page) --- */
.tarif-calc-section {
  padding: 48px 24px;
  margin: 0 auto 48px;
}
.calc-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.calc-sliders { margin-bottom: 28px; }
.calc-slider-group {
  margin-bottom: 20px;
}
.calc-slider-group label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.calc-slider-group input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
  height: 6px;
}
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.calc-result-item {
  padding: 20px 12px;
  border-radius: var(--radius);
  background: var(--bg-warm);
}
.calc-result-highlight {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid var(--gold);
}
.calc-result-value {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 700;
}
.calc-result-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-footer {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.tarif-social-proof { padding: 48px 0; }
.tarif-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.tarif-testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.tarif-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tarif-testimonial p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 12px;
}
.tarif-testimonial cite {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: normal;
  display: block;
}

/* --- FAQ tarifs --- */
.tarif-faq-section { padding: 48px 0; max-width: 720px; margin: 0 auto; }
.tarif-faq-list { display: flex; flex-direction: column; gap: 8px; }
.tarif-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}
.tarif-faq-item[open] { border-color: var(--teal); }
.tarif-faq-item summary {
  padding: 18px 22px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.02rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.tarif-faq-item summary::-webkit-details-marker { display: none; }
.tarif-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.tarif-faq-item[open] summary::after { content: '−'; }
.tarif-faq-answer {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
}

/* --- Final CTA --- */
.tarif-final-cta {
  padding: 56px 24px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1816 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 48px 0 0;
}
.tarif-final-cta h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.tarif-final-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 1rem;
}
.tarif-final-phone {
  margin-top: 16px !important;
}
.tarif-final-phone a { color: var(--gold); }
.tarif-final-phone a:hover { color: var(--gold-light); }

/* --- Tarifs responsive --- */
@media (max-width: 768px) {
  .tarif-book-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .tarif-book-points li { text-align: left; }
  .tarif-testimonials { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; gap: 12px; }
  .tarif-pricing-card { padding: 32px 20px; }
  .tarif-btn-main { font-size: 0.9rem; padding: 14px 24px; }
}
@media (max-width: 480px) {
  .tarif-hero-anim__title { font-size: 1.35rem; }
  .tarif-pricing-title { font-size: 1.3rem; }
}

/* ============================================================
   BREATHING TIMER — Fix visibility (higher contrast)
   ============================================================ */
.breath-circle {
  background: linear-gradient(135deg, #1a3a35, #2a9d8f) !important;
}
.breath-timer {
  font-size: 42px !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
}
.breath-label {
  color: rgba(255,255,255,0.95) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3) !important;
}

/* ============================================================
   FOG DISSIPATION EFFECT — all pages except homepage
   ============================================================ */
.page-fog {
  position: relative;
  overflow: hidden;
}
.page-fog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg,
    rgba(253,252,250,0.95) 0%,
    rgba(253,252,250,0.6) 40%,
    rgba(253,252,250,0) 100%);
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.2s ease-out;
}
.page-fog.fog-clear::before {
  opacity: 0;
}

/* ============================================================
   BLOG — Pagination centered
   ============================================================ */
.pagination-wrap {
  text-align: center;
  margin-top: 48px;
}
.pagination-wrap .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.pagination-wrap .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pagination-wrap .page-numbers.current {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.pagination-wrap .page-numbers.dots {
  border: none;
  background: none;
  min-width: auto;
  padding: 0 4px;
}

/* ============================================================
   v2.3.0 — DESIGN POLISH
   Hero warmth · Breadcrumb upgrade · Content rhythm · CTA glow
   ============================================================ */

/* --- Hero: warmer overlay with subtle teal undertone --- */
.page-hero-native__overlay {
  background: linear-gradient(
    170deg,
    rgba(42,157,143,0.18) 0%,
    rgba(30,26,22,0.58) 35%,
    rgba(30,26,22,0.75) 100%
  );
}
.page-hero-native__title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 0 60px rgba(42,157,143,0.1);
}

/* --- Breadcrumb: pill style with warm bg --- */
.breadcrumb {
  padding: 110px 5% 8px;
  font-weight: 500;
}
.breadcrumb-inner {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-warm);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
}
.breadcrumb-inner a {
  color: var(--text-light);
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: var(--gold);
}
.breadcrumb-inner .sep {
  margin: 0 2px;
  opacity: 0.35;
  font-size: 10px;
}
.breadcrumb-inner .current {
  color: var(--dark);
  font-weight: 600;
}

/* --- Content rhythm: first paragraph lead style --- */
.page-native-content__inner > p:first-of-type,
.page-native-content__inner > .wp-block-heading + p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
}

/* --- H2 underline: gold gradient instead of solid --- */
.page-native-content h2 {
  border-bottom: none;
  padding-bottom: 14px;
  position: relative;
}
.page-native-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

/* --- Blockquote/Quote: elegant left accent --- */
.page-native-content blockquote,
.page-native-content .wp-block-quote {
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-bg) 0%, transparent 80%);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  position: relative;
}
.page-native-content .wp-block-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 4rem;
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

/* --- CTA buttons: subtle glow + micro-interaction --- */
.page-native-content .wp-block-button__link {
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.page-native-content .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42,157,143,0.3);
}
.page-native-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  box-shadow: 0 4px 16px rgba(42,157,143,0.2);
}

/* --- Details/FAQ: smoother open animation --- */
.page-native-content details {
  transition: all 0.3s var(--ease);
}
.page-native-content details[open] {
  background: var(--bg-warm);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.page-native-content details summary:hover {
  color: var(--gold-dark);
}

/* --- Group blocks with background: softer radius --- */
.page-native-content .wp-block-group.has-background {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* --- Footer: better spacing & hover underline --- */
.footer-col li {
  margin-bottom: 8px;
}
.footer-menu a {
  position: relative;
  padding-bottom: 1px;
}
.footer-menu a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.footer-menu a:hover::after {
  width: 100%;
}

/* --- Footer grid: slightly more breathing room --- */
.footer-grid {
  gap: 40px;
}

/* --- Smooth page transitions --- */
.page-native-content__inner > * {
  animation: fadeInUp 0.4s var(--ease) both;
}
.page-native-content__inner > *:nth-child(1) { animation-delay: 0.05s; }
.page-native-content__inner > *:nth-child(2) { animation-delay: 0.1s; }
.page-native-content__inner > *:nth-child(3) { animation-delay: 0.15s; }
.page-native-content__inner > *:nth-child(4) { animation-delay: 0.2s; }
.page-native-content__inner > *:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive fine-tuning --- */
@media (max-width: 768px) {
  .breadcrumb-inner {
    font-size: 11px;
    padding: 4px 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .page-native-content .wp-block-quote::before {
    font-size: 3rem;
  }
}
