/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

:root {
    /* Orange / Ambre – couleurs signature CPS */
    --orange-800: #B8510A;
    --orange-700: #CC5E0A;
    --orange-600: #E8721A;
    --orange-500: #F58420;
    --orange-400: #FF9A35;
    --orange-100: #FDECD5;
    --orange-50:  #FEF6EC;
    /* Ambre / Doré */
    --amber-500: #FFC629;
    --amber-400: #FFD35A;
    --amber-100: #FFF3CC;
    --amber-50:  #FFFBF0;
    /* Magenta – accent fort, CTAs */
    --magenta-800: #8A0D47;
    --magenta-700: #A50F55;
    --magenta-600: #C21268;
    --magenta-500: #DC1782;
    --magenta-400: #E83D99;
    --magenta-100: #FBDAED;
    --magenta-50:  #FDF3F9;
    /* Teal – complémentaire (logo) */
    --teal-700: #007A78;
    --teal-600: #009E9A;
    --teal-500: #00B5B0;
    --teal-100: #CCEFEE;
    --teal-50:  #E8F7F7;
    /* Texte */
    --text-dark: #1A1F2E;
    --text-body: #374151;
    --text-muted: #6B7280;
    --white: #ffffff;
    --radius: 14px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
    --shadow-md: 0 4px 20px rgba(232,114,26,.15);
    --shadow-lg: 0 8px 36px rgba(220,23,130,.12);
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4 { margin: 0; color: var(--text-dark); }
p { margin: 0; }

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--white);
    color: var(--orange-600);
    border-color: var(--white);
    font-weight: 700;
}
.btn--primary:hover {
    background: var(--amber-50);
    border-color: var(--amber-50);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.65);
}
.btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
    transform: translateY(-1px);
}

.btn--white {
    background: var(--white);
    color: var(--magenta-600);
    border-color: var(--white);
    font-weight: 700;
}
.btn--white:hover {
    background: var(--magenta-50);
    transform: translateY(-1px);
}

.btn--magenta {
    background: var(--magenta-500);
    color: var(--white);
    border-color: var(--magenta-500);
}
.btn--magenta:hover {
    background: var(--magenta-700);
    border-color: var(--magenta-700);
    transform: translateY(-1px);
}

/* ── Section header ── */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-eyebrow {
    display: inline-block;
    background: var(--magenta-500);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* ── Navigation ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: var(--white);
    border-bottom: 1px solid rgba(245,132,32,.12);
    box-shadow: 0 2px 12px rgba(245,132,32,.08);
}

.site-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo { display: flex; align-items: center; }
.site-logo-img { height: 48px; width: auto; }

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 7px 14px;
    border-radius: 8px;
    transition: background 0.12s, color 0.12s;
}

.site-nav-links a:hover {
    background: var(--orange-50);
    color: var(--orange-600);
}

.site-nav-cta {
    background: var(--orange-500) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
}
.site-nav-cta:hover {
    background: var(--orange-700) !important;
}

/* ── Header Hero ── */
.header {
    background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 35%, var(--magenta-500) 100%);
  /*  background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 45%, var(--amber-500) 100%);*/
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,198,41,.25) 0%, transparent 65%);
    pointer-events: none;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 60px;
    position: relative;
}

.header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.95);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.25);
}

.header-title {
    font-size: 2.9rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.header-title em {
    font-style: normal;
    color: var(--amber-400);
}

.header-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.88);
    max-width: 500px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,.20));
    animation: header-float 6s ease-in-out infinite;
}

@keyframes header-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.header-wave {
    line-height: 0;
}
.header-wave svg { width: 100%; height: 60px; }

/* ── Services ── */
.services {
    background: var(--amber-50);
    padding: 96px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--orange-100);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
    opacity: 0;
    transition: opacity 0.2s;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 16px 0 8px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-icon--orange  { background: var(--orange-100);  color: var(--orange-600); }
.service-icon--amber   { background: var(--amber-100);   color: var(--orange-700); }
.service-icon--magenta { background: var(--magenta-100); color: var(--magenta-600); }
.service-icon--teal    { background: var(--teal-100);    color: var(--teal-600); }

