/* =====================================================================
   Brisons le Secret — feuille de style principale
   Design : moderne, dégradés, cartes arrondies, palette rouge/anthracite,
   typographie Inter. Accessible (contrastes AA), responsive mobile-first.
   ===================================================================== */

:root {
    /* Palette */
    --red-50:  #fef2f2;
    --red-100: #fee2e2;
    --red-500: #ef4444;
    --red-600: #d90429;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --blue-500:#3b82f6;
    --blue-600:#2563eb;
    --ink:     #0b1220;
    --gray-900:#111827;
    --gray-800:#1f2937;
    --gray-700:#374151;
    --gray-600:#4b5563;
    --gray-500:#6b7280;
    --gray-400:#9ca3af;
    --gray-300:#d1d5db;
    --gray-200:#e5e7eb;
    --gray-100:#f3f4f6;
    --gray-50: #f9fafb;
    --white:   #ffffff;
    --green:   #16a34a;
    --amber:   #f59e0b;

    /* Sémantique */
    --bg:        #ffffff;
    --bg-soft:   #f9fafb;
    --text:      #1f2937;
    --text-soft: #4b5563;
    --heading:   #0b1220;
    --primary:   #d90429;
    --primary-d: #b91c1c;
    --accent:    #2563eb;
    --border:    #e5e7eb;

    --radius:    16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.10);
    --shadow:    0 8px 24px rgba(16,24,40,.10);
    --shadow-lg: 0 24px 60px rgba(16,24,40,.18);
    --container: 1140px;
    --ease:      cubic-bezier(.22,.61,.36,1);
    --grad-red:  linear-gradient(135deg, #ef4444 0%, #d90429 60%, #b91c1c 100%);
    --grad-dark: radial-gradient(1200px 500px at 15% -10%, rgba(217,4,41,.28), transparent 60%),
                 radial-gradient(900px 500px at 95% 0%, rgba(37,99,235,.22), transparent 55%),
                 linear-gradient(160deg, #0b1220 0%, #111827 55%, #1f2937 100%);
}

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

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

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.visually-hidden, .skip-link:not(:focus) {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: 12px; top: 12px; z-index: 200;
    background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600;
}

/* Accessibilité focus */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid rgba(37,99,235,.55); outline-offset: 2px; border-radius: 6px;
}

/* ============================ Boutons ============================ */
.button {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
    padding: 14px 24px; border-radius: 999px; border: 1.5px solid var(--gray-300);
    background: #fff; color: var(--heading); transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, border-color .18s;
    text-decoration: none; box-shadow: var(--shadow-sm);
}
.button:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.button.primary { background: var(--grad-red); border-color: transparent; color: #fff; box-shadow: 0 10px 24px rgba(217,4,41,.32); }
.button.primary:hover { box-shadow: 0 16px 34px rgba(217,4,41,.42); }
.button.ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; box-shadow: none; }
.button.ghost:hover { background: rgba(255,255,255,.12); }
.button.small { padding: 9px 16px; font-size: .92rem; }

