/*
Theme Name: Creuset Togo
Theme URI: https://www.creusetogo.org
Author: Creuset Togo
Author URI: https://www.creusetogo.org
Description: Thème officiel de l'ONG Creuset Togo - Protection et promotion des droits des enfants vulnérables au Togo. Design moderne Hanken Grotesk + palette Vert/Navy.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creusetogo
Tags: ngo, charity, nonprofit, responsive, tailwindcss
*/

/* =====================================================
   CREUSET TOGO — THÈME OFFICIEL v1.0
   Design : Stitch / Adapté par Claude
   Polices : Hanken Grotesk + Source Sans 3
   Palette : Vert forêt #0f5238 · Or #F9A825 · Navy #091B27
   ===================================================== */

/* === VARIABLES ======================================= */
:root {
  --ct-primary:            #0f5238;
  --ct-primary-dark:       #2d6a4f;
  --ct-growth-green:       #5DBF31;
  --ct-hope-gold:          #F9A825;
  --ct-gold-hover:         #ffb957;
  --ct-deep-navy:          #091B27;
  --ct-soft-mint:          #F0F7EE;
  --ct-surface:            #f6faff;
  --ct-surface-low:        #ebf5ff;
  --ct-on-surface:         #0c1d29;
  --ct-on-surface-variant: #404943;
  --ct-outline:            #707973;
  --ct-outline-variant:    #bfc9c1;
  --ct-surface-variant:    #d3e5f6;
  --ct-error:              #ba1a1a;
  --ct-error-container:    #ffdad6;
  --ct-on-error-container: #93000a;

  --ct-shadow-sm:  0 4px 24px rgba(45,106,79,0.08);
  --ct-shadow-md:  0 10px 40px -10px rgba(45,106,79,0.12);
  --ct-shadow-lg:  0 20px 50px -15px rgba(45,106,79,0.18);

  --ct-radius-sm:  8px;
  --ct-radius-md:  12px;
  --ct-radius-lg:  16px;
  --ct-radius-xl:  24px;
  --ct-radius-full:9999px;

  --ct-font-display: 'Hanken Grotesk', sans-serif;
  --ct-font-body:    'Source Sans 3', sans-serif;

  --ct-max-width: 1200px;
  --ct-gutter:    24px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ct-font-body);
  background-color: var(--ct-surface);
  color: var(--ct-on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY ====================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ct-font-display);
  color: var(--ct-primary);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.7; color: var(--ct-on-surface-variant); }

/* === LAYOUT HELPERS ================================== */
.ct-container {
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding-inline: var(--ct-gutter);
  width: 100%;
}
.ct-section { padding-block: 80px; }
.ct-section-sm { padding-block: 48px; }
.ct-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ct-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ct-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) {
  .ct-grid-2, .ct-grid-3, .ct-grid-4 { grid-template-columns: 1fr; }
}

/* === MATERIAL SYMBOLS ================================ */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}
.material-symbols-outlined.filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* === BUTTONS ========================================= */
.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ct-font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: var(--ct-radius-full);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.ct-btn-primary {
  background: var(--ct-primary);
  color: #fff;
}
.ct-btn-primary:hover { background: var(--ct-primary-dark); }

.ct-btn-gold {
  background: var(--ct-hope-gold);
  color: #002114;
  box-shadow: 0 4px 12px rgba(249,168,37,0.35);
}
.ct-btn-gold:hover { background: var(--ct-gold-hover); }

.ct-btn-outline {
  background: transparent;
  color: var(--ct-primary);
  border: 2px solid var(--ct-primary);
}
.ct-btn-outline:hover { background: rgba(15,82,56,0.05); }

.ct-btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.ct-btn-ghost:hover { background: rgba(255,255,255,0.25); }