/* legacy aliases */
.service-icon--teal   { background: var(--teal-100);    color: var(--teal-600); }
.service-icon--blue   { background: var(--magenta-100); color: var(--magenta-600); }
.service-icon--green  { background: var(--teal-100);    color: var(--teal-600); }

/* ── Valeurs ── */
.valeurs {
    background: var(--white);
    padding: 96px 0;
}

.valeurs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.valeur-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.valeur-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--orange-100);
    color: var(--orange-700);
}

.valeur-icon svg {
    width: 24px;
    height: 24px;
}

.valeur-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.valeur-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Chiffres clés (inline sur la home) ── */
.chiffres {
    background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 50%, var(--amber-500) 100%);
    padding: 64px 0;
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.chiffre-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.chiffre-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
}

.chiffre-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    max-width: 160px;
}

/* ── Map ── */
.map-section {
    background: var(--orange-50);
    padding: 96px 0;
}

.map-layout {
    /*
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;

     */
}

.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--orange-100);
}

.map-frame:first-child {
    display: block;
    width: 100%;
    height: 520px;
    border: none;
}

.map-credit {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(255,255,255,.92);
    color: var(--orange-600);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    transition: background 0.12s;
}

.map-credit:hover {
    background: var(--white);
}

.map-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-stat {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--orange-100);
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 4px solid var(--orange-500);
}

.map-stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange-600);
    line-height: 1;
    letter-spacing: -0.03em;
}

.map-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.map-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 4px;
    border-top: 1px solid var(--orange-100);
    padding-top: 16px;
    margin-top: 4px;
}

/* ── CTA member ── */
.cta-member {
    background: linear-gradient(135deg, var(--magenta-700) 0%, var(--magenta-500) 60%, var(--magenta-400) 100%);
    padding: 72px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-member::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,198,41,.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-member-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.cta-member h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-member p {
    font-size: 1rem;
    color: rgba(255,255,255,.82);
}

/* ── Footer ── */
.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,.7);
    padding-top: 64px;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-accent-bar {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
    border-radius: 2px;
    margin: 16px 0;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    transition: color 0.12s;
}

.footer-links a:hover {
    color: var(--amber-400);
}

.footer-contact p {
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 32px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,.35);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-contact-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,.5);
    transition: color 0.12s;
}

.footer-contact-link:hover {
    color: var(--amber-400);
}

/* ── Page header (inner pages) ── */
.page-header {
    background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 35%, var(--magenta-500) 100%);
   /* background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 55%, var(--amber-500) 100%); */
    padding: 64px 0 56px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,198,41,.2) 0%, transparent 60%);
    pointer-events: none;
}

.page-header-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.page-header-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.92);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 4px;
    border: 1px solid rgba(255,255,255,.25);
    width: fit-content;
}

.page-header-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
}

.page-header-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.82);
    max-width: 520px;
}

/* ── Contact page ── */
.contact-section {
    padding: 72px 0 88px;
    background: var(--orange-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 44px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--orange-100);
}

.contact-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.contact-flash {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-flash svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-flash--success {
    background: var(--teal-100);
    color: #064e2a;
    border: 1px solid var(--teal-500);
}

.contact-flash--success svg {
    color: var(--teal-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form ul li{color:var(--magenta-700)}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
}

.contact-field label span {
    color: var(--magenta-500);
    margin-left: 2px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 9px;
    font-size: 0.875rem;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.contact-field select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F58420' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(245,132,32,.14);
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.btn--teal {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
    align-self: flex-start;
}

.btn--teal:hover {
    background: var(--orange-700);
    border-color: var(--orange-700);
    transform: translateY(-1px);
}

.btn--teal svg {
    width: 16px;
    height: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--orange-100);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--orange-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange-600);
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-card h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-card a,
.contact-info-card p {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.contact-info-card a:hover {
    color: var(--orange-600);
    text-decoration: underline;
}

/* ── Mentions légales ── */
.mentions-section {
    background: var(--orange-50);
    padding: 72px 0 88px;
}

.mentions-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.mentions-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--orange-100);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mentions-info-card h2 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 8px;
}

.mentions-info-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.6;
}

