/* ============================================================
   INGAMBE — Design System v6
   Mobile-first · Lisibilité 55+ · Corail #E8714A · Marine #1B2B4B
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --coral:      #E8714A;
  --coral-dk:   #C85C38;
  --coral-lt:   #FFF0EB;
  --navy:       #1B2B4B;
  --navy-lt:    #2E4270;
  --cream:      #FAF8F5;
  --cream-dk:   #F2EDE6;
  --white:      #FFFFFF;
  --border:     #E2D9D0;
  --text:       #1B2B4B;
  --text-2:     #4A5568;
  --text-3:     #718096;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Tailles — généreuses pour 55+ */
  --text-sm:   .875rem;   /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.25rem;   /* 20px */
  --text-xl:   1.5rem;    /* 24px */
  --text-2xl:  1.875rem;  /* 30px */
  --text-3xl:  2.25rem;   /* 36px */

  --radius:    .75rem;
  --radius-sm: .375rem;
  --shadow:    0 2px 12px rgba(27,43,75,.08);
  --shadow-md: 0 4px 24px rgba(27,43,75,.12);

  --max-w: 1140px;
  --max-content: 720px;
}

/* ── Reset minimal ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Utilitaires ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--coral); color: #fff;
  padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── Boutons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: var(--text-base); font-weight: 600;
  padding: .75rem 1.5rem; border-radius: 50px; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--coral); color: #fff; border-color: var(--coral); }
.btn--primary:hover { background: var(--coral-dk); border-color: var(--coral-dk); }

.btn--outline { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn--outline:hover { background: var(--coral); color: #fff; }

.btn--outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--coral); }

.btn--lg { font-size: var(--text-md); padding: 1rem 2rem; }
.btn--sm { font-size: var(--text-sm); padding: .5rem 1rem; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy); color: #fff;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  text-align: center; padding: .625rem 1rem; line-height: 1.4;
}
.topbar a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; margin-left: .5rem; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
}

.site-header__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: 1.25rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* Logo */
.site-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; flex-shrink: 0; }
.site-logo__img { height: 36px; width: auto; }
.site-logo__text { font-family: var(--serif); font-size: 1.625rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.site-logo__text .logo-i  { color: var(--coral); }
.site-logo__text .logo-fr { font-size: .9375rem; color: var(--coral); font-weight: 400; }
.site-logo__tagline { font-size: .5625rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; }

.header-actions { display: flex; align-items: center; gap: .75rem; }

/* Burger */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; padding: .5rem;
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav desktop */
.primary-nav { display: none; }
.primary-nav__list { display: flex; align-items: center; list-style: none; }
.primary-nav__link {
  display: block; font-size: .6875rem; font-weight: 700; color: var(--text-3);
  padding: .5rem .75rem; border-radius: var(--radius-sm);
  text-transform: uppercase; letter-spacing: .05em; white-space: nowrap;
  transition: color .2s, background .2s;
}
.primary-nav__link:hover,
.primary-nav__link[aria-current="page"] { color: var(--navy); background: var(--cream); }

/* ── Drawer mobile ──────────────────────────────────────────── */
.nav-drawer {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none; visibility: hidden;
  transition: visibility 0s .35s;
}
.nav-drawer.is-open { pointer-events: all; visibility: visible; transition-delay: 0s; }

.nav-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(27,43,75,.5); opacity: 0;
  transition: opacity .35s; backdrop-filter: blur(4px);
}
.nav-drawer.is-open .nav-drawer__overlay { opacity: 1; }

.nav-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw); background: #fff;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 1.5rem 1.75rem 2.5rem; overflow-y: auto;
}
.nav-drawer.is-open .nav-drawer__panel { transform: none; }

.nav-drawer__close {
  align-self: flex-end; width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: none; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 1.5rem;
  transition: background .2s;
}
.nav-drawer__close:hover { background: var(--border); }

.nav-drawer__label { font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }

