
/* ════════════════════════════════════════════════════════════════════
   🛡️ RESET WORDPRESS / ASTRA pour éviter les conflits
   ════════════════════════════════════════════════════════════════════ */
.cycle-lab-page { width: 100%; margin: 0 !important; padding: 0 !important; }
.cycle-lab-page * { box-sizing: border-box; }
.cycle-lab-page p,
.cycle-lab-page h1,
.cycle-lab-page h2,
.cycle-lab-page h3,
.cycle-lab-page h4,
.cycle-lab-page h5 { margin: 0; padding: 0; }
.cycle-lab-page ul,
.cycle-lab-page ol { margin: 0; padding: 0; list-style: none; }
.cycle-lab-page img { max-width: 100%; height: auto; display: block; }
.cycle-lab-page button { cursor: pointer; border: none; background: none; font-family: inherit; }
.cycle-lab-page a { text-decoration: none; color: inherit; }
body.cycle-lab-home #content { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
body.cycle-lab-home .ast-container,
body.cycle-lab-home .site-content > .ast-container { max-width: 100% !important; padding: 0 !important; margin: 0 !important; width: 100% !important; }
body.cycle-lab-home .entry-header,
body.cycle-lab-home .ast-archive-description,
body.cycle-lab-home .post-thumbnail { display: none !important; }
body.cycle-lab-home .entry-content { margin: 0 !important; padding: 0 !important; }
body.cycle-lab-home article.page,
body.cycle-lab-home article { margin: 0 !important; padding: 0 !important; }

/* ════════════════════════════════════════════════════════════════════
   🎨 CYCLE LAB v2 — DESIGN PREMIUM
   Inspiré des posts Instagram @naturo_pma
   ════════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════════
   🎨 VARIABLES — MODIFIE TOUT ICI
   ════════════════════════════════════════════════════════════════════ */
:root {
  /* Palette Cycle Lab (vraies couleurs des posts Insta) */
  --c-petrole:        #1F3A4A;  /* Bleu pétrole - principal */
  --c-petrole-light:  #2C4D60;
  --c-petrole-soft:   rgba(31, 58, 74, 0.08);

  --c-dore:           #B8845C;  /* Doré/cuivré - accent chaud */
  --c-dore-light:     #C9A788;
  --c-dore-soft:      rgba(184, 132, 92, 0.1);

  --c-sauge:          #9DAFA5;  /* Vert sauge - touche végétale */
  --c-sauge-light:    #B8C4BC;
  --c-sauge-soft:     rgba(157, 175, 165, 0.12);

  --c-bordeaux:       #7A2B3A;  /* Bordeaux - accent fort (post 4) */
  --c-bordeaux-light: #9B4555;

  --c-creme:          #F5EDE0;  /* Crème chaud - fond doux */
  --c-creme-light:    #FAF5EB;
  --c-blanc-casse:    #FBF7F0;  /* Fond principal */
  --c-beige:          #E8D9C2;  /* Beige - badges */

  /* Texte */
  --c-text:           #1F3A4A;
  --c-text-soft:      rgba(31, 58, 74, 0.78);
  --c-text-muted:     rgba(31, 58, 74, 0.55);

  /* Polices */
  --f-display:  'Cormorant Garamond', Georgia, serif;
  --f-accent:   'Montserrat', sans-serif;
  --f-body:     'Inter', sans-serif;

  /* Layout */
  --container-max:    1320px;
  --container-pad:    32px;
  --section-py:       180px;
  --radius-pill:      999px;
  --radius-lg:        32px;
  --radius-md:        20px;
  --radius-sm:        12px;

  /* Effets */
  --shadow-soft:      0 8px 40px rgba(31, 58, 74, 0.06);
  --shadow-card:      0 16px 60px rgba(31, 58, 74, 0.08);
  --shadow-strong:    0 24px 80px rgba(31, 58, 74, 0.12);

  /* Transitions */
  --ease:             cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:         500ms;
  --duration-long:    900ms;
}