.mentions-info-card a {
    color: var(--orange-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mentions-info-card a:hover {
    color: var(--orange-800);
}

.mentions-info-sub {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-top: 4px;
}

.mentions-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentions-info-icon svg {
    width: 20px;
    height: 20px;
}

.mentions-info-icon--orange  { background: var(--orange-100);  color: var(--orange-600); }
.mentions-info-icon--magenta { background: var(--magenta-100); color: var(--magenta-600); }
.mentions-info-icon--teal    { background: var(--teal-100);    color: var(--teal-600); }

.mentions-legal-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--orange-100);
    overflow: hidden;
}

.mentions-legal-block {
    padding: 32px 36px;
    border-bottom: 1px solid var(--orange-100);
}

.mentions-legal-block:last-child {
    border-bottom: none;
}

.mentions-legal-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 3px solid var(--orange-500);
}

.mentions-legal-block p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 820px;
}

.mentions-legal-block p + p {
    margin-top: 10px;
}

.mentions-legal-block a {
    color: var(--orange-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mentions-legal-block a:hover {
    color: var(--orange-800);
}

/* ── Charte RGPD / Policy ── */
.policy-intro {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--orange-100);
    border-left: 4px solid var(--orange-500);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-intro p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.policy-article-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--orange-500);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.counter {
    margin: auto;
    font-size: 12px;
    color: #666;
    text-align: right;
    width: 100%;
    font-style: italic;

    .count {
        font-weight: bold;
        color: #4CAF50;
    }

    .danger {
        color: #f44336;
    }
}

.policy-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-400);
}

.policy-info-box {
    margin-top: 16px;
    background: var(--orange-50);
    border-radius: 10px;
    padding: 16px 20px;
    border: 1px solid var(--orange-100);
}

.policy-info-box strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.policy-info-box p {
    font-size: 0.82rem !important;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Association ── */
.association {
    background: var(--white);
    padding: 96px 0;
}

.association-card {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    align-items: center;
    background: var(--magenta-50);
    border-radius: var(--radius);
    padding: 52px 56px;
    border: 1px solid var(--magenta-100);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    height: 500px;
}

.association-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
 /*   background: linear-gradient(180deg, var(--magenta-500), var(--magenta-400)); */
}

.association-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.association-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.association-desc + .association-desc {
    margin-top: 12px;
}

.association-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--magenta-600);
    background: var(--magenta-100);
    padding: 6px 14px;
    border-radius: 99px;
}

.association-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.association-logo {
    max-width: 300px;
    border-radius: var(--radius);
    width: 100%;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 60px;
    }

    .header-visual { display: none; }

    .header-title { font-size: 2.2rem; }

    .header-desc { margin-left: auto; margin-right: auto; }

    .header-actions { justify-content: center; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .valeurs-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .chiffres-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .association-card {
        grid-template-columns: 1fr;
        padding: 36px 32px;
        gap: 32px;
    }

    .association-visual {
        flex-direction: row;
        justify-content: center;
    }

    .mentions-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1 1 200px;
    }

    .map-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .map-stat {
        flex: 1 1 140px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .site-nav-links a:not(.site-nav-cta) { display: none; }

    .header-title { font-size: 1.9rem; }

    .services-grid { grid-template-columns: 1fr; }

    .chiffres-grid { grid-template-columns: 1fr; gap: 24px; }

    .contact-form-card { padding: 28px 20px; }

    .contact-form-row { grid-template-columns: 1fr; }

    .contact-info { flex-direction: column; }

    .mentions-info-grid { grid-template-columns: 1fr; }

    .mentions-legal-block { padding: 24px 20px; }

    .section-title { font-size: 1.6rem; }

    .cta-member-inner { flex-direction: column; text-align: center; }

    .site-footer-inner { grid-template-columns: 1fr; }

    .footer-brand { grid-column: auto; }
}
