/* =====================================================================
   CCLAM v2 — Stylesheet ÉLÉGANT et INSTITUTIONNEL
   Fond cream/blanc dominant, contrastes subtils, accents délicats
   Volontairement DIFFÉRENT de P43 (qui est sombre/business)
   ===================================================================== */
:root {
  /* === COULEURS DES LOGOS (extraites des PNG officiels) === */
  --logo-navy:     #15205B;  /* Navy profond du logo CCLAM_navy.png */
  --logo-green:    #1F8F3A;  /* Green du logo CCLAM_green.png */
  --logo-orange:   #E29528;  /* Orange du logo CCLAM_orange.png */
  --logo-red:      #C42028;  /* Red du logo CCLAM_red.png */
  --logo-grafito:  #1A1A1A;  /* Grafito quasi-noir du logo */

  /* === PALETTE TONS CLAIRS / ÉLÉGANTS (pour fonds et accents subtils) === */
  --cream:         #FAF6EE;  /* Fond crème institutionnel — DOMINANT */
  --cream-soft:    #FFFCF5;  /* Cream très clair, alternance sections */
  --cream-d:       #F0E9D7;  /* Cream foncé, séparateurs */
  --pearl:         #F8F5EE;  /* Cream légèrement perlé */

  /* Variantes claires des couleurs du logo */
  --navy-pale:     #E5E8F1;  /* Navy 8% — fonds tintés */
  --navy-soft:     #C9CFE0;  /* Navy 25% — bordures subtiles */
  --green-pale:    #E5F1E8;  /* Green 8% */
  --green-soft:    #C9E0CE;  /* Green 25% */
  --orange-pale:   #FBEFD9;  /* Orange 10% */
  --orange-soft:   #F2D7A7;  /* Orange 30% */

  /* === ACCENTS (utilisations parcimonieuses) === */
  --blue:          var(--logo-navy);     /* Navy logo pour titres et structure */
  --blue-d:        #0D1640;
  --green:         var(--logo-green);     /* Green logo pour signature */
  --green-d:       #166D2C;
  --amber:         var(--logo-orange);    /* Orange logo pour CTA */
  --amber-d:       #C77A0F;
  --wine:          var(--logo-red);       /* Red logo pour prestige */
  --wine-d:        #9C181E;

  /* === NEUTRES ÉLÉGANTS === */
  --charcoal:      #2A3242;  /* Texte body (pas trop noir) */
  --slate:         #6B7384;  /* Texte secondaire */
  --slate-l:       #98A1B0;  /* Métadonnées */
  --border:        #E8E2D1;  /* Bordures warm subtiles */
  --border-soft:   #F2EDD9;  /* Bordures très subtiles */
  --white:         #FFFFFF;

  /* === ALIASES (compat ancien CSS) === */
  --navy: var(--blue);
  --navy2: var(--blue-d);
  --orange: var(--amber);
  --orange-d: var(--amber-d);
  --red: var(--wine);
  --grafito: var(--charcoal);
  --light: var(--cream);
  --success: var(--green);
  --warning: var(--amber);
  --danger: var(--wine);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber-d); }

/* ---------- NAV CLAIRE ---------- */
nav.topnav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 88px;
  border-bottom: 1px solid var(--border);
}
.brand-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-logo img { height: 56px; width: auto; }
.brand-logo .brand-name {
  display: none; /* Le logo officiel contient déjà CCLAM + tagline */
}
.nav-menu { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-menu a {
  color: var(--charcoal); text-decoration: none;
  font-size: 13px; font-weight: 500; transition: color .2s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
}
.nav-menu a:hover { color: var(--amber); }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 10px 20px; border-radius: 0;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  font-size: 11px !important;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  transition: all .25s;
}
.nav-cta:hover { background: var(--white); color: var(--blue) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); }

/* ---------- HERO CLAIR & ÉLÉGANT ---------- */
.hero {
  min-height: 78vh;
  background: var(--cream);
  display: grid; grid-template-columns: 60% 40%;
  align-items: start; padding: 60px 5% 100px; gap: 50px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: ''; position: absolute; right: -15%; top: -20%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 65%);
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; left: -10%; bottom: -25%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange-pale) 0%, transparent 65%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border-bottom: 1px solid var(--green);
  color: var(--green); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 0 0 6px 0; margin-bottom: 30px;
}
.hero-pill::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
}
.hero h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 600; color: var(--blue);
  line-height: 1.1; margin-bottom: 28px; letter-spacing: -0.8px;
}
.hero h1 em { color: var(--amber); font-style: italic; font-weight: 600; }
.hero h1 .accent-green { color: var(--green); font-style: italic; font-weight: 600; }
.hero p.hero-sub {
  font-size: 17px; color: var(--charcoal);
  line-height: 1.75; margin-bottom: 40px; max-width: 760px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: white !important;
  padding: 14px 32px; border-radius: 0;
  text-decoration: none; font-weight: 600; font-size: 12px;
  letter-spacing: 1.8px; text-transform: uppercase;
  transition: all .25s; border: 1px solid var(--blue); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover {
  background: transparent; color: var(--blue) !important;
}
.btn-ghost {
  background: transparent; color: var(--charcoal) !important;
  padding: 14px 32px; border-radius: 0; font-weight: 500; font-size: 12px;
  letter-spacing: 1.8px; text-transform: uppercase;
  border: 1px solid var(--border); transition: all .25s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber) !important; }