/* ════════════════════════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-blanc-casse);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* Sélection */
::selection { background: var(--c-dore); color: var(--c-blanc-casse); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-creme); }
::-webkit-scrollbar-thumb { background: var(--c-dore); border-radius: 4px; }

/* ════════════════════════════════════════════════════════════════════
   🛠️ UTILITAIRES
   ════════════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}
.text-center { text-align: center; }
.italic { font-style: italic; }

/* Suptitle (petits caps lettres espacées) */
.suptitle {
  display: inline-block;
  font-family: var(--f-accent);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--c-dore);
  margin-bottom: 20px;
  position: relative;
}
.suptitle-light { color: var(--c-dore-light); }

/* Titres */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-petrole);
}
h1 em, h2 em, h3 em, h4 em {
  color: var(--c-dore);
  font-style: italic;
  font-weight: 500;
}
h2.section-title {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 32px;
}

/* Section header */
.section-header {
  margin-bottom: 80px;
  max-width: 720px;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-intro {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--c-text-soft);
  margin-top: 24px;
}

/* Divider feuille (signature posts) */
.divider-leaf-deco {
  display: block;
  margin: 32px auto;
  height: 20px;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--f-accent);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 12px 28px; font-size: 11px; }
.btn-primary {
  background: var(--c-petrole);
  color: #F5EDE0 !important;
  border-color: var(--c-petrole);
}
.cycle-lab-page .btn-primary,
.cycle-lab-page .btn-primary span,
.cycle-lab-page .btn-primary svg {
  color: #F5EDE0 !important;
}
.btn-primary:hover {
  background: var(--c-petrole-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 58, 74, 0.3);
}
.btn-primary svg { transition: transform var(--duration) var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-outline {
  background: transparent;
  color: var(--c-petrole);
  border-color: var(--c-dore);
}
.btn-outline:hover {
  background: var(--c-dore);
  color: var(--c-creme);
  transform: translateY(-3px);
}
.btn-light {
  background: var(--c-petrole);
  color: #F5EDE0 !important;
  border-color: var(--c-petrole);
}
.cycle-lab-page .btn-light,
.cycle-lab-page .btn-light span {
  color: #F5EDE0 !important;
}
.btn-light:hover {
  background: var(--c-petrole-light);
  transform: translateY(-3px);
}
.btn-outline.btn-light {
  background: transparent;
  color: var(--c-petrole);
  border-color: var(--c-petrole);
}
.btn-outline.btn-light:hover {
  background: var(--c-petrole);
  color: var(--c-creme);
}

/* Effet "shine" sur les boutons primary */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 800ms var(--ease);
}
.btn-primary:hover::before { left: 100%; }