.nav-drawer__list { list-style: none; }
.nav-drawer__link {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 0; font-family: var(--serif); font-size: 1.0625rem; color: var(--navy);
  border-bottom: 1px solid var(--border); text-decoration: none;
  transition: color .2s;
}
.nav-drawer__link:hover { color: var(--coral); }
.nav-drawer__icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9375rem; flex-shrink: 0; }

.nav-drawer__cta {
  margin-top: 1.5rem; background: var(--coral); color: #fff;
  border: none; border-radius: 50px; padding: 1rem;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  width: 100%; text-align: center; transition: background .2s;
}
.nav-drawer__cta:hover { background: var(--coral-dk); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy); color: #fff;
  padding: clamp(3rem,8vw,5.5rem) 1.25rem clamp(3.5rem,9vw,6rem);
  text-align: center; position: relative; overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before { top: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,113,74,.15) 0%, transparent 70%); }
.hero::after  { bottom: -80px; left: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(232,113,74,.1) 0%, transparent 70%); }

.hero__inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .625rem; font-size: .6875rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); margin-bottom: 1.25rem; }
.hero__eyebrow::before, .hero__eyebrow::after { content: ''; display: block; width: 24px; height: 1px; background: var(--coral); opacity: .55; }

.hero__title { font-family: var(--serif); font-size: clamp(1.875rem,6vw,3.25rem); font-weight: 700; line-height: 1.18; margin-bottom: 1.25rem; letter-spacing: -.02em; color: #fff; }
.hero__title em { font-style: italic; color: var(--coral); }

.hero__subtitle { font-size: clamp(1rem,2.5vw,1.125rem); color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 2rem; }

/* Formulaire hero */
.hero__form { display: flex; flex-direction: column; gap: .75rem; max-width: 440px; margin: 0 auto 1rem; }
.hero__form-input {
  padding: 1rem 1.25rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1);
  color: #fff; font-family: var(--sans); font-size: var(--text-base); outline: none;
  transition: border-color .2s; width: 100%;
}
.hero__form-input::placeholder { color: rgba(255,255,255,.4); }
.hero__form-input:focus { border-color: var(--coral); }
.hero__form-btn {
  padding: 1rem 1.75rem; border-radius: 50px; border: none;
  background: var(--coral); color: #fff; font-family: var(--sans);
  font-size: var(--text-base); font-weight: 700; letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.hero__form-btn:hover { background: var(--coral-dk); transform: translateY(-1px); }
.hero__reassurance { font-size: .75rem; color: rgba(255,255,255,.42); letter-spacing: .04em; }

/* ── Trust row ──────────────────────────────────────────────── */
.trust-row { background: #fff; border-bottom: 1px solid var(--border); padding: 1.125rem 1.25rem; }
.trust-row__inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; max-width: var(--max-w); margin-inline: auto; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--text-2); white-space: nowrap; }

