/*
Theme Name: Idem
Theme URI: https://idem-ext.fr
Author: Kilian
Description: Thème custom pour Idem — Assistanat de direction pour TPE et PME
Version: 1.0.0
Text Domain: idem
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sage: #7A9478;
  --sage-light: #A8BDA6;
  --sage-pale: #E8EFE7;
  --sage-bg: #F4F7F3;
  --orange: #EF6434;
  --orange-light: #F4895F;
  --orange-pale: #FDE8E0;
  --dark: #3A3A3A;
  --dark-deep: #2A2A2A;
  --text: #444444;
  --text-light: #7A7A72;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --border: #E4E4DC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body); color: var(--text);
  background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.05); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 2rem;
}
.nav-logo img { height: 78px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--text-light); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.3s; border-radius: 1px;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: #fff;
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; transition: all 0.3s;
}
.nav-cta:hover { background: #d9552a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(239,100,52,0.25); }
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative;
}
.nav-burger span {
  display: block; width: 100%; height: 2px; background: var(--dark);
  position: absolute; left: 0; transition: all 0.3s; border-radius: 1px;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 9px; }
.nav-burger span:nth-child(3) { top: 18px; }
.nav-burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(250,250,248,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--dark); font-weight: 500; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; display: inline-flex;
  align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.btn-primary:hover { background: #d9552a; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(239,100,52,0.25); }
.btn-secondary {
  background: transparent; color: var(--dark);
  padding: 0.9rem 2rem; border-radius: 50px;
  border: 2px solid var(--sage-light);
  font-size: 0.95rem; font-weight: 600; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); }

/* ─── SECTIONS COMMON ─── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem);
  line-height: 1.25; margin-bottom: 1rem; color: var(--dark); font-weight: 500;
}
.section-subtitle {
  font-size: 1.02rem; color: var(--text-light); max-width: 560px; line-height: 1.8;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero-deco-1 {
  position: absolute; top: 5%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--sage-pale); opacity: 0.6; pointer-events: none;
}
.hero-deco-2 {
  position: absolute; bottom: -10%; right: 10%;
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--orange-pale); opacity: 0.5; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem,4.5vw,3.5rem);
  line-height: 1.2; color: var(--dark); margin-bottom: 1.5rem; font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-desc {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 440px; }
.hero-image-circle-top {
  width: 320px; height: 320px; border-radius: 50%;
  overflow: hidden; position: relative; z-index: 2;
  margin-left: auto; margin-right: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.hero-image-circle-bottom {
  width: 280px; height: 280px; border-radius: 50%;
  overflow: hidden; position: relative; z-index: 1;
  margin-top: -80px; margin-left: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.hero-image-circle-top img, .hero-image-circle-bottom img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}

/* ─── OBJECTIFS ─── */
.objectifs { background: var(--white); }
.objectifs-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3.5rem;
}
.obj-card {
  padding: 2rem 1.5rem; border-radius: 16px; background: var(--bg);
  transition: all 0.4s; border: 1px solid transparent;
}
.obj-card:hover {
  border-color: var(--sage-light); transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(122,148,120,0.1);
}
.obj-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.obj-card:nth-child(2) .obj-icon, .obj-card:nth-child(4) .obj-icon { background: var(--orange-pale); }
.obj-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  margin-bottom: 0.75rem; color: var(--dark); font-weight: 500;
}
.obj-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ─── PHOTO BANNER ─── */
.photo-banner { padding: 0 2rem; background: var(--white); }
.photo-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; padding-bottom: 1rem;
}
.photo-banner-item { border-radius: 14px; overflow: hidden; height: 220px; }
.photo-banner-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.photo-banner-item:hover img { transform: scale(1.05); }