/* ════════════════════════════════════════════════════════════════════
   📌 NAVBAR
   ════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(251, 247, 240, 0);
  backdrop-filter: blur(0px);
  transition: all var(--duration) var(--ease);
}
.navbar.scrolled {
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 132, 92, 0.15);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(31, 58, 74, 0.04);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  color: var(--c-petrole);
  transition: transform var(--duration) var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-15deg); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-petrole);
  letter-spacing: 0.02em;
}
.brand-name sup {
  font-size: 10px;
  color: var(--c-dore);
}
.brand-tagline {
  font-family: var(--f-accent);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-dore);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--f-accent);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-text-soft);
  position: relative;
  padding: 4px 0;
  transition: color var(--duration) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-dore);
  transition: width var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--c-petrole); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(31, 58, 74, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-petrole);
  transition: all var(--duration) var(--ease);
}
.nav-icon:hover {
  background: var(--c-petrole);
  color: var(--c-creme);
  border-color: var(--c-petrole);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════════
   1️⃣ HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(180deg, var(--c-creme-light) 0%, var(--c-creme) 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-leaf {
  position: absolute;
  pointer-events: none;
  animation: floatSlow 20s ease-in-out infinite;
}
.hero-leaf-1 {
  top: 80px;
  left: -40px;
  transform: rotate(-15deg);
}
.hero-leaf-2 {
  top: 100px;
  right: -60px;
  transform: rotate(20deg) scaleX(-1);
  animation-delay: -7s;
}
.hero-dots {
  position: absolute;
  top: 30%;
  right: 40%;
  pointer-events: none;
  opacity: 0.5;
  animation: rotateInfinite 80s linear infinite;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  animation: fadeInUp 1.2s var(--ease) 0.2s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 10px;
  background: var(--c-petrole);
  color: #F5EDE0 !important;
  border-radius: var(--radius-pill);
  font-family: var(--f-accent);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}
.hero-badge svg { color: var(--c-dore); }
.hero-badge sup { color: var(--c-dore); font-size: 8px; margin-left: 1px; }
.hero-title {
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.05;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-subtitle {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--c-text-soft);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
  max-width: 520px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(184, 132, 92, 0.15);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.5;
  transition: all var(--duration) var(--ease);
}
.hero-feature:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(8px);
  border-color: var(--c-dore);
}
.hero-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--c-creme);
  border: 1px solid var(--c-dore);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-petrole);
}
.hero-feature strong {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-petrole);
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero portrait */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.5s var(--ease) 0.5s both;
}
.hero-portrait-frame {
  position: relative;
  width: 480px;
  height: 480px;
  max-width: 100%;
  aspect-ratio: 1;
}
.hero-portrait-circle {
  position: absolute;
  inset: -20px;
  border: 1px dashed var(--c-dore);
  border-radius: 50%;
  opacity: 0.4;
}
.hero-portrait {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--c-beige) url('assets/images/julie-hero.jpg') center center/cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(31, 58, 74, 0.15);
}
.hero-portrait-arc {
  position: absolute;
  inset: -10%;
  animation: rotateInfinite 60s linear infinite;
  pointer-events: none;
}
.hero-portrait-badge {
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 100px; height: 100px;
  background: var(--c-creme);
  border: 1px solid var(--c-dore);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-petrole);
  z-index: 3;
  box-shadow: var(--shadow-card);
  animation: floatBadge 6s ease-in-out infinite;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--c-text-muted);
  z-index: 3;
}
.hero-scroll svg { animation: bounceDown 2s var(--ease) infinite; }

/* ════════════════════════════════════════════════════════════════════
   2️⃣ STATS
   ════════════════════════════════════════════════════════════════════ */
.stats {
  padding: 80px 0;
  background: var(--c-blanc-casse);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--c-creme);
  border: 1px solid rgba(184, 132, 92, 0.2);
  border-radius: var(--radius-lg);
  padding: 56px 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--c-dore-soft) 0%, transparent 60%);
  pointer-events: none;
}
.stat {
  text-align: center;
  position: relative;
  padding: 8px 16px;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%; right: 0;
  height: 60%;
  width: 1px;
  background: rgba(184, 132, 92, 0.3);
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  color: var(--c-petrole);
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
}
.stat-num::first-letter { color: var(--c-dore); }
.stat-label {
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-text-muted);
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════════════════
   3️⃣ APPROCHE
   ════════════════════════════════════════════════════════════════════ */
.approche {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--c-blanc-casse);
  overflow: hidden;
}
.approche-leaf {
  position: absolute;
  top: 100px;
  left: -80px;
  pointer-events: none;
  opacity: 0.5;
}
.approche-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/* Photo Approche */
.approche-photo {
  position: relative;
}
.approche-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
  transition: transform var(--duration-long) var(--ease);
}
.approche-photo-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-strong);
}
.approche-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.approche-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-sauge);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-accent);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-petrole);
}
.approche-photo::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px dashed var(--c-sauge);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  z-index: -1;
  transform: rotate(2deg);
}
.approche-text .lead {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-petrole);
  margin-bottom: 24px;
}
.approche-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text-soft);
  margin-bottom: 24px;
}

.signature-quote {
  position: relative;
  margin-top: 40px;
  padding: 32px 40px;
  background: var(--c-creme);
  border-left: 3px solid var(--c-dore);
  border-radius: var(--radius-md);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--c-petrole);
}
.signature-quote .quote-mark {
  position: absolute;
  top: -10px; left: 24px;
  font-size: 60px;
  color: var(--c-dore);
  font-family: var(--f-display);
  line-height: 1;
}
.signature-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-dore);
  margin-top: 16px;
}