.ct-btn-green {
  background: var(--ct-growth-green);
  color: #fff;
}
.ct-btn-green:hover { background: #7ade4d; }

/* === CARDS =========================================== */
.ct-card {
  background: #fff;
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  box-shadow: var(--ct-shadow-sm);
  border: 1px solid rgba(191,201,193,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
}

/* === BADGES ========================================== */
.ct-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--ct-radius-full);
  font-family: var(--ct-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ct-badge-primary { background: var(--ct-surface-variant); color: var(--ct-primary); }
.ct-badge-error   { background: var(--ct-error-container); color: var(--ct-on-error-container); }
.ct-badge-gold    { background: var(--ct-hope-gold); color: #002114; }
.ct-badge-green   { background: rgba(93,191,49,0.15); color: #1b5200; }
.ct-badge-orange  { background: #fcab28; color: #694300; }

/* === PROGRESS BAR ==================================== */
.ct-progress {
  height: 6px;
  background: #e5e7eb;
  border-radius: 99px;
  overflow: hidden;
}
.ct-progress-fill {
  height: 100%;
  background: var(--ct-growth-green);
  border-radius: 99px;
}

/* === FORM ELEMENTS =================================== */
.ct-input {
  width: 100%;
  border: 2px solid rgba(191,201,193,0.6);
  border-radius: var(--ct-radius-md);
  padding: 12px 16px;
  font-family: var(--ct-font-body);
  font-size: 15px;
  background: #fff;
  color: var(--ct-on-surface);
  transition: border-color 0.2s ease;
  outline: none;
}
.ct-input:focus { border-color: var(--ct-primary); }
.ct-input::placeholder { color: var(--ct-outline); }

/* === NAVBAR ========================================== */
#ct-navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(191,201,193,0.25);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.ct-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding-inline: 32px;
  gap: 24px;
}

/* ── Logo ─────────────────────────────────────── */
.ct-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ct-font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ct-on-surface);
  text-decoration: none;
  flex-shrink: 0;
}
.ct-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(15,82,56,0.12);
}
/* Quand WordPress génère le logo custom, forcer la taille */
.ct-logo .custom-logo {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

/* ── Liens desktop ────────────────────────────── */
.ct-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

/* Les <li> générés par wp_nav_menu */
.ct-nav-links .ct-nav-item { list-style: none; }

.ct-nav-links .ct-nav-link,
.ct-nav-links a {
  font-family: var(--ct-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ct-on-surface);
  padding: 8px 16px;
  border-radius: var(--ct-radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}
.ct-nav-links .ct-nav-link:hover,
.ct-nav-links a:hover,
.ct-nav-links .ct-nav-link.current,
.ct-nav-links .current-menu-item > a {
  color: var(--ct-primary);
  background: var(--ct-soft-mint);
}

/* ── Boutons CTA ──────────────────────────────── */
.ct-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Bouton outline "Agir avec Nous" */
.ct-nav-actions .ct-btn-outline {
  font-family: var(--ct-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ct-primary);
  border: 1.5px solid var(--ct-primary);
  border-radius: var(--ct-radius-full);
  padding: 10px 24px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.ct-nav-actions .ct-btn-outline:hover {
  background: rgba(15,82,56,0.06);
}

/* Bouton or "Faire un don" */
.ct-nav-actions .ct-btn-gold {
  font-family: var(--ct-font-display);
  font-size: 14px;
  font-weight: 700;
  color: #1a0a00;
  background: #F9A825;
  border-radius: var(--ct-radius-full);
  padding: 10px 24px;
  border: none;
  box-shadow: 0 2px 8px rgba(249,168,37,0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.ct-nav-actions .ct-btn-gold:hover {
  background: #ffb830;
  box-shadow: 0 5px 14px rgba(249,168,37,0.45);
}

/* ── Hamburger mobile ─────────────────────────── */
.ct-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ct-primary);
  padding: 8px;
  cursor: pointer;
  border-radius: var(--ct-radius-sm);
  transition: background 0.2s;
}
.ct-hamburger:hover { background: var(--ct-soft-mint); }

/* ── Menu mobile ──────────────────────────────── */
.ct-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(191,201,193,0.25);
  padding: 16px 24px 24px;
}
.ct-mobile-menu.open { display: block; }

.ct-mobile-menu li { list-style: none; }
.ct-mobile-menu li a {
  display: block;
  font-family: var(--ct-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ct-on-surface);
  padding: 12px 0;
  border-bottom: 1px solid rgba(191,201,193,0.18);
  transition: color 0.2s;
  text-decoration: none;
}
.ct-mobile-menu li:last-child a { border-bottom: none; }
.ct-mobile-menu li a:hover { color: var(--ct-primary); }

.ct-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.ct-mobile-actions .ct-btn {
  text-align: center;
  justify-content: center;
  width: 100%;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .ct-nav-links .ct-nav-link,
  .ct-nav-links a { font-size: 14px; padding: 8px 10px; }
}

@media (max-width: 860px) {
  .ct-nav-links  { display: none; }
  .ct-nav-actions { display: none; }
  .ct-hamburger  { display: block; }
  .ct-navbar-inner { padding-inline: 20px; height: 68px; }
}

@media (max-width: 480px) {
  .ct-logo { font-size: 17px; }
  .ct-logo img { width: 40px; height: 40px; }
}

/* === HERO ============================================ */
.ct-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,27,39,0.85) 0%, rgba(9,27,39,0.5) 50%, transparent 100%);
}
.ct-hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding: 64px var(--ct-gutter);
  width: 100%;
}
.ct-hero-text { max-width: 600px; color: #fff; }
.ct-hero-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--ct-radius-full);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  font-family: var(--ct-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.ct-hero-title {
  font-family: var(--ct-font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ct-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.87);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.ct-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* === STATS =========================================== */
.ct-stats {
  background: var(--ct-soft-mint);
  padding-block: 48px;
}
.ct-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding-inline: var(--ct-gutter);
  border-left: none;
}
.ct-stat-item {
  text-align: center;
  padding: 16px;
  border-left: 1px solid rgba(191,201,193,0.4);
}
.ct-stat-item:first-child { border-left: none; }
.ct-stat-number {
  font-family: var(--ct-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ct-growth-green);
  line-height: 1;
  margin-bottom: 6px;
}
.ct-stat-label {
  font-family: var(--ct-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ct-on-surface-variant);
}
@media (max-width: 768px) {
  .ct-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-stat-item { border-left: none; border-top: 1px solid rgba(191,201,193,0.4); }
  .ct-stat-item:nth-child(1), .ct-stat-item:nth-child(2) { border-top: none; }
}

/* === CAUSES BENTO GRID =============================== */
.ct-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
}
.ct-bento-main   { grid-column: span 8; }
.ct-bento-side   { grid-column: span 4; }
.ct-bento-wide   { grid-column: span 7; }
.ct-bento-narrow { grid-column: span 5; }
@media (max-width: 960px) {
  .ct-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .ct-bento > * { grid-column: span 1; min-height: 280px; }
}
.ct-bento-card {
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--ct-shadow-md);
  transition: box-shadow 0.3s ease;
}
.ct-bento-card:hover { box-shadow: var(--ct-shadow-lg); }
.ct-bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.ct-bento-card:hover img { transform: scale(1.05); }