/* ─── A PROPOS ─── */
.apropos { background: var(--bg); }
.apropos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3rem; align-items: center;
}
.apropos-visual { position: relative; }
.apropos-circle-sage {
  width: 340px; height: 340px; border-radius: 50%;
  overflow: hidden; position: relative; z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.apropos-circle-sage img { width: 100%; height: 100%; object-fit: cover; }
.apropos-circle-orange {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden;
  position: absolute; bottom: -30px; left: -40px; z-index: 3;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.apropos-circle-orange img { width: 100%; height: 100%; object-fit: cover; }
.apropos-circle-sage-bg {
  width: 120px; height: 120px; border-radius: 50%; background: var(--sage-pale);
  position: absolute; top: -20px; right: 40px; z-index: 0;
}
.apropos-text blockquote {
  font-family: var(--font-display); font-size: 1.2rem;
  font-style: italic; color: var(--sage);
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem; margin-bottom: 2rem; line-height: 1.6;
}
.apropos-text p {
  color: var(--text-light); margin-bottom: 1.2rem; font-size: 0.95rem; line-height: 1.8;
}
.apropos-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat-item .stat-number {
  font-family: var(--font-display); font-size: 2rem; color: var(--orange); font-weight: 500;
}
.stat-item .stat-label {
  font-size: 0.78rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}

/* ─── EXPERTISE ─── */
.expertise {
  background: var(--dark); color: #fff; position: relative; overflow: hidden;
}
.expertise::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--sage); opacity: 0.06;
}
.expertise::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--orange); opacity: 0.06;
}
.expertise .section-inner { position: relative; z-index: 1; }
.expertise .section-tag { color: var(--sage-light); }
.expertise .section-tag::before { background: var(--orange); }
.expertise .section-title { color: #fff; }
.expertise .section-subtitle { color: rgba(255,255,255,0.5); }
.expertise-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3.5rem;
}
.exp-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2.2rem; transition: all 0.4s;
}
.exp-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(122,148,120,0.4); transform: translateY(-3px);
}
.exp-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.exp-num {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--orange); opacity: 0.5; line-height: 1; font-weight: 500;
}
.exp-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: #fff; font-weight: 500; }
.exp-card .exp-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.45); font-style: italic; margin-bottom: 1rem;
}
.exp-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.exp-card li {
  font-size: 0.88rem; color: rgba(255,255,255,0.65); padding-left: 1.4rem; position: relative;
}
.exp-card li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage-light);
}
.exp-card:nth-child(even) li::before { background: var(--orange-light); }
.expertise-photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem;
}
.expertise-photo {
  border-radius: 12px; overflow: hidden; height: 180px; opacity: 0.7; transition: opacity 0.4s;
}
.expertise-photo:hover { opacity: 1; }
.expertise-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ─── TEMOIGNAGES ─── */
.temoignages { background: var(--white); }
.temoignages-carousel {
  position: relative; max-width: 800px; margin: 3rem auto 0; overflow: hidden;
}
.temoignages-track { display: flex; transition: transform 0.5s ease; }
.temoignage-slide { min-width: 100%; padding: 0 1rem; }
.temoignage-card {
  background: var(--bg); border-radius: 20px; padding: 2.5rem;
  text-align: center; border: 1px solid var(--border);
}
.temoignage-card .quote-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--sage-pale);
  margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
}
.temoignage-card blockquote {
  font-family: var(--font-display); font-size: 1.15rem;
  font-style: italic; color: var(--dark); line-height: 1.7;
  margin-bottom: 1.5rem; font-weight: 400;
}
.temoignage-card .temoignage-author { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.temoignage-card .temoignage-role { font-size: 0.82rem; color: var(--text-light); }
.carousel-controls {
  display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--text-light);
}
.carousel-btn:hover { border-color: var(--sage); color: var(--sage); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--border);
  border: none; cursor: pointer; transition: all 0.3s;
}
.carousel-dot.active { background: var(--sage); transform: scale(1.2); }