/* Approche card */
.approche-card {
  background: linear-gradient(135deg, var(--c-creme) 0%, var(--c-creme-light) 100%);
  border: 1px solid var(--c-dore);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-long) var(--ease);
}
.approche-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border: 1px dashed var(--c-dore);
  border-radius: 50%;
  opacity: 0.3;
}
.approche-card:hover { transform: translateY(-6px); }
.approche-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-dore);
  margin-bottom: 24px;
}
.approche-card-header svg { color: var(--c-petrole); }
.approche-card-title {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 32px;
  font-weight: 400;
}
.approche-card-list {
  margin-bottom: 32px;
}
.approche-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 132, 92, 0.15);
  font-size: 15px;
  color: var(--c-text);
}
.approche-card-list li:last-child { border-bottom: none; }
.approche-card-list .check {
  width: 24px; height: 24px;
  background: var(--c-dore);
  color: var(--c-creme);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}
.approche-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--c-petrole);
  color: #F5EDE0 !important;
  border-radius: var(--radius-pill);
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}
.cycle-lab-page .approche-card-cta,
.cycle-lab-page .approche-card-cta svg { color: #F5EDE0 !important; }
.approche-card-cta:hover {
  background: var(--c-petrole-light);
  transform: translateY(-2px);
}
.approche-card-cta svg { transition: transform var(--duration) var(--ease); }
.approche-card-cta:hover svg { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════════════
   4️⃣ PILIERS
   ════════════════════════════════════════════════════════════════════ */
.piliers {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--c-blanc-casse) 0%, var(--c-creme) 100%);
  overflow: hidden;
}
.piliers-leaf-bg-1 {
  position: absolute;
  top: 80px; left: -100px;
  pointer-events: none;
  opacity: 0.35;
  transform: rotate(-15deg);
}
.piliers-leaf-bg-2 {
  position: absolute;
  bottom: 80px; right: -120px;
  pointer-events: none;
  opacity: 0.35;
  transform: rotate(15deg) scaleX(-1);
}
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.pilier {
  background: var(--c-blanc-casse);
  border: 1px solid rgba(184, 132, 92, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-long) var(--ease);
  isolation: isolate;
}
.pilier::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pilier-color) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration-long) var(--ease);
  z-index: -1;
}
.pilier:hover {
  transform: translateY(-12px);
  border-color: var(--pilier-color);
  box-shadow: var(--shadow-strong);
}
.pilier:hover::before { opacity: 0.04; }
.pilier-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.pilier-icon {
  width: 80px; height: 80px;
  background: var(--c-creme);
  border: 1.5px solid var(--pilier-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pilier-color);
  position: relative;
  transition: all var(--duration-long) var(--ease);
}
.pilier-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--pilier-color);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--duration-long) var(--ease);
}
.pilier:hover .pilier-icon {
  background: var(--pilier-color);
  color: var(--c-creme);
  transform: rotate(360deg);
}
.pilier:hover .pilier-icon::before {
  opacity: 0.5;
  inset: -16px;
}
.pilier-num {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--pilier-color);
  opacity: 0.2;
  line-height: 1;
}
.pilier-title {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
}
.pilier p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text-soft);
  margin-bottom: 28px;
}
.pilier-link {
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pilier-color);
  font-weight: 500;
  position: relative;
  transition: all var(--duration) var(--ease);
}
.pilier-link::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--pilier-color);
  margin-top: 4px;
  transition: width var(--duration) var(--ease);
}
.pilier:hover .pilier-link::after { width: 60px; }

/* ════════════════════════════════════════════════════════════════════
   5️⃣ OFFRES
   ════════════════════════════════════════════════════════════════════ */