/* ── Cats nav ───────────────────────────────────────────────── */
.cats-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch; /* scroll fluide iOS */
  position: relative;
  /* Dégradé droite pour indiquer qu'il y a du contenu à scroller */
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}
.cats-nav::-webkit-scrollbar { display: none; }
.cats-nav__inner {
  display: flex;
  padding: 0 1rem;
  /* padding-right généreux pour que le dernier item soit visible */
  padding-right: 3rem;
  min-width: max-content;
  max-width: var(--max-w);
  margin-inline: auto;
}
/* Sur desktop : pas de masque, tous les items visibles */
@media (min-width: 900px) {
  .cats-nav {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: visible;
  }
  .cats-nav__inner { padding-right: 1rem; }
}
.cat-pill {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .875rem 1rem; font-size: .6875rem; font-weight: 700;
  color: var(--text-3); border-bottom: 2.5px solid transparent;
  text-transform: uppercase; letter-spacing: .05em; white-space: nowrap;
  text-decoration: none; transition: color .2s, border-color .2s;
}
.cat-pill:hover, .cat-pill.is-active { color: var(--navy); border-bottom-color: var(--coral); }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding-block: clamp(2.5rem,6vw,4rem); }
.section--white    { background: #fff; }
.section--cream    { background: var(--cream-dk); }
.section--navy     { background: var(--navy); }
.section--coral    { background: linear-gradient(135deg, var(--coral) 0%, #C55834 100%); }

.section__header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.75rem; flex-wrap: wrap; gap: .75rem; }
.section__title { font-family: var(--serif); font-size: clamp(1.25rem,3.5vw,1.875rem); font-weight: 700; color: var(--navy); }
.section__title::after { content: ''; display: block; width: 36px; height: 3px; background: var(--coral); margin-top: 8px; border-radius: 2px; }
.section--navy .section__title { color: #fff; }

.section__link { font-size: .75rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: .05em; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.section__link:hover { gap: 8px; }

/* ── Cards articles ─────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

/* Card featured — pleine largeur sur mobile, ratio 4/3 pour plus de hauteur */
.card--featured { grid-column: 1 / -1; }
.card--featured .card__img { aspect-ratio: 4/3; }
@media (min-width: 560px) {
  .card--featured .card__img { aspect-ratio: 16/9; }
}

.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  text-decoration: none; transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card__img {
  aspect-ratio: 16/10; width: 100%; object-fit: cover;
  background: var(--cream-dk); display: block;
}
.card__img-placeholder {
  aspect-ratio: 16/10; width: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  background: var(--cream-dk);
}

.card__body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.card__meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .625rem; flex-wrap: wrap; }
.card__cat { font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); text-decoration: none; }
.card__read { font-size: .75rem; color: var(--text-3); margin-left: auto; }

.card__title { font-family: var(--serif); font-size: 1.0625rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: .625rem; }

.card__excerpt { font-size: .9375rem; color: var(--text-2); line-height: 1.6; flex: 1; margin-bottom: 1rem; }

.card__footer { display: flex; align-items: center; gap: .5rem; padding-top: .875rem; border-top: 1px solid var(--border); margin-top: auto; }

/* Card featured */
.card--featured .card__img { aspect-ratio: 16/9; }
.card--featured .card__title { font-size: clamp(1.125rem,3.5vw,1.625rem); }
.card--featured .card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--coral); color: #fff; font-size: .625rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}

/* ── Cat cards (fond marine) ────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .875rem; }
.cat-card {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.5rem 1rem 1.25rem;
  text-align: center; text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  display: block;
}
.cat-card:hover { background: rgba(232,113,74,.15); border-color: rgba(232,113,74,.4); transform: translateY(-3px); }
.cat-card__icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.cat-card__name { font-family: var(--serif); font-size: .9375rem; font-weight: 600; color: #fff; line-height: 1.3; margin-bottom: .375rem; }
.cat-card__author { font-size: .6875rem; color: rgba(255,255,255,.42); }

/* ── Team cards ─────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.team-card { background: #fff; border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; box-shadow: var(--shadow); text-decoration: none; display: block; transition: transform .2s, box-shadow .2s; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card__avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto .875rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.375rem; font-weight: 700; color: #fff;
  border: 3px solid #fff; box-shadow: 0 0 0 2px var(--coral); overflow: hidden;
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-family: var(--serif); font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: .6875rem; color: var(--text-3); line-height: 1.4; }

/* ── Author inline ──────────────────────────────────────────── */
.author-avatar {
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; color: #fff; flex-shrink: 0; overflow: hidden;
}
.author-avatar--initials { }

/* ── Approach banner ────────────────────────────────────────── */
.approach-banner { background: var(--coral-lt); border-top: 3px solid var(--coral); padding: 1.75rem 1.25rem; }
.approach-banner__inner { max-width: 860px; margin-inline: auto; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.approach-banner__icon { font-size: 2.25rem; flex-shrink: 0; }
.approach-banner__text { flex: 1; min-width: 200px; }
.approach-banner__title { font-family: var(--serif); font-size: 1.0625rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 4px; }
.approach-banner__desc { font-size: .9375rem; color: var(--text-2); line-height: 1.6; }

/* ── Newsletter ─────────────────────────────────────────────── */
.nl-section { padding: clamp(2.5rem,7vw,4rem) 1.25rem; text-align: center; }
.nl-section__title { font-family: var(--serif); font-size: clamp(1.375rem,4vw,2.125rem); font-weight: 700; color: #fff; margin-bottom: .875rem; line-height: 1.25; }
.nl-section__sub { font-size: 1rem; color: rgba(255,255,255,.80); margin-bottom: 2rem; max-width: 480px; margin-inline: auto; line-height: 1.65; }
.nl-section__legal { font-size: .6875rem; color: rgba(255,255,255,.50); margin-top: .75rem; }

.nl-form { max-width: 440px; margin-inline: auto; }
.nl-form__row { display: flex; flex-direction: column; gap: .625rem; margin-bottom: .625rem; }
.nl-form__input {
  padding: 1rem 1.25rem; border-radius: 50px; border: none;
  font-family: var(--sans); font-size: var(--text-base); color: var(--navy);
  background: #fff; width: 100%; outline: none;
}
.nl-form__input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
.nl-form__btn {
  padding: 1rem 1.75rem; border-radius: 50px; border: 2px solid #fff;
  background: transparent; color: #fff; font-family: var(--sans);
  font-size: var(--text-base); font-weight: 700;
  transition: background .2s, color .2s;
}
.nl-form__btn:hover { background: #fff; color: var(--coral); }
.nl-form__feedback { min-height: 1.5rem; font-size: .875rem; margin-top: .5rem; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { padding: .875rem 1.25rem; background: var(--cream-dk); border-bottom: 1px solid var(--border); }
.breadcrumb__list { display: flex; align-items: center; justify-content: center; gap: .5rem; flex-wrap: wrap; font-size: .8125rem; color: var(--text-3); max-width: var(--max-w); margin-inline: auto; }
.breadcrumb__list a { color: var(--text-3); text-decoration: none; transition: color .2s; }
.breadcrumb__list a:hover { color: var(--coral); }
.breadcrumb__list [aria-current="page"] { color: var(--navy); font-weight: 600; }

/* ── Article single ─────────────────────────────────────────── */
.article-hero { background: var(--navy); color: #fff; padding: clamp(2rem,6vw,3.5rem) 1.25rem; }
.article-hero__inner { max-width: var(--max-content); margin-inline: auto; }
.article-hero__cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); border: 1px solid rgba(232,113,74,.35);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 1rem; text-decoration: none;
  transition: background .2s;
}
.article-hero__cat:hover { background: rgba(232,113,74,.12); }
.article-hero__title { font-family: var(--serif); font-size: clamp(1.625rem,4.5vw,2.5rem); font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.article-hero__meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .875rem; color: rgba(255,255,255,.60); }

/* Cover image */
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; margin-top: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* Layout article */
.article-layout { max-width: var(--max-w); margin-inline: auto; padding: 2.5rem 1.25rem 4rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }

/* Contenu */
.article-content { font-family: var(--sans); font-size: var(--text-md); line-height: 1.85; color: var(--text); }
.article-content p { margin-bottom: 1.5rem; }
.article-content h2 { font-family: var(--serif); font-size: clamp(1.25rem,3vw,1.625rem); font-weight: 700; color: var(--navy); margin-top: 2.5rem; margin-bottom: 1rem; }
.article-content h2::before { content: ''; display: block; width: 32px; height: 3px; background: var(--coral); margin-bottom: .75rem; border-radius: 2px; }
.article-content h3 { font-family: var(--serif); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-top: 2rem; margin-bottom: .875rem; }
.article-content a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.article-content a:hover { color: var(--coral-dk); }
.article-content ul, .article-content ol { margin-bottom: 1.5rem; }
.article-content ul li, .article-content ol li { padding-left: 1.5rem; margin-bottom: .5rem; position: relative; }
.article-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }
.article-content ol { counter-reset: ol; }
.article-content ol li { counter-increment: ol; }
.article-content ol li::before { content: counter(ol)'.'; position: absolute; left: 0; color: var(--coral); font-weight: 700; font-family: var(--serif); }
.article-content blockquote { border-left: 4px solid var(--coral); padding: 1rem 1.25rem; margin: 1.75rem 0; background: var(--coral-lt); border-radius: 0 var(--radius) var(--radius) 0; }
.article-content blockquote p { font-family: var(--serif); font-size: 1.0625rem; font-style: italic; color: var(--navy); margin: 0; }
.article-content strong { color: var(--navy); font-weight: 700; }

/* Disclaimer médical */
.medical-note { display: flex; gap: .875rem; align-items: flex-start; background: #FFF8E1; border: 1.5px solid #FFD54F; border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.75rem 0; }
.medical-note__icon { font-size: 1.375rem; flex-shrink: 0; margin-top: 2px; }
.medical-note__text { font-size: .9375rem; color: #5D4037; line-height: 1.6; }
.medical-note__text strong { display: block; font-weight: 700; margin-bottom: 4px; color: #4E342E; }

/* Sources */
.article-sources { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-sources__label { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: .75rem; display: block; }
.article-sources li { font-size: .875rem; color: var(--text-2); padding: .5rem 0 .5rem 1.25rem; border-bottom: 1px solid var(--border); position: relative; }
.article-sources li::before { content: '↗'; position: absolute; left: 0; color: var(--coral); }
.article-sources li a { color: var(--coral); text-decoration: underline; }

/* Bloc auteur fin d'article */
.author-box { background: var(--cream-dk); border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 1.25rem; align-items: flex-start; margin-top: 2rem; }
.author-box__label { font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); display: block; margin-bottom: 4px; }
.author-box__name { font-family: var(--serif); font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.author-box__role { font-size: .875rem; color: var(--text-3); display: block; margin-bottom: .75rem; }
.author-box__bio { font-size: .9375rem; color: var(--text-2); line-height: 1.65; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.widget { background: #fff; border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); margin-bottom: 1.25rem; }
.widget__title { font-family: var(--serif); font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--coral); }

/* Widget newsletter sidebar */
.widget-nl { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.25rem; }
.widget-nl__title { font-family: var(--serif); font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.widget-nl__desc { font-size: .875rem; color: rgba(255,255,255,.70); margin-bottom: 1rem; line-height: 1.6; }
.widget-nl .nl-form__input { background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.2); color: #fff; margin-bottom: .5rem; }
.widget-nl .nl-form__input::placeholder { color: rgba(255,255,255,.4); }
.widget-nl .nl-form__btn { background: var(--coral); border-color: var(--coral); color: #fff; width: 100%; }
.widget-nl .nl-form__btn:hover { background: var(--coral-dk); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-block { margin: 2rem 0; }
.faq-block__title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: .5rem; }
.faq-item__btn { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1rem 1.25rem; background: #fff; border: none; text-align: left; font-family: var(--sans); font-size: var(--text-base); font-weight: 600; color: var(--navy); gap: 1rem; transition: background .2s; }
.faq-item__btn:hover { background: var(--cream); }
.faq-item__icon { width: 24px; height: 24px; border-radius: 50%; background: var(--coral-lt); color: var(--coral); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; transition: transform .2s, background .2s; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-item__answer { display: none; padding: 0 1.25rem 1rem; background: #fff; font-size: var(--text-base); color: var(--text-2); line-height: 1.7; }
.faq-item.is-open .faq-item__answer { display: block; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 2.5rem 1.25rem; flex-wrap: wrap; }
.pagination__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 .75rem; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: #fff; font-family: var(--sans); font-size: var(--text-base); font-weight: 600; color: var(--text-2); text-decoration: none; transition: all .2s; }
.pagination__btn:hover { border-color: var(--coral); color: var(--coral); }
.pagination__btn.current { background: var(--coral); border-color: var(--coral); color: #fff; }

/* ── Comments ────────────────────────────────────────────────── */
.comments-section { padding-top: 2rem; margin-top: 2rem; border-top: 2px solid var(--border); }
.comments-section__title { font-family: var(--serif); font-size: 1.375rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.comment-list { list-style: none; }
.comment { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.comment__header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.comment__author { font-size: .9375rem; font-weight: 600; color: var(--navy); }
.comment__date { font-size: .75rem; color: var(--text-3); }
.comment__body { font-size: var(--text-base); color: var(--text); line-height: 1.7; padding-left: calc(44px + .75rem); }

.comment-form-area { margin-top: 2rem; background: var(--cream-dk); border-radius: var(--radius); padding: 1.5rem; }
.comment-form-area h3 { font-family: var(--serif); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.comment-form .form-field { margin-bottom: 1rem; }
.comment-form label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .375rem; }
.comment-form input, .comment-form textarea { width: 100%; padding: .75rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-family: var(--sans); font-size: var(--text-base); color: var(--text); background: #fff; outline: none; resize: vertical; transition: border-color .2s, box-shadow .2s; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,113,74,.15); }
.comment-form textarea { min-height: 120px; }

/* ── SEO text block ──────────────────────────────────────────── */
.seo-block { background: #fff; padding: 2.5rem 1.25rem; border-top: 1px solid var(--border); }
.seo-block__inner { max-width: 860px; margin-inline: auto; }
.seo-block__title { font-family: var(--serif); font-size: 1.375rem; font-weight: 700; color: var(--navy); margin-bottom: .875rem; }
.seo-block__content { display: grid; gap: 1.25rem; font-size: .9375rem; color: var(--text-2); line-height: 1.8; }
.seo-block__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.seo-block__tag { display: inline-block; padding: 4px 14px; background: var(--cream-dk); border-radius: 50px; font-size: .8125rem; font-weight: 600; color: var(--text-2); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.60); padding: clamp(2.5rem,6vw,4rem) 1.25rem 1.5rem; }
.site-footer__inner { max-width: var(--max-w); margin-inline: auto; }
.footer-logo { font-family: var(--serif); font-size: 1.375rem; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.footer-logo span { color: var(--coral); }
.footer-tagline { font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 2.5rem; display: block; }
.footer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.75rem 1.5rem; margin-bottom: 2.5rem; }
.footer-col__title { font-size: .625rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: .875rem; display: block; }
.footer-col__list { list-style: none; }
.footer-col__item { margin-bottom: .5rem; }
.footer-col__link { font-size: .875rem; color: rgba(255,255,255,.50); text-decoration: none; transition: color .2s; }
.footer-col__link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer-legal a { font-size: .6875rem; color: rgba(255,255,255,.30); margin-left: 1rem; text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.60); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (min-width: 560px) {
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid  { grid-template-columns: repeat(3,1fr); }
  .hero__form { flex-direction: row; }
  .hero__form-input { flex: 1; }
  .nl-form__row { flex-direction: row; }
  .nl-form__input { flex: 1; }
}

@media (min-width: 900px) {
  .card-grid  { grid-template-columns: repeat(3,1fr); }
  .cat-grid   { grid-template-columns: repeat(5,1fr); }
  .team-grid  { grid-template-columns: repeat(6,1fr); }
  .footer-grid { grid-template-columns: repeat(4,1fr); }
  .article-layout { grid-template-columns: 1fr 300px; }
  .nav-toggle  { display: none; }
  .primary-nav { display: flex; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .topbar, .site-header, .cats-nav, .trust-row, .nl-section,
  .approach-banner, .site-footer, .nav-drawer, .sidebar { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}