.btn-success {
  background: var(--green); color: white !important;
  padding: 14px 32px; border-radius: 0; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase; font-size: 12px;
  text-decoration: none; transition: all .25s;
  border: 1px solid var(--green);
}
.btn-success:hover { background: transparent; color: var(--green) !important; }

.hero-stats {
  display: flex; gap: 60px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
/* Stats bar étirée sur toute la largeur du hero (les 2 colonnes) */
.hero-stats-full {
  grid-column: 1 / -1;
  margin-top: 50px;
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.hero-stats-full > div {
  flex: 1;
  min-width: 140px;
  text-align: left;
}
@media (max-width: 900px) {
  .hero-stats-full {
    justify-content: flex-start;
    gap: 30px 50px;
  }
  .hero-stats-full > div { min-width: 120px; flex: 0 1 auto; }
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px; font-weight: 600; color: var(--blue); line-height: 1;
}
.stat-label {
  font-size: 10.5px; color: var(--slate);
  margin-top: 8px; text-transform: uppercase; letter-spacing: 1.8px;
  font-weight: 500;
}
.hero-illustration {
  position: relative; z-index: 2;
  display: flex; align-items: flex-start; justify-content: flex-start;
  align-self: start;
  /* Aligne le haut du logo avec le haut du H1 :
     hero-pill height (~24px) + margin-bottom 30px = 54px à descendre */
  margin-top: 54px;
  margin-left: -8%;
}
.hero-illustration img {
  width: 115%;
  max-width: none;
  transform: translateX(-8%);
}
@media (max-width: 900px) {
  .hero-illustration { margin-top: 0; margin-left: 0; justify-content: center; }
  .hero-illustration img { width: 100%; transform: none; }
}
.hero-illustration .placeholder-card {
  width: 100%; max-width: 480px; aspect-ratio: 4/3;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-l); font-size: 12px;
  text-align: center; padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(21, 32, 91, 0.10);
}

/* ---------- SECTIONS ÉPURÉES ---------- */
section { padding: 110px 5%; }
.s-tag {
  display: inline-block;
  background: transparent; color: var(--green);
  font-size: 10.5px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; padding: 0; margin-bottom: 16px;
  border-bottom: 1px solid var(--green); padding-bottom: 4px;
}
.s-head { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.s-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.8vw, 46px); font-weight: 600;
  color: var(--blue); line-height: 1.2;
}
.s-head p {
  font-size: 16px; color: var(--charcoal); line-height: 1.75;
  margin-top: 18px; font-weight: 400;
}

/* ---------- CARDS — STYLE ÉDITORIAL ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1180px; margin: 0 auto;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 44px 36px; position: relative;
  transition: all .35s ease;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 40px; height: 2px; background: var(--green);
  transition: width .35s ease;
}
.card:hover {
  border-color: var(--green-soft);
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -20px rgba(21, 32, 91, 0.12);
}
.card:hover::before { width: 100%; }
.card.red-top::before { background: var(--wine); }
.card.green-top::before { background: var(--green); }
.card.amber-top::before { background: var(--amber); }
.card .card-icon {
  width: 48px; height: 48px; border-radius: 0;
  background: transparent; color: var(--green);
  display: flex; align-items: center; justify-content: flex-start;
  font-size: 32px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border); padding-bottom: 18px;
}
.card.red-top .card-icon { color: var(--wine); }
.card.green-top .card-icon { color: var(--green); }
.card.amber-top .card-icon { color: var(--amber); }
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--blue);
  line-height: 1.3; margin-bottom: 12px;
}
.card p {
  font-size: 14.5px; color: var(--charcoal); line-height: 1.7;
}
.card ul {
  list-style: none; padding: 16px 0 0; margin: 0;
}
.card ul li {
  font-size: 13.5px; color: var(--slate); line-height: 1.7;
  padding-left: 20px; position: relative; margin-bottom: 8px;
}
.card ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--amber); font-weight: 400;
}

/* ---------- BANDS ---------- */
.band-light { background: var(--cream-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band-cream { background: var(--cream); }
.band-pearl { background: var(--pearl); }

/* Light institutional bands (au lieu de fonds sombres comme P43) */
.band-blue {
  background: var(--cream-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.band-blue .s-head h2 { color: var(--blue); }
.band-blue .s-head p { color: var(--charcoal); }
.band-blue .s-tag { color: var(--blue); border-bottom-color: var(--blue); }

.band-green {
  background: var(--cream-soft);
  border-top: 1px solid var(--green-soft);
  border-bottom: 1px solid var(--green-soft);
}
.band-green .s-head h2 { color: var(--blue); }

/* Compatibilité ancien band-navy → maintenant claire */
.band-navy {
  background: var(--cream-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.band-navy .s-head h2 { color: var(--blue); }
.band-navy .s-head p { color: var(--charcoal); }
.band-navy .s-tag { color: var(--blue); border-bottom-color: var(--blue); }

/* ---------- PARTENARIAT P43 — VERSION ÉLÉGANTE CLAIRE ---------- */
.partnership-banner {
  background: var(--white);
  color: var(--charcoal);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partnership-banner::before {
  content: ''; position: absolute; left: 50%; top: 0;
  width: 1px; height: 60px; background: var(--green);
  transform: translateX(-50%);
}
.partnership-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; max-width: 1180px; margin: 0 auto;
  position: relative; z-index: 2;
}
/* Bloc transversal tri-continental (sous la partnership-grid) */
.tri-continental {
  max-width: 1180px;
  margin: 80px auto 0;
  padding-top: 60px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.tc-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 48px;
}
.tc-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.2;
  margin: 14px 0 18px;
}
.tc-header p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
}
.tc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.tc-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  padding: 28px 26px;
}
.tc-pillar:nth-child(1) { border-top-color: var(--blue); }
.tc-pillar:nth-child(2) { border-top-color: var(--green); }
.tc-pillar:nth-child(3) { border-top-color: var(--amber); }
.tc-flag {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.tc-flag span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--blue);
}
.tc-pillar h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.tc-pillar p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.65;
}
.tc-takeaway {
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--cream-soft) 0%, #F4EBDA 100%);
  border-left: 4px solid var(--amber);
}
.tc-takeaway p {
  font-size: 15.5px;
  color: var(--charcoal);
  line-height: 1.75;
  margin: 0;
}
.tc-takeaway strong { color: var(--blue); }
@media (max-width: 900px) {
  .tc-grid { grid-template-columns: 1fr; }
  .tc-header h3 { font-size: 26px; }
}