.offres {
  padding: var(--section-py) 0;
  background: var(--c-creme);
  position: relative;
}
.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.offre {
  background: var(--c-blanc-casse);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  border: 1px solid rgba(184, 132, 92, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--duration-long) var(--ease);
}
.offre:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--c-dore);
}
.offre-featured {
  background: linear-gradient(165deg, rgba(157, 175, 165, 0.65) 0%, rgba(184, 196, 188, 0.55) 100%);
  color: var(--c-petrole);
  border-color: var(--c-sauge);
  transform: scale(1.03);
  z-index: 2;
  backdrop-filter: blur(2px);
}
.offre-featured h3, .offre-featured h3 em { color: var(--c-petrole); }
.offre-featured h3 em { color: var(--c-bordeaux); }
.offre-featured p { color: rgba(31, 58, 74, 0.78); }
.offre-featured .offre-list li { border-color: rgba(31, 58, 74, 0.12); color: rgba(31, 58, 74, 0.78); }
.offre-featured .offre-list li::before { color: var(--c-bordeaux); }
.offre-featured .offre-cta { color: var(--c-bordeaux); }
.offre-featured .offre-tag { background: rgba(255, 255, 255, 0.85); color: var(--c-petrole); }
.offre-featured:hover { transform: scale(1.03) translateY(-8px); }

.offre-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-bordeaux);
  color: var(--c-creme);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--f-accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  white-space: nowrap;
}
.offre-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform var(--duration) var(--ease);
}
.offre:hover .offre-icon { transform: rotate(-8deg) scale(1.1); }
.offre-tag {
  display: inline-block;
  font-family: var(--f-accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--c-creme);
  color: var(--c-dore);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-weight: 500;
}
.offre h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.offre p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--c-text-soft);
}
.offre-list {
  margin-bottom: 32px;
  flex: 1;
}
.offre-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 132, 92, 0.15);
  font-size: 13px;
  color: var(--c-text-soft);
  position: relative;
  padding-left: 20px;
}
.offre-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-dore);
  font-weight: 600;
}
.offre-cta {
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-dore);
  font-weight: 500;
  align-self: flex-start;
  transition: gap var(--duration) var(--ease);
}
.offre-cta:hover { letter-spacing: 0.25em; }

/* ════════════════════════════════════════════════════════════════════
   6️⃣ TÉMOIGNAGES
   ════════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--c-blanc-casse);
  position: relative;
  overflow: hidden;
}
.testimonials-leaf {
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%) rotate(20deg);
  pointer-events: none;
  opacity: 0.3;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
.testimonial {
  background: var(--c-creme);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(184, 132, 92, 0.15);
  position: relative;
  transition: all var(--duration-long) var(--ease);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; right: 28px;
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--c-dore);
  opacity: 0.2;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-dore);
}
.testimonial-stars {
  color: var(--c-dore);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--c-petrole);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 132, 92, 0.2);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-dore) 0%, var(--c-dore-light) 100%);
  color: var(--c-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--c-dore);
}
.testimonial-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-petrole);
}
.testimonial-meta {
  font-family: var(--f-accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-text-muted);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════════
   7️⃣ ARTICLES
   ════════════════════════════════════════════════════════════════════ */
.articles {
  padding: var(--section-py) 0;
  background: var(--c-creme);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.article-card {
  background: var(--c-blanc-casse);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 132, 92, 0.15);
  transition: all var(--duration-long) var(--ease);
}
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.article-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.article-image-1 { background: linear-gradient(135deg, var(--c-dore-light) 0%, var(--c-creme) 100%); }
.article-image-2 { background: linear-gradient(135deg, var(--c-bordeaux) 0%, var(--c-dore) 100%); }
.article-image-3 { background: linear-gradient(135deg, var(--c-sauge) 0%, var(--c-creme) 100%); }
.article-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 58, 74, 0.1);
}
.article-card:hover .article-image::after {
  background: rgba(31, 58, 74, 0);
  transition: background var(--duration) var(--ease);
}
.article-cat {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  background: var(--c-creme);
  color: var(--c-petrole);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--f-accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.article-body {
  padding: 32px;
}
.article-body time {
  font-family: var(--f-accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-dore);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.article-body h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 16px;
}
.article-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin-bottom: 24px;
}
.article-link {
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-dore);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════════
   8️⃣ NEWSLETTER
   ════════════════════════════════════════════════════════════════════ */
