/* ==========================================
   ORGANES - DESIGN SIMPLE & ÉPURÉ
========================================== */
:root {
    --bleu: #173F8A;
    --bleu-dark: #0F2D5E;
    --orange: #F39C12;
    --noir: #101828;
    --gris: #667085;
    --off: #F7F9FB;
    --border: #E4E7EC;
    --font-titres: 'Cabinet Grotesk', 'EB Garamond', sans-serif;
    --font-corps: 'EB Garamond', 'Georgia', serif;
}

.org-container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* ==========================================
   OUVERTURE
========================================== */
.org-hero {
    background: var(--off);
    text-align: center;
    padding: 110px 24px 90px;
    border-bottom: 1px solid var(--border);
}

.org-label {
    display: inline-block;
    font-family: var(--font-titres);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 22px;
}

.org-hero h1 {
    font-family: var(--font-titres);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--noir);
    margin-bottom: 22px;
}

.org-hero h1 span { color: var(--bleu); }

.org-subtitle {
    font-family: var(--font-corps);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gris);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================
   SECTIONS
========================================== */
.org-section { padding: 80px 0; background: #FFFFFF; }
.org-alt { background: var(--off); }

.org-head { text-align: center; margin-bottom: 55px; }

.org-head h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 10px;
}

.org-head h2 span { color: var(--bleu); }

.org-head p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
}

/* ==========================================
   GRILLE DES ORGANES
========================================== */
.org-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.org-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.org-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(23, 63, 138, 0.12);
    border-color: transparent;
}

/* En-tête de carte : logo + nom */
.org-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.org-logo {
    width: 64px;
    height: 64px;
    background: var(--off);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.org-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.org-card-head h3 {
    font-family: var(--font-titres);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--noir);
}

/* Président : portrait rectangle sobre */
.org-president {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--off);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 22px;
}

.org-president img {
    width: 70px;
    height: 92px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 6px 18px rgba(23, 63, 138, 0.18);
    flex-shrink: 0;
}

.org-president strong {
    display: block;
    font-family: var(--font-titres);
    font-size: 1rem;
    font-weight: 800;
    color: var(--bleu);
    margin-bottom: 4px;
}

.org-president span {
    font-family: var(--font-corps);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--orange);
}

/* Description */
.org-card p {
    font-family: var(--font-corps);
    font-size: 0.98rem;
    color: var(--gris);
    line-height: 1.8;
}

/* ==========================================
   CTA FINAL
========================================== */
.org-cta { text-align: center; }

.org-cta h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 12px;
}

.org-cta p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.org-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.org-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--bleu);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-titres);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.org-btn:hover {
    background: var(--bleu-dark);
    transform: translateY(-3px);
    gap: 14px;
}

.org-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: #FFFFFF;
    color: var(--bleu);
    border: 1px solid var(--border);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-titres);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.org-btn-ghost:hover {
    border-color: var(--bleu);
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 900px) {
    .org-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
    .org-hero { padding: 80px 20px 65px; }
    .org-section { padding: 60px 0; }
    .org-card { padding: 28px 22px; }
    .org-card-head h3 { font-size: 1.15rem; }
    .org-cta-buttons { flex-direction: column; }
    .org-btn, .org-btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .org-hero h1 { font-size: 1.9rem; }
    .org-subtitle { font-size: 1rem; }
    .org-head h2 { font-size: 1.5rem; }
    .org-president { padding: 12px; gap: 12px; }
    .org-president img { width: 60px; height: 80px; }
    .org-btn, .org-btn-ghost { padding: 13px 20px; font-size: 0.88rem; }
}