/* ─── ENGAGEMENTS ─── */
.engagements { background: var(--sage-bg); }
.engagements-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3.5rem;
}
.eng-item { text-align: center; }
.eng-icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; transition: all 0.3s;
}
.eng-item:nth-child(odd) .eng-icon { background: var(--sage-pale); }
.eng-item:nth-child(even) .eng-icon { background: var(--orange-pale); }
.eng-item:hover .eng-icon { transform: scale(1.1); }
.eng-item:nth-child(odd):hover .eng-icon { background: var(--sage); }
.eng-item:nth-child(even):hover .eng-icon { background: var(--orange); }
.eng-item:hover .eng-icon svg { stroke: #fff; }
.eng-item h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  margin-bottom: 0.5rem; color: var(--dark); font-weight: 500;
}
.eng-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  margin-bottom: 1rem; color: var(--dark); font-weight: 500;
}
.contact-info p {
  color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem;
}
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-detail-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.contact-detail span { font-size: 0.9rem; color: var(--text-light); }
.contact-detail a { color: var(--text-light); transition: color 0.3s; }
.contact-detail a:hover { color: var(--orange); }
.contact-form-wrapper {
  background: var(--bg); border-radius: 20px;
  padding: 2.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

/* CF7 form styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.85rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text); outline: none; transition: border-color 0.3s;
  width: 100%; margin-bottom: 1rem;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus { border-color: var(--sage); }
.wpcf7 textarea { resize: vertical; min-height: 120px; }
.wpcf7 input[type="submit"] {
  background: var(--orange); color: #fff;
  padding: 0.95rem 2rem; border-radius: 50px;
  border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; transition: all 0.3s;
}
.wpcf7 input[type="submit"]:hover {
  background: #d9552a; transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239,100,52,0.25);
}
.wpcf7 label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 0.3rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark-deep); color: rgba(255,255,255,0.45); padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.3s;
}
.footer-links a:hover { color: var(--sage-light); }
.footer-copy { font-size: 0.8rem; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 8rem 2rem 3rem; background: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -60%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--sage-pale); opacity: 0.5; pointer-events: none;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--dark); font-weight: 500; margin-bottom: 0.8rem;
}
.page-header p { font-size: 1.05rem; color: var(--text-light); max-width: 550px; }

/* ─── BLOG ─── */
.blog-section { padding: 4rem 2rem 6rem; }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.article-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
  transition: all 0.4s; display: flex; flex-direction: column;
}
.article-card:hover {
  border-color: var(--sage-light); transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(122,148,120,0.1);
}
.article-card-img { height: 200px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card-body h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--dark); font-weight: 500; line-height: 1.4; margin-bottom: 0.75rem;
}
.article-card-body p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.7;
  margin-bottom: 1.2rem; flex: 1;
}
.article-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.article-date { font-size: 0.78rem; color: var(--text-light); }
.read-link {
  color: var(--orange); font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.3s;
}
.read-link:hover { gap: 0.6rem; }

/* ─── SINGLE ARTICLE ─── */
.article-hero { padding: 8rem 2rem 0; position: relative; overflow: hidden; }
.article-hero-inner { max-width: 780px; margin: 0 auto; }
.article-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 2rem;
}
.article-breadcrumb a { color: var(--sage); font-weight: 600; transition: color 0.3s; }
.article-breadcrumb a:hover { color: var(--orange); }
.article-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark); font-weight: 500; line-height: 1.25; margin-bottom: 1.5rem;
}
.article-hero-meta {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.85rem; color: var(--text-light); padding-bottom: 2rem;
}
.article-hero-meta-item { display: flex; align-items: center; gap: 0.4rem; }
.article-cover { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.article-cover-img {
  width: 100%; height: 420px; border-radius: 20px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.article-cover-img img { width: 100%; height: 100%; object-fit: cover; }
.article-content { max-width: 720px; margin: 0 auto; padding: 3.5rem 2rem 4rem; }
.article-content h2 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--dark); font-weight: 500; margin: 2.5rem 0 1rem;
}
.article-content h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--dark); font-weight: 500; margin: 2rem 0 0.8rem;
}
.article-content p {
  font-size: 1rem; line-height: 1.9; color: var(--text); margin-bottom: 1.4rem;
}
.article-content strong { color: var(--dark); font-weight: 700; }
.article-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: #d9552a; }
.article-content ul, .article-content ol { padding-left: 0; margin-bottom: 1.4rem; list-style: none; }
.article-content li {
  padding-left: 1.6rem; position: relative; margin-bottom: 0.6rem;
  font-size: 1rem; line-height: 1.8;
}
.article-content li::before {
  content: ''; position: absolute; left: 0; top: 0.65em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--sage);
}

/* Share button */
.article-share {
  max-width: 720px; margin: 0 auto; padding: 0 2rem 2rem; text-align: center;
}