/* Bloc partenaires locaux tri-continental (ancien — gardé pour compat) */
.local-partners-block {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.local-partners-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}
.local-partners-block .lp-intro {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}
.lp-pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
}
.lp-pillar:last-of-type {
  border-bottom: 1px solid var(--border-soft);
}
.lp-flag {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}
.lp-flag span {
  font-size: 13px;
  letter-spacing: 1.2px;
  color: var(--blue);
}
.lp-pillar strong {
  display: block;
  font-size: 15.5px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-pillar p {
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0;
}
.lp-takeaway {
  margin-top: 22px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--cream-soft) 0%, #F4EBDA 100%);
  border-left: 3px solid var(--amber);
}
.lp-takeaway p {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0;
}
.lp-takeaway strong { color: var(--blue); }
.partnership-grid h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.6vw, 40px); font-weight: 600;
  color: var(--blue); line-height: 1.2; margin-bottom: 20px;
}
.partnership-grid h2 em { color: var(--amber); font-style: italic; }
.partnership-grid p { color: var(--charcoal); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.partnership-benefits { display: flex; flex-direction: column; gap: 18px; }
.benefit-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 24px;
  background: var(--cream-soft);
  border-left: 2px solid var(--amber);
}
.benefit-row .benefit-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--green);
  line-height: 1; min-width: 36px;
}
.benefit-row strong { color: var(--blue); font-size: 15px; display: block; margin-bottom: 4px; font-weight: 600; }
.benefit-row span { color: var(--slate); font-size: 13.5px; line-height: 1.6; }
.partnership-cta {
  margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap;
}

/* ---------- ARTICLES — STYLE MAGAZINE ---------- */
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; max-width: 1180px; margin: 0 auto;
}
.article-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 0;
  overflow: hidden; transition: all .35s; cursor: pointer;
  display: flex; flex-direction: column;
}
.article-card:hover {
  transform: translateY(-3px); border-color: var(--green-soft);
  box-shadow: 0 28px 60px -20px rgba(21, 32, 91, 0.12);
}
.article-card .article-photo {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-d);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.article-card .article-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(21, 32, 91, 0.18) 100%);
  pointer-events: none;
}
.article-card .article-img {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--cream-d), var(--green-pale));
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-l); font-size: 11px;
  border-bottom: 1px solid var(--border);
}
.article-card .article-body { padding: 26px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.article-card .article-meta {
  font-size: 10.5px; color: var(--slate); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 14px; font-weight: 500;
}
.article-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px; font-weight: 600; color: var(--blue);
  line-height: 1.35; margin-bottom: 12px; min-height: 70px;
}
.article-card p {
  font-size: 14px; color: var(--slate); line-height: 1.65; flex-grow: 1;
}
.article-card .article-footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.article-card .author {
  font-size: 12px; color: var(--charcoal); font-weight: 500;
  font-style: italic;
}
.article-card .read-more {
  font-size: 11px; color: var(--amber); font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Newsletter signup */
.newsletter-form {
  max-width: 560px; margin: 40px auto 0;
  display: flex; gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
}
.newsletter-form input {
  flex: 1; padding: 16px 22px; border: none; outline: none;
  font-size: 14px; color: var(--charcoal);
  background: transparent;
  font-family: inherit;
}
.newsletter-form button {
  background: var(--blue); color: white; border: none;
  padding: 0 32px; font-weight: 600; cursor: pointer;
  letter-spacing: 1.8px; text-transform: uppercase;
  font-size: 11px;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--blue-d); }