/* === CAUSE CARDS ===================================== */
.ct-cause-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .ct-cause-grid { grid-template-columns: 1fr; } }

.ct-cause-card {
  background: #fff;
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  box-shadow: var(--ct-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-cause-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
}
.ct-cause-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.ct-cause-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ct-cause-card:hover .ct-cause-img img { transform: scale(1.05); }
.ct-cause-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ct-cause-title {
  font-family: var(--ct-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ct-on-surface);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.ct-cause-card:hover .ct-cause-title { color: var(--ct-primary); }
.ct-cause-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-family: var(--ct-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ct-primary);
}
.ct-cause-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* === SECTION TITRE =================================== */
.ct-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.ct-section-title h2 {
  font-family: var(--ct-font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ct-primary);
  margin-bottom: 12px;
}
.ct-section-title p {
  max-width: 640px;
  margin-inline: auto;
  color: var(--ct-on-surface-variant);
  font-size: 1rem;
}

/* === COMMENT AIDER ==================================== */
.ct-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .ct-help-grid { grid-template-columns: 1fr; } }

.ct-help-card {
  background: #fff;
  border-radius: var(--ct-radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--ct-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
}
.ct-help-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

/* === FORMULAIRE DON ================================== */
.ct-donate-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) { .ct-donate-section { grid-template-columns: 1fr; } }