/* ============================ Header ============================ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--heading); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; flex: none;
    background: var(--grad-red); border-radius: 13px; box-shadow: 0 6px 16px rgba(217,4,41,.3); }
.brand-mark svg { width: 30px; height: 30px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.16rem; font-weight: 800; letter-spacing: -.02em; color: var(--heading); }
.brand-text small { font-size: .72rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
    color: var(--gray-700); font-weight: 600; font-size: .96rem; padding: 9px 13px; border-radius: 9px;
    transition: color .15s, background .15s;
}
.site-nav a:hover { color: var(--primary); background: var(--red-50); text-decoration: none; }
.site-nav a.active { color: var(--primary); }
.site-nav a.cta {
    background: var(--grad-red); color: #fff; padding: 11px 20px; border-radius: 999px;
    box-shadow: 0 8px 18px rgba(217,4,41,.32); margin-left: 6px;
}
.site-nav a.cta:hover { background: var(--grad-red); filter: brightness(1.05); transform: translateY(-1px); }

.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--border);
    background: #fff; border-radius: 11px; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--heading); margin: 4px auto; border-radius: 2px; transition: .2s; }

/* ============================ Bandeau urgence ============================ */
.emergency-strip {
    background: linear-gradient(90deg, #b91c1c, #d90429);
    color: #fff; font-size: .95rem; text-align: center; padding: 10px 16px; border-radius: 12px;
    margin: 18px 0 4px; box-shadow: var(--shadow-sm);
}
.emergency-strip strong { color: #fff; }

/* ============================ Main / sections ============================ */
.site-main { display: block; }
.site-main > .container { padding-top: 8px; padding-bottom: 64px; }
section { margin: 56px 0; }
.section-intro { color: var(--text-soft); max-width: 720px; font-size: 1.06rem; }

/* ============================ Hero ============================ */
.hero {
    position: relative; margin: 22px 0 40px; padding: clamp(40px, 6vw, 76px) clamp(24px, 5vw, 60px);
    background: var(--grad-dark); border-radius: var(--radius-lg); color: #e5e7eb;
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 22px 22px; opacity: .5;
}
.hero > * { position: relative; z-index: 1; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .08em; color: #fecaca;
    background: rgba(217,4,41,.18); border: 1px solid rgba(239,68,68,.35);
    padding: 7px 14px; border-radius: 999px; margin: 0 0 18px;
}
.hero-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red-500); box-shadow: 0 0 0 4px rgba(239,68,68,.25); }
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: .35em; }
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #cbd5e1; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 8px; }
.hero-stats {
    list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 14px;
    grid-template-columns: repeat(3, minmax(0,1fr));
}
.hero-stats li {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 16px 18px; backdrop-filter: blur(4px);
}
.hero-stats strong { display: block; color: #fff; font-size: 1.05rem; }
.hero-stats span { color: #94a3b8; font-size: .9rem; }

.lead { font-size: 1.15rem; color: var(--text-soft); }

/* ============================ Marquee (partenaires / repères) ============================ */
.ticker { margin: 40px 0; border-block: 1px solid var(--border); background: var(--bg-soft); border-radius: var(--radius); padding: 18px 0; overflow: hidden; }
.ticker-title { text-align: center; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gray-500); font-weight: 700; margin-bottom: 12px; }
.ticker-track { display: flex; gap: 46px; width: max-content; animation: ticker 32s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-600); font-weight: 700; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================ Piliers ============================ */
.pillars { text-align: center; }
.pillars .section-intro { margin-inline: auto; }
.pillar-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin-top: 38px; text-align: left; }
.pillar {
    position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 34px 28px 30px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
    overflow: hidden;
}
.pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-red); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-num {
    display: inline-grid; place-items: center; width: 54px; height: 54px; margin-bottom: 16px;
    font-weight: 800; font-size: 1.15rem; color: var(--primary);
    background: var(--red-50); border-radius: 14px;
}
.pillar h3 { margin-bottom: .4em; }
.pillar p { color: var(--text-soft); margin: 0; }