/* LinkedIn integration helper */
.linkedin-publish-banner {
  background: var(--cream-soft);
  border-left: 2px solid #0A66C2;
  padding: 22px 26px;
  margin: 40px auto 0;
  max-width: 760px;
  display: flex; align-items: center; gap: 18px;
}
.linkedin-publish-banner .li-icon {
  flex: 0 0 36px; height: 36px; background: #0A66C2; color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-style: italic;
}
.linkedin-publish-banner .li-text { flex: 1; }
.linkedin-publish-banner .li-text strong {
  color: var(--blue); display: block; margin-bottom: 4px;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
}
.linkedin-publish-banner .li-text span { color: var(--slate); font-size: 13px; line-height: 1.6; }

/* ---------- ADHESION TIERS — ÉPURÉ ---------- */
.tiers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1180px; margin: 0 auto;
}
.tiers-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
}
.tiers-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
  gap: 18px;
}
.tiers-grid-5 .tier-card {
  padding: 28px 20px 24px;
}
.tiers-grid-5 .tier-name { font-size: 16px; }
.tiers-grid-5 .tier-price { font-size: 32px; }
.tiers-grid-5 .tier-period { font-size: 11px; }
.tiers-grid-5 ul { font-size: 12.5px; }
.tiers-grid-5 ul li { padding: 5px 0 5px 14px; }
.tiers-grid-5 .tier-cta { font-size: 12px; padding: 11px 14px; }
@media (max-width: 1100px) {
  .tiers-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .tiers-grid-5 { grid-template-columns: 1fr; }
}
.tier-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 0;
  padding: 44px 36px; position: relative; transition: all .35s;
  display: flex; flex-direction: column;
}
.tier-card:hover {
  border-color: var(--green-soft);
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -20px rgba(21, 32, 91, 0.12);
}
.tier-card.featured {
  border: 1px solid var(--green); transform: scale(1.02);
  background: var(--cream-soft);
}
.tier-card.featured::before {
  content: 'POPULAIRE'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--green); color: white; font-size: 9px;
  font-weight: 600; letter-spacing: 2px; padding: 6px 16px;
}
.tier-card .tier-name {
  font-size: 11px; font-weight: 600; color: var(--green);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.tier-card .tier-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px; font-weight: 600; color: var(--blue); line-height: 1;
}
.tier-card .tier-period { font-size: 13px; color: var(--slate); margin-top: 6px; font-style: italic; }
.tier-card .tier-divider { height: 1px; background: var(--border); margin: 28px 0; }
.tier-card ul { list-style: none; padding: 0; flex-grow: 1; }
.tier-card ul li {
  font-size: 14px; color: var(--charcoal); padding: 9px 0 9px 22px;
  position: relative; line-height: 1.55;
}
.tier-card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 600;
}
.tier-card .tier-cta {
  margin-top: 28px; display: block; text-align: center;
  padding: 14px 16px; border-radius: 0; font-weight: 600;
  letter-spacing: 1.8px; font-size: 11px; text-transform: uppercase;
  transition: all .25s; text-decoration: none;
  border: 1px solid var(--blue);
}

/* ---------- EVENTS — STYLE PRESSE ---------- */
.events-list { max-width: 1000px; margin: 0 auto; }
.event-row {
  display: grid; grid-template-columns: 88px 1fr auto;
  gap: 28px; padding: 28px;
  background: var(--white); border: 1px solid var(--border);
  margin-bottom: 16px; align-items: center; transition: all .3s;
}
.event-row:hover {
  border-color: var(--green-soft);
  background: var(--cream-soft);
}
.event-date {
  text-align: center; padding: 14px 8px;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.event-date .day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 600; line-height: 1;
}
.event-date .month {
  font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--green); margin-top: 6px; font-weight: 600;
}
.event-info h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px; font-weight: 600; color: var(--blue); margin-bottom: 8px;
}
.event-info .event-meta { font-size: 12.5px; color: var(--slate); display: flex; gap: 18px; flex-wrap: wrap; }
.event-info .event-meta span { display: inline-flex; align-items: center; gap: 4px; }
.event-info p { font-size: 13.5px; color: var(--charcoal); margin-top: 10px; line-height: 1.6; }
.event-cta {
  background: transparent; color: var(--blue); border: 1px solid var(--blue);
  padding: 11px 22px; border-radius: 0; font-weight: 600;
  cursor: pointer; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .25s;
}
.event-cta:hover { background: var(--blue); color: white; }
.event-cta.member-only { color: var(--green); border-color: var(--green); }
.event-cta.member-only:hover { background: var(--green); color: white; }