/* Article CTA */
.article-cta {
  max-width: 720px; margin: 0 auto; padding: 0 2rem 4rem;
}
.article-cta-box {
  background: var(--dark-deep); border-radius: 20px;
  padding: 3rem; text-align: center; position: relative; overflow: hidden;
}
.article-cta-box::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--sage); opacity: 0.08;
}
.article-cta-box::after {
  content: ''; position: absolute; bottom: -30px; left: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--orange); opacity: 0.08;
}
.article-cta-box h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: #fff; font-weight: 500; margin-bottom: 0.8rem; position: relative; z-index: 1;
}
.article-cta-box p {
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.article-cta-box .btn-primary { position: relative; z-index: 1; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 4rem;
}
.pagination a, .pagination span {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 600; transition: all 0.3s; color: var(--text-light);
}
.pagination a:hover { background: var(--sage-pale); color: var(--sage); }
.pagination .current { background: var(--sage); color: #fff; }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .objectifs-grid, .engagements-grid { grid-template-columns: repeat(2,1fr); }
  .hero-image-circle-top { width: 260px; height: 260px; }
  .hero-image-circle-bottom { width: 220px; height: 220px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-circle-top { width: 220px; height: 220px; margin: 0 auto; }
  .hero-image-circle-bottom { width: 180px; height: 180px; margin: -60px auto 0; }
  .hero-deco-1 { width: 300px; height: 300px; top: -5%; right: -20%; }
  .hero-deco-2 { width: 200px; height: 200px; }
  .photo-banner-inner { grid-template-columns: 1fr; }
  .photo-banner-item { display: none; }
  .photo-banner-item:nth-child(2) { display: block; height: 200px; }
  .apropos-grid { grid-template-columns: 1fr; }
  .apropos-circle-sage { width: 260px; height: 260px; margin: 0 auto; }
  .apropos-circle-orange { width: 130px; height: 130px; left: auto; right: -10px; bottom: -15px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-photos { grid-template-columns: 1fr; }
  .expertise-photo { height: 200px; }
  .expertise-photo:nth-child(n+2) { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .apropos-stats { gap: 1.5rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-cover-img { height: 260px; border-radius: 14px; }
  .engagements-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero-meta { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 480px) {
  .objectifs-grid, .engagements-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 1.2rem; }
}
/* ─── PARTENAIRE ─── */
.partenaire {
  padding: 6rem 2rem; background: var(--white);
  position: relative; overflow: hidden;
}
.partenaire::before {
  content: ''; position: absolute; top: -100px; left: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: var(--sage-pale); opacity: 0.35; pointer-events: none;
}
.partenaire::after {
  content: ''; position: absolute; bottom: -60px; right: -40px;
  width: 250px; height: 250px; border-radius: 50%;
  background: var(--orange-pale); opacity: 0.3; pointer-events: none;
}
.partenaire-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}
.partenaire-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: center; margin-top: 2.5rem;
}
.partenaire-visual { position: relative; display: flex; justify-content: center; }
.partenaire-photo {
  width: 300px; height: 300px; border-radius: 50%;
  overflow: hidden; position: relative; z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}
.partenaire-photo img { width: 100%; height: 100%; object-fit: cover; }
.partenaire-deco-1 {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--orange); opacity: 0.12;
  position: absolute; top: -10px; right: 10px; z-index: 0;
}
.partenaire-deco-2 {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sage-pale);
  position: absolute; bottom: 0; left: 20px; z-index: 0;
}
.partenaire-name {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--dark); font-weight: 500; margin-bottom: 0.3rem;
}
.partenaire-role {
  font-size: 0.9rem; color: var(--orange); font-weight: 600; margin-bottom: 1.5rem;
}
.partenaire-desc {
  font-size: 1rem; color: var(--text-light); line-height: 1.85;
  margin-bottom: 1.5rem; max-width: 520px;
}
.partenaire-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.partenaire-tag {
  padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.partenaire-tag:nth-child(odd) {
  border: 1.5px solid var(--sage-pale); color: var(--sage); background: rgba(232,239,231,0.25);
}
.partenaire-tag:nth-child(even) {
  border: 1.5px solid var(--orange-pale); color: var(--orange); background: rgba(253,232,224,0.25);
}
.partenaire-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: #fff;
  padding: 0.75rem 1.6rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; transition: all 0.3s;
}
.partenaire-link:hover {
  background: #d9552a; transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239,100,52,0.25);
}
@media (max-width: 768px) {
  .partenaire-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .partenaire-photo { width: 200px; height: 200px; margin: 0 auto; }
  .partenaire-desc { margin-left: auto; margin-right: auto; }
  .partenaire-tags { justify-content: center; }
  .partenaire-link { margin: 0 auto; }
}