/* ============================ Bloc citation ============================ */
.quote-block {
    background: var(--grad-dark); color: #e5e7eb; border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 64px); text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.quote-block::before { content: "\201C"; position: absolute; top: -10px; left: 28px; font-size: 140px; color: rgba(239,68,68,.28); font-family: Georgia, serif; line-height: 1; }
.quote-block blockquote { position: relative; margin: 0; font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 700; color: #fff; max-width: 24ch; margin-inline: auto; line-height: 1.35; letter-spacing: -.01em; }
.quote-block cite { display: block; margin-top: 20px; font-style: normal; color: #fca5a5; font-weight: 700; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }

/* ============================ Callout / reassure ============================ */
.callout {
    background: var(--red-50); border: 1px solid var(--red-100); border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px); text-align: center;
}
.callout h2 { color: var(--primary-d); }
.callout p { max-width: 66ch; margin-inline: auto; color: var(--gray-700); }
.callout-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.reassure { background: linear-gradient(135deg, #fff7f7, #fef2f2); }

/* ============================ Cartes "actions" ============================ */
.cards { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    display: flex; flex-direction: column; gap: 8px;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .card-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.6rem; background: var(--red-50); margin-bottom: 6px; }
.card h3 { margin: 0; }
.card p { color: var(--text-soft); margin: 0; }
.card .button { margin-top: auto; align-self: flex-start; }

/* ============================ Valeurs ============================ */
.value-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.value-list li { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: var(--shadow-sm); }
.value-cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); margin-top: 30px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }

/* ============================ Section urgence (pleine largeur) ============================ */
.cta-band {
    background: var(--grad-red); color: #fff; border-radius: var(--radius-lg);
    padding: clamp(34px, 5vw, 60px); text-align: center; box-shadow: 0 20px 50px rgba(217,4,41,.3);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe4e6; max-width: 60ch; margin-inline: auto; }
.num-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 30px; }
.num-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px;
    box-shadow: var(--shadow-sm); text-align: left; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.num-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.num-card .num { display: block; font-size: 1.9rem; font-weight: 800; color: var(--primary); letter-spacing: -.02em; }
.num-card strong { display: block; color: var(--heading); margin-top: 2px; }
.num-card span { color: var(--text-soft); font-size: .92rem; }
.cta-band .num-grid .num-card { text-align: center; }

/* ============================ Actualités ============================ */
.home-news-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.home-news-all { font-weight: 700; }
.news-teasers { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); margin-top: 26px; }
.news-teaser {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease); color: inherit;
}
.news-teaser:hover { transform: translateY(-5px); box-shadow: var(--shadow); text-decoration: none; }
.news-teaser-img { display: block; aspect-ratio: 16/9; background: var(--gray-100); overflow: hidden; }
.news-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.news-teaser-body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 24px; }
.news-teaser-date { font-size: .8rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.news-teaser-title { font-weight: 800; color: var(--heading); font-size: 1.1rem; line-height: 1.3; }
.news-teaser-excerpt { color: var(--text-soft); font-size: .96rem; }

/* Liste actualités (page dédiée) */
.news-list { display: grid; gap: 26px; margin-top: 24px; }
.news-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.news-image { aspect-ratio: 16/7; background: var(--gray-100); overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; }
.news-video { position: relative; aspect-ratio: 16/9; }
.news-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.news-body { padding: 26px 28px 30px; }
.news-date { font-size: .82rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.news-title { margin: 6px 0 10px; }
.news-link { font-weight: 700; }

/* ============================ Page générique / éditorial ============================ */
.page-head { margin: 26px 0 10px; }
.page-head .hero-kicker { color: var(--primary); background: var(--red-50); border-color: var(--red-100); }
.page-head h1 { color: var(--heading); }
.page { max-width: 820px; }
.page h2 { margin-top: 1.8em; }
.page ul, .page ol { padding-left: 1.3em; }
.page li { margin: .4em 0; }
.two-col { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: start; }

/* Listes "à faire / à ne pas faire" */
.ticks, .crosses { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ticks li, .crosses li { position: relative; padding-left: 34px; }
.ticks li::before, .crosses li::before { position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800; color: #fff; }
.ticks li::before { content: "\2713"; background: var(--green); }
.crosses li::before { content: "\2715"; background: var(--primary); }
.col-do, .col-dont { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.col-do { border-top: 4px solid var(--green); }
.col-dont { border-top: 4px solid var(--primary); }

/* Timeline / étapes */
.steps, .timeline { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 4px; }
.timeline li, .tl-body { position: relative; padding: 0 0 26px 34px; border-left: 2px solid var(--border); }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--red-50); }
.tl-date { font-weight: 700; color: var(--primary); }
.steps li { counter-increment: step; position: relative; padding: 4px 0 22px 52px; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--grad-red); color: #fff; display: grid; place-items: center; font-weight: 800; }
.steps { counter-reset: step; }

/* Fiche / deflist */
.deflist { display: grid; grid-template-columns: minmax(140px, 220px) 1fr; gap: 4px 20px; margin: 0; }
.deflist dt { font-weight: 700; color: var(--heading); padding: 10px 0; border-bottom: 1px solid var(--border); }
.deflist dd { margin: 0; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-soft); }
.mono { font-family: 'JetBrains Mono', ui-monospace, 'Courier New', monospace; font-size: .92em; }
.idcard { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 30px; box-shadow: var(--shadow-sm); }

/* FAQ */
.faq { display: grid; gap: 14px; margin-top: 20px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.faq-item h3 { margin: 0 0 .4em; font-size: 1.1rem; }
.faq-item p { margin: 0; color: var(--text-soft); }

/* ============================ Formulaires ============================ */
.form, .contact-form, .chat-form { display: grid; gap: 18px; }
.form label, .contact-form label, .chat-form label { display: block; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.form input[type=text], .form input[type=email], .form input[type=tel], .form input[type=password],
.form textarea, .form select,
.contact-form input, .contact-form textarea, .chat-form textarea,
input[type=text], input[type=email], input[type=tel], textarea, select {
    width: 100%; font: inherit; color: var(--text); background: #fff;
    border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); padding: 12px 14px;
    transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(217,4,41,.14); outline: none; }
textarea { min-height: 140px; resize: vertical; }
.form small, .consent { color: var(--text-soft); font-size: .9rem; }
.consent { display: flex; gap: 10px; align-items: flex-start; }
.consent input { width: auto; margin-top: 4px; }

.contact-layout { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr; align-items: start; }
.contact-aside { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }

/* Alertes */
.success, .error, .warning { border-radius: var(--radius); padding: 16px 20px; margin: 0 0 18px; border: 1px solid; font-weight: 500; }
.success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.error   { background: var(--red-50); border-color: var(--red-100); color: var(--red-800); }
.warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }

/* ============================ Tchat ============================ */
.chat-page { max-width: 780px; }
.chat-window { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; min-height: 320px; max-height: 60vh; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-empty { color: var(--text-soft); text-align: center; margin: auto; }
.chat-disclaimer { color: var(--text-soft); font-size: .9rem; }
.online, .offline { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .9rem; }
.online::before, .offline::before { content: ""; width: 9px; height: 9px; border-radius: 50%; }
.online::before { background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
.offline::before { background: var(--gray-400); }

/* ============================ Footer ============================ */
.site-footer { background: var(--ink); color: #cbd5e1; margin-top: 40px; padding: 56px 0 30px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-brand strong { color: #fff; font-size: 1.15rem; }
.site-footer .small { color: #94a3b8; font-size: .9rem; }
.footer-h { color: #fff; font-weight: 800; margin: 0 0 14px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-nav { display: grid; gap: 9px; }
.footer-nav a { color: #cbd5e1; font-size: .96rem; }
.footer-nav a:hover { color: #fff; }
.footer-note { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; }
.site-footer strong { color: #fff; }

/* ============================ Utilitaires ============================ */
.small { font-size: .9rem; }
.legal { max-width: 800px; }
.legal h2 { font-size: 1.3rem; }

/* ============================ Responsive ============================ */
@media (max-width: 900px) {
    .site-nav {
        position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
        background: #fff; border-bottom: 1px solid var(--border); padding: 14px 20px 22px;
        box-shadow: var(--shadow-lg); transform: translateY(-140%); transition: transform .28s var(--ease);
        max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .site-nav.open { transform: translateY(0); }
    .site-nav a { padding: 13px 12px; border-radius: 10px; }
    .site-nav a.cta { margin: 8px 0 0; text-align: center; }
    .nav-toggle { display: block; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .pillar-grid, .value-list, .two-col, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .footer-grid { gap: 26px; }
}
@media (max-width: 560px) {
    body { font-size: 16px; }
    .hero-actions .button, .callout-actions .button { width: 100%; }
    .deflist { grid-template-columns: 1fr; gap: 0; }
    .deflist dt { border-bottom: 0; padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ============================ Blog / article ============================ */
.crumbs { font-size: .88rem; color: var(--gray-500); margin: 22px 0 6px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { color: var(--gray-600); font-weight: 600; }
.crumbs a:hover { color: var(--primary); }
.crumbs [aria-current] { color: var(--gray-500); }

.article { max-width: 760px; margin-inline: auto; }
.article-head { margin: 6px 0 26px; }
.article-meta { font-size: .85rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.article-head h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.article-head .lead { color: var(--text-soft); font-weight: 500; }
.article-media { margin: 0 0 28px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.article-media img { width: 100%; }

.article-body { font-size: 1.08rem; line-height: 1.8; color: #26303f; }
.article-body > *:first-child { margin-top: 0; }
.article-body h2 { font-size: 1.55rem; margin: 1.9em 0 .5em; }
.article-body h3 { font-size: 1.22rem; margin: 1.5em 0 .4em; }
.article-body p { margin: 0 0 1.15em; }
.article-body ul { margin: 0 0 1.2em; padding-left: 1.3em; }
.article-body li { margin: .4em 0; }
.article-body strong { color: var(--heading); }
.article-body blockquote {
    margin: 1.6em 0; padding: 14px 24px; border-left: 4px solid var(--primary);
    background: var(--red-50); border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--gray-700); font-size: 1.12rem; font-style: italic;
}
.article-body a { text-decoration: underline; text-underline-offset: 2px; }

.article-cta { margin-top: 40px; }
.article-cta h2 { font-size: 1.35rem; }

.news-teaser-more, .article-featured-more { color: var(--primary); font-weight: 700; font-size: .92rem; margin-top: auto; }

/* Article à la une */
.article-featured {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; margin: 8px 0 30px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm); color: inherit;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.article-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.article-featured-img { background: var(--gray-100); min-height: 240px; }
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.article-featured-body { display: flex; flex-direction: column; gap: 12px; padding: 32px 34px; }
.article-featured-title { font-size: 1.7rem; font-weight: 800; color: var(--heading); line-height: 1.2; letter-spacing: -.02em; }

@media (max-width: 760px) {
    .article-featured { grid-template-columns: 1fr; }
    .article-featured-img { min-height: 190px; }
    .article-featured-body { padding: 24px; }
    .article-featured-title { font-size: 1.4rem; }
}