.newsletter {
  padding: 100px 0;
  background: var(--c-blanc-casse);
  position: relative;
}
.newsletter-leaf-1 {
  position: absolute;
  top: 60px; left: 5%;
  pointer-events: none;
  opacity: 0;
}
.newsletter-leaf-2 {
  position: absolute;
  bottom: 60px; right: 5%;
  pointer-events: none;
  opacity: 0;
}
.newsletter-card {
  background: linear-gradient(135deg, var(--c-petrole) 0%, var(--c-petrole-light) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px dashed var(--c-dore);
  border-radius: 50%;
  opacity: 0.3;
}
.newsletter-card::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 350px; height: 350px;
  border: 1px solid var(--c-dore);
  border-radius: 50%;
  opacity: 0.2;
}
.newsletter-content { position: relative; z-index: 2; }
.newsletter-content .suptitle { color: var(--c-dore-light); }
.newsletter-title {
  color: var(--c-creme);
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
}
.newsletter-title em { color: var(--c-dore-light); }
.newsletter-content p {
  color: rgba(245, 237, 224, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
}
.newsletter-form {
  display: flex;
  background: var(--c-creme);
  border-radius: var(--radius-pill);
  padding: 6px;
  max-width: 480px;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--f-body);
  font-size: 14px;
  padding: 14px 24px;
  outline: none;
  color: var(--c-petrole);
}
.newsletter-form input::placeholder { color: var(--c-text-muted); }
.newsletter-form button {
  background: var(--c-petrole);
  color: #F5EDE0 !important;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
  border: none;
  cursor: pointer;
}
.newsletter-form button:hover {
  background: var(--c-dore);
  transform: translateX(2px);
}
.newsletter-deco {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dore-light);
  opacity: 0.6;
}

/* ════════════════════════════════════════════════════════════════════
   9️⃣ PARTENAIRES
   ════════════════════════════════════════════════════════════════════ */
.partners {
  padding: 80px 0;
  background: var(--c-creme);
}
.partners .suptitle {
  letter-spacing: 0.4em;
  margin-bottom: 48px;
  display: block;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text-muted);
  border: 1px solid rgba(184, 132, 92, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: all var(--duration) var(--ease);
  filter: grayscale(100%);
  opacity: 0.7;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--c-dore);
  color: var(--c-petrole);
  transform: translateY(-4px);
}

/* ════════════════════════════════════════════════════════════════════
   🔟 CTA FINAL
   ════════════════════════════════════════════════════════════════════ */
.cta-final {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--c-petrole) 0%, var(--c-petrole-light) 100%);
  color: var(--c-creme);
  position: relative;
  overflow: hidden;
}
.cta-bg-circle {
  position: absolute;
  border: 1px solid var(--c-dore);
  border-radius: 50%;
  pointer-events: none;
}
.cta-bg-circle-1 {
  width: 800px; height: 800px;
  top: -300px; right: -300px;
  opacity: 0.15;
  animation: rotateInfinite 100s linear infinite;
}
.cta-bg-circle-2 {
  width: 500px; height: 500px;
  bottom: -200px; left: -150px;
  opacity: 0.2;
  border-style: dashed;
  animation: rotateInfinite 80s linear infinite reverse;
}
.cta-leaf {
  position: absolute;
  top: 20%; right: 5%;
  pointer-events: none;
  opacity: 0.2;
  animation: floatSlow 25s ease-in-out infinite;
}
.cta-final h2, .cta-final .suptitle {
  color: var(--c-creme);
}
.cta-final h2 em { color: var(--c-dore-light); }
.cta-content { max-width: 800px; margin: 0 auto 80px; position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.85);
  margin-top: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.cta-card {
  background: var(--c-creme);
  color: var(--c-petrole);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--c-dore);
  transition: all var(--duration-long) var(--ease);
}
.cta-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.cta-card-icon {
  width: 80px; height: 80px;
  background: var(--c-creme-light);
  border: 1.5px solid var(--c-dore);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-petrole);
  margin: 0 auto 28px;
  transition: all var(--duration-long) var(--ease);
}
.cta-card:hover .cta-card-icon {
  background: var(--c-dore);
  color: var(--c-creme);
  transform: rotate(-8deg) scale(1.05);
}
.cta-card h3 {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-card p {
  margin-bottom: 32px;
  line-height: 1.7;
  color: var(--c-text-soft);
}
.cta-signature {
  text-align: center;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}
.cta-slogan {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.4;
  color: var(--c-creme);
  margin-top: 16px;
}
.cta-slogan em { color: var(--c-dore-light); }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--c-blanc-casse);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(184, 132, 92, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .brand { margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-soft);
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(184, 132, 92, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-petrole);
  transition: all var(--duration) var(--ease);
}
.footer-social a:hover {
  background: var(--c-petrole);
  color: var(--c-creme);
  transform: translateY(-3px);
}
.footer-col h5 {
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-petrole);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-col a {
  color: var(--c-text-soft);
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: var(--c-dore); }