.ct-donate-form {
  background: #fff;
  border-radius: var(--ct-radius-xl);
  padding: 32px;
  box-shadow: var(--ct-shadow-md);
  border: 1px solid rgba(191,201,193,0.2);
}
.ct-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.ct-amount-btn {
  border: 2px solid rgba(191,201,193,0.6);
  border-radius: var(--ct-radius-md);
  padding: 12px 8px;
  font-family: var(--ct-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ct-on-surface-variant);
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ct-amount-btn:hover, .ct-amount-btn.active {
  border-color: var(--ct-primary);
  color: var(--ct-primary);
  background: var(--ct-soft-mint);
}
.ct-donate-type {
  display: flex;
  border: 1px solid var(--ct-outline-variant);
  border-radius: var(--ct-radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.ct-donate-type button {
  flex: 1;
  padding: 10px;
  font-family: var(--ct-font-display);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}
.ct-donate-type button.active {
  background: var(--ct-soft-mint);
  color: var(--ct-primary);
}
.ct-donate-type button:not(.active) {
  background: #fff;
  color: var(--ct-on-surface-variant);
}

/* === BLOG CARDS ====================================== */
.ct-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .ct-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ct-blog-grid { grid-template-columns: 1fr; } }

.ct-blog-card {
  background: #fff;
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  box-shadow: var(--ct-shadow-sm);
  border: 1px solid rgba(191,201,193,0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
}
.ct-blog-img {
  height: 180px;
  overflow: hidden;
}
.ct-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ct-blog-card:hover .ct-blog-img img { transform: scale(1.05); }
.ct-blog-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ct-blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* === TÉMOIGNAGES ===================================== */
.ct-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .ct-testimonials-grid { grid-template-columns: 1fr; } }

.ct-testimonial {
  background: var(--ct-soft-mint);
  border-radius: var(--ct-radius-lg);
  padding: 28px;
  position: relative;
}
.ct-testimonial-quote {
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(93,191,49,0.25);
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}
.ct-testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ct-on-surface-variant);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ct-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ct-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.ct-testimonial-name {
  font-family: var(--ct-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ct-primary);
}
.ct-testimonial-role {
  font-size: 12px;
  color: var(--ct-on-surface-variant);
}

/* === ÉQUIPE ========================================== */
.ct-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .ct-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ct-team-grid { grid-template-columns: 1fr; } }

.ct-team-card {
  background: #fff;
  border-radius: var(--ct-radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--ct-shadow-sm);
  border: 1px solid rgba(191,201,193,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
}
.ct-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ct-soft-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 16px;
  font-size: 28px;
  color: var(--ct-primary);
}
.ct-team-name {
  font-family: var(--ct-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ct-deep-navy);
  margin-bottom: 6px;
}
.ct-team-role {
  font-size: 13px;
  color: var(--ct-on-surface-variant);
}

/* === CTA BANNER ====================================== */
.ct-cta-banner {
  background: var(--ct-primary);
  border-radius: var(--ct-radius-xl);
  padding: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ct-cta-banner h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.ct-cta-banner p { color: rgba(255,255,255,0.8); max-width: 500px; }
.ct-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* === FOOTER ========================================== */
#ct-footer {
  background: var(--ct-deep-navy);
  color: rgba(211,229,246,0.8);
  padding: 64px 0 32px;
}
.ct-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding-inline: var(--ct-gutter);
  margin-bottom: 48px;
}
@media (max-width: 960px) {
  .ct-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 540px) {
  .ct-footer-grid { grid-template-columns: 1fr; }
}