/* ---------- BOOKING SECTION ---------- */
.booking-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px; max-width: 1180px; margin: 0 auto;
}
.booking-option {
  background: var(--white); border: 1px solid var(--border);
  padding: 32px 26px; cursor: pointer; transition: all .35s;
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none;
}
.booking-option:hover {
  border-color: var(--green); transform: translateY(-3px);
  box-shadow: 0 28px 60px -20px rgba(21, 32, 91, 0.12);
}
.booking-option .opt-icon {
  width: 44px; height: 44px;
  background: transparent; color: var(--green);
  display: flex; align-items: center; justify-content: flex-start;
  font-size: 28px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border); padding-bottom: 14px;
  width: 100%;
}
.booking-option h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px; font-weight: 600; color: var(--blue); margin-bottom: 8px;
}
.booking-option p { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* ---------- CONTACT / FORMS ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: 1180px; margin: 0 auto;
}
.contact-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; color: var(--blue); margin-bottom: 16px; font-weight: 600;
}
.contact-info p { font-size: 15px; color: var(--charcoal); line-height: 1.75; margin-bottom: 16px; }
.contact-list { list-style: none; margin-top: 28px; }
.contact-list li {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li .ci-icon {
  width: 40px; height: 40px;
  background: transparent;
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  border: 1px solid var(--border);
}
.contact-list li .ci-text strong { display: block; color: var(--blue); margin-bottom: 4px; font-weight: 600; }
.contact-list li .ci-text span { font-size: 13px; color: var(--slate); }

.contact-form-wrap {
  background: var(--white); padding: 44px;
  border: 1px solid var(--border);
}
.fg { margin-bottom: 22px; }
.fg label {
  display: block; font-size: 10.5px; font-weight: 600; color: var(--blue);
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 8px;
}
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: 0;
  font-size: 14px; color: var(--charcoal);
  font-family: inherit; background: var(--cream-soft);
  transition: border-color .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none; border-color: var(--green); background: white;
}
.fg textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn-submit {
  width: 100%; background: var(--blue); color: white;
  border: 1px solid var(--blue); padding: 16px;
  font-size: 11px; font-weight: 600; cursor: pointer;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all .3s;
}
.btn-submit:hover { background: transparent; color: var(--blue); }

/* ---------- FOOTER CLAIR ---------- */
footer {
  background: var(--blue);
  color: rgba(255,255,255,.65);
  padding: 80px 5% 32px;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; padding-bottom: 50px;
}
.footer-brand img { height: 64px; margin-bottom: 18px; filter: brightness(1.3) contrast(0.9); }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-bottom: 16px; max-width: 360px; }
.footer-col h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px; font-weight: 600; color: var(--amber);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 13.5px; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 11.5px; color: rgba(255,255,255,.45);
}

/* ---------- BADGES ---------- */
.badge {
  display: inline-block; padding: 4px 10px; border-radius: 0;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  border: 1px solid;
}
.badge.green { background: var(--green-pale); color: var(--green); border-color: var(--green-soft); }
.badge.orange, .badge.amber { background: var(--orange-pale); color: var(--amber-d); border-color: var(--orange-soft); }
.badge.red, .badge.wine { background: transparent; color: var(--wine); border-color: var(--wine); }
.badge.navy, .badge.blue { background: var(--navy-pale); color: var(--blue); border-color: var(--navy-soft); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 60px 5% 80px; gap: 48px; }
  .hero-illustration { order: -1; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 88px; left: 0; right: 0;
    background: var(--cream); padding: 24px 5%; gap: 18px;
    border-top: 1px solid var(--border);
  }
  .cards-grid, .articles-grid, .tiers-grid { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
}

/* ---------- LOGIN PAGE ---------- */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  padding: 40px 5%;
  position: relative; overflow: hidden;
}
.auth-page::before {
  content: ''; position: absolute; right: -10%; top: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 65%);
}
.auth-page::after {
  content: ''; position: absolute; left: -10%; bottom: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange-pale) 0%, transparent 65%);
}
.auth-card {
  background: white; max-width: 500px; width: 100%;
  padding: 56px 48px; box-shadow: 0 30px 80px -20px rgba(21,32,91,.18);
  position: relative; z-index: 2;
  border-top: 2px solid var(--green);
}
.auth-card .auth-logo { text-align: center; margin-bottom: 32px; }
.auth-card .auth-logo img { height: 70px; margin: 0 auto; }
.auth-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; font-weight: 600; color: var(--blue);
  text-align: center; margin-bottom: 10px;
}
.auth-card p.auth-sub {
  text-align: center; color: var(--slate); font-size: 14px; margin-bottom: 32px;
}
.auth-card .auth-link {
  text-align: center; font-size: 13px; color: var(--slate); margin-top: 22px;
}
.auth-card .auth-link a { color: var(--amber); font-weight: 600; }