.footer-slogan {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(184, 132, 92, 0.2);
  border-bottom: 1px solid rgba(184, 132, 92, 0.2);
  margin-bottom: 32px;
}
.footer-slogan p {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-petrole);
}
.footer-slogan em { color: var(--c-dore); font-style: italic; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-text-muted);
}
.footer-bottom a:hover { color: var(--c-dore); }

/* ════════════════════════════════════════════════════════════════════
   ✨ ANIMATIONS
   ════════════════════════════════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rotateInfinite {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-20px) rotate(-12deg); }
}
.hero-leaf-2 {
  animation-name: floatSlow2;
}
@keyframes floatSlow2 {
  0%, 100% { transform: rotate(20deg) scaleX(-1) translateY(0); }
  50% { transform: rotate(22deg) scaleX(-1) translateY(-30px); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* Reveal au scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-long) var(--ease), transform var(--duration-long) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 100ms; }
.reveal:nth-child(3) { transition-delay: 200ms; }
.reveal:nth-child(4) { transition-delay: 300ms; }

/* ════════════════════════════════════════════════════════════════════
   📱 RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --section-py: 120px; }
  .nav-links { display: none; }
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .hero-portrait-frame { width: 360px; height: 360px; }
  .approche-grid { grid-template-columns: 1fr; gap: 60px; }
  .approche-photo-frame { max-width: 400px; margin: 0 auto; }
  .piliers-grid { grid-template-columns: 1fr; }
  .offres-grid { grid-template-columns: 1fr; }
  .offre-featured { transform: scale(1); }
  .offre-featured:hover { transform: translateY(-8px); }
  .testimonials-grid, .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 32px; gap: 32px; }
  .stat:nth-child(2)::after { display: none; }
  .newsletter-card { grid-template-columns: 1fr; padding: 56px 40px; gap: 32px; }
  .newsletter-deco { display: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  :root { --section-py: 80px; --container-pad: 20px; }
  .hero { padding-top: 120px; }
  .hero-portrait-frame { width: 280px; height: 280px; }
  .hero-portrait-badge { width: 70px; height: 70px; }
  .hero-features { gap: 12px; }
  .hero-feature { padding: 12px 16px; font-size: 13px; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 24px; gap: 32px 16px; }
  .approche-card, .pilier, .offre, .testimonial, .cta-card { padding: 32px 24px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-cta .btn { padding: 10px 20px; font-size: 10px; }
  .brand-tagline { display: none; }
}


/* ════════════════════════════════════════════════════════════════════
   🌿 RENFORCEMENT DU VERT SAUGE
   ════════════════════════════════════════════════════════════════════ */

/* Pilier "Naturopathie fonctionnelle" — fond sauge subtil */
.pilier:nth-child(2) {
  background: linear-gradient(165deg, rgba(157, 175, 165, 0.06) 0%, var(--c-blanc-casse) 60%);
}