.ct-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--ct-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #F0F7EE;
}
.ct-footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.ct-footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.ct-footer-contact { font-size: 14px; line-height: 2; }

.ct-footer-title {
  font-family: var(--ct-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F0F7EE;
  margin-bottom: 16px;
}
.ct-footer-links { display: flex; flex-direction: column; gap: 10px; }
.ct-footer-links a {
  font-size: 14px;
  color: rgba(211,229,246,0.7);
  transition: color 0.2s;
  text-decoration-color: var(--ct-growth-green);
  text-underline-offset: 4px;
}
.ct-footer-links a:hover { color: #F0F7EE; text-decoration: underline; }

.ct-footer-newsletter { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ct-footer-newsletter input {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(211,229,246,0.15);
  color: #F0F7EE;
  border-radius: var(--ct-radius-md);
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.ct-footer-newsletter input::placeholder { color: rgba(211,229,246,0.4); }
.ct-footer-newsletter input:focus { border-color: var(--ct-growth-green); }

.ct-social-links { display: flex; gap: 10px; }
.ct-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(211,229,246,0.8);
  transition: all 0.2s ease;
}
.ct-social-btn:hover { background: var(--ct-growth-green); color: #fff; }
.ct-social-btn svg { width: 16px; height: 16px; }

.ct-footer-bottom {
  border-top: 1px solid rgba(211,229,246,0.12);
  padding-top: 24px;
  text-align: center;
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding-inline: var(--ct-gutter);
}
.ct-footer-bottom p {
  font-size: 12px;
  color: rgba(211,229,246,0.4);
}

/* === SECTION À PROPOS ================================ */
.ct-about-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
  padding-block: 80px;
}
@media (max-width: 860px) { .ct-about-hero { grid-template-columns: 1fr; } }

.ct-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.ct-value-card {
  background: #fff;
  border-radius: var(--ct-radius-sm);
  padding: 16px;
  box-shadow: var(--ct-shadow-sm);
  border: 1px solid rgba(191,201,193,0.2);
}

/* === PAGE DON ======================================== */
.ct-donate-hero {
  background: var(--ct-soft-mint);
  padding: 64px var(--ct-gutter) 48px;
  text-align: center;
}
.ct-donate-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding: 64px var(--ct-gutter);
}
@media (max-width: 900px) {
  .ct-donate-layout { grid-template-columns: 1fr; }
}

/* === PAGINATION ====================================== */
.ct-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-block: 48px;
}
.ct-pagination a, .ct-pagination span {
  width: 40px;
  height: 40px;
  border-radius: var(--ct-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ct-font-display);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(191,201,193,0.5);
  transition: all 0.2s ease;
}
.ct-pagination a:hover, .ct-pagination .current {
  background: var(--ct-primary);
  color: #fff;
  border-color: var(--ct-primary);
}

/* === CONTENT AREA (articles, pages) ================= */
.ct-content-area {
  max-width: 820px;
  margin-inline: auto;
  padding: 64px var(--ct-gutter);
}
.ct-content-area p { margin-bottom: 20px; }
.ct-content-area h2 { margin: 40px 0 16px; }
.ct-content-area h3 { margin: 32px 0 12px; }
.ct-content-area ul, .ct-content-area ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}
.ct-content-area ul li, .ct-content-area ol li {
  margin-bottom: 8px;
  color: var(--ct-on-surface-variant);
}

/* === UTILITAIRES ===================================== */
.ct-bg-mint  { background: var(--ct-soft-mint); }
.ct-bg-navy  { background: var(--ct-deep-navy); }
.ct-bg-white { background: #fff; }
.ct-text-center { text-align: center; }
.ct-mt-auto { margin-top: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