/* ---------- DASHBOARD ---------- */
.dashboard-layout {
  display: grid; grid-template-columns: 260px 1fr;
  min-height: 100vh; background: var(--cream);
}
.dashboard-sidebar {
  background: white;
  border-right: 1px solid var(--border);
  padding: 28px 0;
}
.dashboard-sidebar .sb-brand {
  padding: 0 28px 24px; border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.dashboard-sidebar .sb-brand img { height: 44px; }
.dashboard-sidebar nav ul { list-style: none; }
.dashboard-sidebar nav ul li a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 28px; color: var(--slate);
  font-size: 13.5px; transition: all .2s;
  border-left: 2px solid transparent;
}
.dashboard-sidebar nav ul li a:hover {
  color: var(--blue); background: var(--cream-soft);
}
.dashboard-sidebar nav ul li a.active {
  color: var(--green); border-left-color: var(--green);
  background: var(--green-pale); font-weight: 600;
}
.dashboard-sidebar nav ul li a .icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.dashboard-sidebar .sb-user {
  margin-top: auto; padding: 18px 28px;
  border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px;
}
.dashboard-sidebar .sb-user .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: white; font-size: 14px;
}
.dashboard-sidebar .sb-user .uname { color: var(--blue); font-size: 13px; font-weight: 600; }
.dashboard-sidebar .sb-user .urole {
  color: var(--green); font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
}
.dashboard-content { padding: 36px 44px; overflow-y: auto; }
.dashboard-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 32px;
}
.dashboard-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; color: var(--blue); font-weight: 600;
}
.dashboard-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 36px;
}
.stat-card {
  background: white; padding: 26px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--green);
}
.stat-card.green-accent { border-top-color: var(--green); }
.stat-card.red-accent { border-top-color: var(--wine); }
.stat-card .stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px; color: var(--blue); font-weight: 600; line-height: 1;
}
.stat-card .stat-label {
  font-size: 10.5px; color: var(--slate); text-transform: uppercase;
  letter-spacing: 1.8px; margin-top: 8px;
}
.dashboard-section {
  background: white; padding: 28px;
  margin-bottom: 24px; border: 1px solid var(--border);
}
.dashboard-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px; color: var(--blue); font-weight: 600; margin-bottom: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 14px 12px; background: var(--cream);
  font-size: 10.5px; color: var(--slate); text-transform: uppercase;
  letter-spacing: 1.8px; border-bottom: 1px solid var(--border); font-weight: 600;
}
.data-table td {
  padding: 16px 12px; font-size: 13.5px; color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 760px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   MOBILE OPTIMIZATIONS — ajustements ciblés pour < 900px et < 600px
   ===================================================================== */

/* Empêcher le scroll horizontal accidentel */
html, body { overflow-x: hidden; }
img, video, svg { max-width: 100%; height: auto; }

/* Améliorer les zones tactiles : minimum 44×44 px */
.nav-menu a,
.btn-primary,
.btn-ghost,
.btn-submit,
.tier-cta,
.event-cta,
.partner-cta a,
.pd-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tablette / mobile large */
@media (max-width: 900px) {
  /* Hero plus compact */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 5% 60px;
    gap: 36px;
    min-height: auto;
  }
  .hero-content { order: 2; }
  .hero-illustration {
    order: 1;
    margin-top: 0;
    margin-left: 0;
    justify-content: center;
  }
  .hero-illustration img {
    width: 100%;
    max-width: 460px;
    transform: none;
  }
  .hero h1 { font-size: clamp(30px, 7vw, 44px); }
  .hero p.hero-sub { font-size: 15.5px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-stats-full {
    gap: 18px 28px;
    margin-top: 30px;
    padding-top: 24px;
  }
  .hero-stats-full > div { min-width: 110px; flex: 0 1 calc(50% - 14px); }
  .hero-stats-full .stat-num { font-size: 28px; }
  .hero-stats-full .stat-label { font-size: 10.5px; }

  /* Navigation mobile : menu burger */
  nav.topnav { height: auto; min-height: 72px; padding: 12px 5%; flex-wrap: wrap; }
  .brand-logo img { height: 44px; }
  .hamburger, .nav-toggle {
    display: flex !important;
    background: transparent;
    border: 1px solid var(--border);
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
    background: var(--cream);
    border-top: 1px solid var(--border);
  }
  .nav-menu.open, .nav-menu.active {
    display: flex !important;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    width: 100%;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 14px;
  }
  .nav-menu .nav-cta {
    background: var(--blue);
    color: white !important;
    margin-top: 8px;
  }

  /* Sections génériques */
  section { padding: 60px 5%; }
  .s-head h2 { font-size: clamp(26px, 6vw, 34px); line-height: 1.2; }
  .s-head p { font-size: 14.5px; }

  /* Cards grids */
  .cards-grid { grid-template-columns: 1fr; gap: 24px; }
  .card { padding: 28px 22px; }
  .card h3 { font-size: 18px; }
  .card p, .card ul li { font-size: 14px; }

  /* Articles grid */
  .articles-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-card .article-photo { aspect-ratio: 16/9; }
  .article-body { padding: 22px; }
  .article-body h4 { font-size: 18px; line-height: 1.3; }

  /* Synthèse partners-note */
  .partners-note { padding: 32px 24px; }
  .partners-note p { font-size: 17px; line-height: 1.55; }

  /* Tiers grid (déjà gérés ailleurs, on assure cohérence) */
  .tier-card { padding: 32px 24px; }
  .tier-card .tier-price { font-size: 36px; }

  /* Événements */
  .event-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .event-cta { width: 100%; text-align: center; }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Formulaires */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  input, textarea, select { font-size: 16px; /* évite le zoom iOS */ }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 32px;
  }
  .footer-brand img { height: 52px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Page-hero (sous-pages) */
  .page-hero { padding: 60px 5% 40px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .page-hero-icon { opacity: 0.08; width: 70%; }

  /* Auth (login membres / admin) */
  .auth-layout { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .auth-form-wrap { padding: 50px 24px; }

  /* Partners cards */
  .partner-card { padding: 28px 22px; }
  .partner-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partner-card h3 { font-size: 22px; }
  .partner-cta { flex-direction: column; }
  .partner-cta a { width: 100%; }

  /* Tri-continental */
  .tc-grid { grid-template-columns: 1fr; }
  .tc-header h3 { font-size: 24px; }
  .tc-takeaway { padding: 22px 22px; }
  .tc-takeaway p { font-size: 14.5px; }

  /* Page partenaires */
  .partner-detail { padding: 50px 5%; }
  .pd-header h2 { font-size: 30px; }
  .pd-tagline { font-size: 15.5px; }
  .pd-branch-title { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pd-branch-title h3 { font-size: 24px; }
}

/* Mobile compact (téléphone vertical) */
@media (max-width: 600px) {
  .hero { padding: 30px 5% 50px; gap: 28px; }
  .hero-pill { font-size: 10px; letter-spacing: 2px; }
  .hero-illustration img { max-width: 320px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { padding: 14px 22px; font-size: 14px; }

  .hero-stats-full {
    flex-direction: column;
    gap: 14px;
    text-align: left;
  }
  .hero-stats-full > div { flex: 1 1 100%; min-width: 0; }
  .hero-stats-full .stat-num { font-size: 26px; }

  section { padding: 50px 5%; }

  .partners-note p { font-size: 16px; }
  .tc-flag { width: 56px; height: 56px; }
  .tc-flag span { font-size: 11.5px; }

  /* Évite le débordement des badges */
  .partner-badge { font-size: 9.5px; padding: 4px 8px; }

  /* Article card padding compact */
  .article-body { padding: 18px; }
  .article-body h4 { font-size: 16.5px; }
  .article-body p { font-size: 13.5px; }
}

/* Très petits écrans (≤ 380 px) */
@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .s-head h2 { font-size: 24px; }
  .partners-note p { font-size: 15px; }
  .pd-header h2 { font-size: 26px; }
}

/* Touch device : retire les effets hover qui parasitent les clics */
@media (hover: none) {
  .article-card:hover,
  .tier-card:hover,
  .card:hover,
  .booking-option:hover { transform: none; }
}

/* =====================================================================
   PAGE PARTENAIRES — détail complet (partenaires.html)
   ===================================================================== */
.toc-pill {
  display: inline-block;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
}
.toc-pill:hover {
  background: var(--cream-soft);
  transform: translateY(-1px);
}

.partner-detail {
  padding: 90px 5%;
}
.pd-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.pd-header {
  padding: 40px 0 36px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.pd-logo-large {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 14px;
}
.pd-logo-large img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pd-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 14px;
}
.pd-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.pd-tagline {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 820px;
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.pd-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pd-section h3,
.pd-section h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.pd-list {
  list-style: none;
  padding: 0;
}
.pd-list li {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.7;
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px solid var(--border-soft);
}
.pd-list li::before {
  content: '·';
  position: absolute;
  left: 2px;
  color: var(--amber);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}
.pd-list li strong { color: var(--blue); }
.pd-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--slate);
  font-style: italic;
  line-height: 1.65;
}
.pd-callout {
  margin-top: 18px;
  padding: 20px 22px;
  background: var(--cream-soft);
  border-left: 3px solid var(--amber);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
}
.pd-callout strong { color: var(--blue); }
.pd-branch {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.pd-branch-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pd-branch-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}
.pd-branch-title h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  color: var(--blue);
  font-weight: 600;
  margin: 0;
}
.pd-intro {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 880px;
}
.pd-formation {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 22px 20px;
  position: relative;
}
.pd-formation .pd-duration {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 10px;
}
.pd-formation h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}
.pd-formation p {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}
.pd-contact {
  margin-top: 16px;
  font-size: 14px;
  color: var(--slate);
}
.pd-contact a {
  color: var(--amber);
  font-weight: 600;
}
.pd-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pd-cta .btn-primary,
.pd-cta .btn-ghost {
  font-size: 14px;
  padding: 14px 28px;
}
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-grid-4 { grid-template-columns: 1fr 1fr; }
  .pd-header h2 { font-size: 34px; }
  .partner-detail { padding: 60px 5%; }
}
@media (max-width: 600px) {
  .pd-grid-4 { grid-template-columns: 1fr; }
}