/* Hero feature : 1ère feature avec accent sauge */
.hero-feature:nth-child(1) .hero-feature-icon {
  border-color: var(--c-sauge);
  color: var(--c-sauge);
  background: rgba(157, 175, 165, 0.08);
}

/* Border top de la signature quote : sauge au lieu de doré */
.signature-quote {
  border-left-color: var(--c-sauge);
}
.signature-quote .quote-mark {
  color: var(--c-sauge);
}

/* Sauge dans la pilier 2 spécifique */
.pilier:nth-child(2) .pilier-num {
  color: var(--c-sauge);
  opacity: 0.3;
}

/* Footer social hover sauge */
.footer-social a:nth-child(3):hover {
  background: var(--c-sauge);
  border-color: var(--c-sauge);
}

/* Approche card : badge / label sauge subtil */
.approche-card::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(157, 175, 165, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Article tag végétal sur l'article santé cyclique */
.article-image-3 {
  background: linear-gradient(135deg, var(--c-sauge) 0%, var(--c-creme) 100%);
}

/* Nav icon hover sauge variation */
.nav-icon:hover {
  background: var(--c-petrole);
  color: var(--c-sauge);
  border-color: var(--c-petrole);
}

/* Stat icon avec accent sauge sur l'un des stats */
.stat:nth-child(2)::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-sauge);
  opacity: 0.4;
}

/* CTA card hover : touche sauge */
.cta-card:nth-child(1) .cta-card-icon {
  border-color: var(--c-sauge);
}
.cta-card:nth-child(1):hover .cta-card-icon {
  background: var(--c-sauge);
}

/* Section partners : feuilles décoratives sauge */
.partners {
  background: var(--c-creme);
  position: relative;
}
.partners::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-sauge) 50%, transparent 100%);
  opacity: 0.4;
}

/* Brand mark : style image */
.brand-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--c-creme);
  padding: 2px;
  border: 1px solid rgba(184, 132, 92, 0.3);
  transition: transform var(--duration) var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-15deg) scale(1.05); }

/* Hero badge : style image */
.hero-badge img {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-creme);
  padding: 1px;
}

/* Hero portrait badge : style logo */
.hero-portrait-badge img {
  width: 70px; height: 70px;
  object-fit: contain;
}

/* Approche card header : style logo */
.approche-card-header img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-dore);
  background: var(--c-creme);
  padding: 2px;
}

/* Newsletter deco : logo grand format */
.newsletter-deco img {
  max-width: 220px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
  border-radius: 50%;
  background: rgba(251, 247, 240, 0.95);
  padding: 16px;
}

/* Footer brand mark : style image */
footer .brand-mark {
  width: 56px; height: 56px;
}


/* Forcer la couleur du texte/icône dans les ronds bleus */
.cycle-lab-page .offre-icon[style*="petrole"] svg,
.cycle-lab-page .offre-icon[style*="petrole"] {
  color: #F5EDE0 !important;
}
.cycle-lab-page .offre-icon[style*="bordeaux"] svg,
.cycle-lab-page .offre-icon[style*="bordeaux"] {
  color: #F5EDE0 !important;
}

/* Forcer crème sur tous les fonds sombres */
.cycle-lab-page .cta-final h2,
.cycle-lab-page .cta-final p,
.cycle-lab-page .cta-final .cta-text,
.cycle-lab-page .cta-final .cta-title,
.cycle-lab-page .cta-final .suptitle,
.cycle-lab-page .cta-slogan,
.cycle-lab-page .cta-final .suptitle-light {
  color: #F5EDE0 !important;
}
.cycle-lab-page .cta-final h2 em,
.cycle-lab-page .cta-final em,
.cycle-lab-page .cta-slogan em {
  color: #C9A788 !important;
}
.cycle-lab-page .newsletter-card h2,
.cycle-lab-page .newsletter-card p,
.cycle-lab-page .newsletter-title,
.cycle-lab-page .newsletter-content .suptitle {
  color: #F5EDE0 !important;
}
.cycle-lab-page .newsletter-title em {
  color: #D9BCA0 !important;
}