/* =====================================================================
   FORMATIONS & PARTENAIRES (DOJO SATORI + ULYSSE-SAS)
   ===================================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.partner-card:first-child { border-top: 4px solid var(--blue); }
.partner-card:nth-child(2) { border-top: 4px solid var(--green); }

.partner-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.partner-logo-wrap {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.partner-logo-wrap.dojo {
  background: linear-gradient(135deg, var(--blue) 0%, #2a3578 100%);
  border-color: var(--blue);
  width: 130px;
  height: 130px;
}
.dojo-cpf-note {
  margin-top: 14px;
  margin-bottom: 28px;
  padding: 16px 18px;
  background: var(--cream-soft);
  border-left: 3px solid var(--blue);
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.65;
}
.dojo-cpf-note strong { color: var(--blue); }
.partner-logo-wrap.ulises,
.partner-logo-wrap.ulysse {
  background: var(--white);
  border-color: var(--green-soft);
}
.partner-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  color: white;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.15;
  text-transform: uppercase;
}
.partner-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.partner-badge {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--border);
  color: var(--charcoal);
  background: var(--cream-soft);
  width: fit-content;
}
.partner-badge.qualiopi {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.partner-badge.cpf {
  background: var(--cream);
  color: var(--blue);
  border-color: var(--navy-soft);
}
.partner-badge.historic {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.partner-badge.immo {
  background: var(--cream);
  color: var(--green);
  border-color: var(--green-soft);
}

.partner-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.partner-tagline {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}
.partner-body h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-soft);
}
.partner-body h4:first-child { margin-top: 0; }
.partner-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.partner-body ul li {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
  padding: 6px 0 6px 18px;
  position: relative;
}
.partner-body ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--amber);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.partner-body ul li strong { color: var(--blue); }

.partner-offer {
  margin-top: 28px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--cream-soft) 0%, #F4EBDA 100%);
  border-left: 3px solid var(--amber);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-offer .offer-tag {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}
.partner-offer strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--blue);
  font-weight: 600;
}
.partner-offer .offer-detail {
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-top: 4px;
}

.partner-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.partner-cta .btn-primary,
.partner-cta .btn-ghost {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 13px 18px;
  min-width: 180px;
}

.partners-note {
  max-width: 1100px;
  margin: 70px auto 0;
  padding: 56px 70px;
  background: var(--cream);
  border-left: 4px solid var(--blue);
  text-align: center;
}
.partners-note p {
  font-size: 22px;
  color: var(--charcoal);
  line-height: 1.6;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.partners-note p strong {
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 760px) {
  .partners-note { padding: 36px 28px; }
  .partners-note p { font-size: 18px; }
}

@media (max-width: 900px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { padding: 30px 24px; }
  .partner-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partner-logo-wrap { width: 90px; height: 90px; }
  .partner-logo-text { font-size: 15px; }
  .partner-cta { flex-direction: column; }
  .partner-cta .btn-primary,
  .partner-cta .btn-ghost { width: 100%; min-width: 0; }
  .partners-note { padding: 28px 24px; }
}

/* =====================================================================
   ICÔNES VIDES — masquer (après suppression des emojis)
   ===================================================================== */
.card-icon:empty { display: none; }
.icon:empty { display: none; margin: 0; padding: 0; }
.icon { display: inline-block; min-width: 0; }
/* dashboard sidebar : retirer le min-width réservé aux icônes */
.dashboard-sidebar nav ul li a .icon:empty { display: none; }
.dashboard-sidebar nav ul li a { padding-left: 18px; }

/* =====================================================================
   PAGE-HERO (sub-pages) + ICONO LATAM en filigrane
   ===================================================================== */
.page-hero {
  position: relative;
  background: var(--cream);
  padding: 120px 5% 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.page-hero .lede {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.65;
  max-width: 640px;
}
.page-hero-icon {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  max-width: 45vw;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
  filter: hue-rotate(0deg);
}

/* Watermark icono inside content sections */
.section-watermark-wrap {
  position: relative;
  overflow: hidden;
}
.section-watermark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  max-width: 38vw;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.section-watermark-left {
  position: absolute;
  left: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  max-width: 38vw;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* =====================================================================
   AUTH LAYOUT (membres / admin login)
   ===================================================================== */
.auth-layout {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--cream);
}
.auth-side {
  position: relative;
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream-d) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.auth-side-icon {
  position: absolute;
  width: 90%;
  max-width: 520px;
  opacity: 0.55;
  z-index: 1;
}
.auth-side-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 380px;
}
.auth-side-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.2;
}
.auth-side-content p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
}
.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: var(--white);
}
.auth-form {
  width: 100%;
  max-width: 420px;
}
.auth-form h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 8px;
}
.auth-form .auth-sub {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .auth-layout { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .auth-form-wrap { padding: 60px 30px; }
}

/* =====================================================================
   HERO ICONO accent on homepage
   ===================================================================== */
.hero-icono-accent {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  max-width: 40vw;
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(21, 32, 91, 0.12));
}
@media (max-width: 900px) {
  .hero-icono-accent { display: none; }
}
