/* Polices hébergées par nos soins (Barlow, SIL Open Font License).
   Aucune connexion à un service tiers n'est nécessaire. */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
}

/* =========================================================
   Les Amis des Pompiers — feuille de styles principale
   Palette issue du logo : bleu marine, rouge, or, blanc
   ========================================================= */

:root {
  --navy-900: #061c38;
  --navy-800: #0a2647;
  --navy-700: #123a6b;
  --navy-600: #1b4d8c;
  --navy-050: #eef3fa;

  --red-700: #a5121d;
  --red-600: #c8102e;
  --red-500: #e02434;
  --red-050: #fdeef0;

  --gold-600: #d98b00;
  --gold-500: #f2a516;
  --gold-050: #fff6e5;

  --green-600: #1f7a4d;
  --green-050: #e9f6ef;

  --ink: #14243a;
  --muted: #5b6b81;
  --line: #dde4ed;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(10, 38, 71, .06), 0 4px 12px rgba(10, 38, 71, .05);
  --shadow-md: 0 8px 30px rgba(10, 38, 71, .10);
  --wrap: 1160px;

  --font-display: "Barlow Condensed", "Arial Narrow", Impact, system-ui, sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--navy-800);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li + li { margin-top: .35em; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Bandeau urgence ---------- */
.topbar {
  background: var(--red-600);
  color: #fff;
  font-size: .9rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-block: .45rem;
}
.topbar strong { font-weight: 600; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar-urgence { display: flex; align-items: center; gap: .5rem; }
.topbar-urgence svg { flex: none; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .6rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 52px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.32rem; color: var(--navy-800); letter-spacing: .02em;
}
.brand-name em { font-style: normal; color: var(--red-600); }
.brand-tag {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-top: .25rem; font-weight: 600;
}

.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  background: var(--navy-800); color: #fff; border: 0;
  font: 600 .9rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase;
  padding: .65rem .85rem; border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle svg { flex: none; }

.main-nav ul {
  display: flex; align-items: center; gap: .15rem;
  list-style: none; margin: 0; padding: 0;
}
.main-nav li { margin: 0; }
.main-nav a {
  display: block; padding: .55rem .7rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .96rem; color: var(--navy-800); text-decoration: none;
}
.main-nav a:hover { background: var(--navy-050); color: var(--navy-700); }
.main-nav a[aria-current="page"] { color: var(--red-600); box-shadow: inset 0 -3px 0 var(--red-600); border-radius: 0; }
.main-nav .btn { margin-left: .5rem; color: #fff; }
.main-nav .btn:hover { color: #fff; }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none; padding: .6rem 20px 1.1rem;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li + li { border-top: 1px solid var(--line); }
  .main-nav a { padding: .85rem .2rem; font-size: 1.05rem; }
  .main-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--red-600); padding-left: .8rem; }
  .main-nav .btn { margin: .9rem 0 0; text-align: center; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .78rem 1.35rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { flex: none; }
.btn-primary { background: var(--red-600); color: #fff; box-shadow: 0 6px 18px rgba(200, 16, 46, .28); }
.btn-primary:hover { background: var(--red-700); color: #fff; }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { border-color: currentColor; color: var(--navy-800); background: transparent; }
.btn-ghost:hover { background: var(--navy-050); color: var(--navy-800); }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { background: #fff; color: var(--red-600); }
.btn-outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-sm { padding: .5rem .9rem; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy-800); color: #dce6f4; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy a { color: #fff; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red-600);
  margin-bottom: .8rem;
}
.kicker::before { content: ""; width: 28px; height: 3px; background: var(--red-600); }
.section-navy .kicker { color: var(--gold-500); }
.section-navy .kicker::before { background: var(--gold-500); }

.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.lead { font-size: 1.16rem; color: var(--muted); }
.section-navy .lead { color: #b9c9de; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 520px at 78% 12%, rgba(27, 77, 140, .55), transparent 60%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #e7eefa;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 16px);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 span { color: var(--gold-500); display: block; }
.hero p { color: #c5d5e9; font-size: 1.16rem; max-width: 56ch; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.hero-tags li {
  margin: 0; font-size: .86rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .8rem; border-radius: 999px;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .18); color: #dbe7f6;
}
.hero-logo { display: flex; justify-content: center; }
.hero-logo img {
  width: min(330px, 78vw);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .45));
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero .btn-row, .hero-tags { justify-content: center; }
  .hero-logo { order: -1; }
  .hero-logo img { width: min(210px, 55vw); }
}

/* ---------- En-tête de page intérieure ---------- */
.page-hero {
  background:
    radial-gradient(800px 380px at 82% 0%, rgba(27, 77, 140, .55), transparent 62%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #d9e5f4; padding-block: clamp(2.4rem, 6vw, 4rem);
}
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p { color: #c0d1e6; max-width: 68ch; font-size: 1.1rem; margin: 0; }
.breadcrumb { font-size: .86rem; color: #9db3d0; margin-bottom: 1rem; }
.breadcrumb a { color: #cfe0f3; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span { padding-inline: .4rem; opacity: .6; }

/* ---------- Grilles & cartes ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c9d6e6; }
.card h3 { margin-bottom: .5rem; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card-flat:hover { transform: none; box-shadow: var(--shadow-sm); }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--navy-050); color: var(--navy-700);
}
.card-icon.red { background: var(--red-050); color: var(--red-600); }
.card-icon.gold { background: var(--gold-050); color: var(--gold-600); }
.card-icon.green { background: var(--green-050); color: var(--green-600); }

/* Fiches « actions » numérotées */
.action-card { position: relative; padding-top: 1.9rem; }
.action-num {
  position: absolute; top: -18px; left: 1.5rem;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff;
  background: var(--navy-800); box-shadow: 0 6px 16px rgba(10, 38, 71, .28);
}
.action-card:nth-child(even) .action-num { background: var(--red-600); box-shadow: 0 6px 16px rgba(200, 16, 46, .28); }
.tick { list-style: none; padding: 0; margin: 0; }
.tick li {
  position: relative; padding-left: 1.7rem; margin-top: .5rem;
}
.tick li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 10px; height: 10px; border-radius: 3px; background: var(--red-600);
}
.tick.tick-navy li::before { background: var(--navy-600); }
.tick.tick-gold li::before { background: var(--gold-500); }

/* ---------- Chiffres / valeurs ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.2rem; }
.stat {
  border-left: 4px solid var(--red-600); padding: .3rem 0 .3rem 1.1rem;
}
.stat b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 2.4rem; line-height: 1; color: var(--navy-800);
}
.section-navy .stat b { color: #fff; }
.stat span { font-size: .98rem; color: var(--muted); }
.section-navy .stat span { color: #adc0d8; }

.values { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; list-style: none; }
.values li {
  margin: 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  padding: .45rem 1.1rem; border-radius: 999px;
  background: var(--navy-050); color: var(--navy-700);
}
.section-navy .values li { background: rgba(255, 255, 255, .1); color: #fff; }

/* ---------- Étapes ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; padding: 0; margin: 0; list-style: none; }
.steps li {
  counter-increment: step; position: relative; margin: 0;
  padding: 1.2rem 1.4rem 1.2rem 4.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.steps li::before {
  content: counter(step); position: absolute; left: 1.2rem; top: 1.15rem;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  background: var(--navy-800); color: #fff;
}
.steps h3 { margin-bottom: .25rem; font-size: 1.15rem; }
.steps p:last-child { margin-bottom: 0; }

/* ---------- Encadrés ---------- */
.callout {
  border-left: 5px solid var(--gold-500); background: var(--gold-050);
  padding: 1.2rem 1.4rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout.red { border-left-color: var(--red-600); background: var(--red-050); }
.callout.navy { border-left-color: var(--navy-600); background: var(--navy-050); }
.callout h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.callout p:last-child { margin-bottom: 0; }

.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.6rem, 4vw, 3.2rem); align-items: start;
}

.press-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.press-meta {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red-600); font-weight: 700; margin-bottom: .5rem;
}
blockquote {
  margin: 0; padding: 1.2rem 1.4rem; background: var(--navy-050);
  border-radius: var(--radius-sm); font-size: 1.06rem; color: var(--navy-800);
}
blockquote footer { margin-top: .6rem; font-size: .92rem; color: var(--muted); }

/* ---------- Bandeau d'appel ---------- */
.band {
  background: linear-gradient(120deg, var(--red-700), var(--red-600) 55%, #e04a2a);
  color: #fff;
}
.band .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.6rem; padding-block: clamp(2.2rem, 5vw, 3.4rem);
}
.band h2 { color: #fff; margin-bottom: .35rem; }
.band p { margin: 0; color: #ffe3e6; max-width: 60ch; }

/* ---------- Formulaire ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .96rem; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .88rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .7rem .85rem; border: 1px solid #c8d3e0; border-radius: var(--radius-sm);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-600); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 1.1rem; }
.checks { display: grid; gap: .5rem; margin: .2rem 0 0; padding: 0; list-style: none; }
.checks li { margin: 0; }
.checks label { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; }
.checks input { width: auto; margin-top: .35rem; }
.form-note { font-size: .88rem; color: var(--muted); }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { background: var(--green-050); color: var(--green-600); border: 1px solid #bfe3ce; }

/* ---------- Contact ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: .9rem; margin: 0 0 1.1rem; align-items: flex-start; }
.contact-list .ci {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; background: var(--navy-050); color: var(--navy-700);
}
.contact-list b { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-list a { font-weight: 600; text-decoration: none; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--navy-900); color: #a9bdd6; padding-block: 3rem 1.5rem; font-size: .96rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.site-footer h4 {
  color: #fff; font-size: .88rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: .9rem; font-family: var(--font-body); font-weight: 700;
}
.site-footer a { color: #cfdcec; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 .5rem; }
.footer-brand { display: flex; gap: .8rem; align-items: center; margin-bottom: 1rem; }
.footer-brand img { width: 54px; }
.footer-brand span {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.25rem; color: #fff; line-height: 1.05;
}
.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .88rem;
}
.footer-urgence {
  background: rgba(200, 16, 46, .18); border: 1px solid rgba(224, 36, 52, .4);
  color: #ffd7db; border-radius: var(--radius-sm); padding: .8rem 1rem; margin-top: 1rem;
}
.footer-urgence strong { color: #fff; }

/* ---------- Divers ---------- */
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose > :first-child { margin-top: 0; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

@media print {
  .topbar, .site-header, .band, .site-footer, .btn-row { display: none !important; }
  body { font-size: 12pt; color: #000; }
}

/* ---------- Questions fréquentes ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .3rem 1.3rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 2rem 1rem 0; position: relative;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .2rem; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 2.5px solid var(--red-600); border-bottom: 2.5px solid var(--red-600);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details[open] summary { color: var(--red-600); }
.faq details > p { padding-bottom: 1.1rem; margin-bottom: 0; color: var(--muted); }

/* ---------- Fieldset ---------- */
fieldset { border: 0; }
legend { padding: 0; }

/* ---------- Petits écrans ---------- */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand img { width: 44px; }
  .brand-name { font-size: 1.12rem; }
  .brand-tag { display: none; }
  .nav-toggle { padding: .6rem .7rem; }
  .kicker { font-size: .74rem; letter-spacing: .12em; }
  .kicker::before { width: 20px; }
  .topbar { font-size: .82rem; }
  .band .wrap { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .action-num { left: 1.1rem; }
  .steps li { padding: 1.1rem 1.1rem 1.1rem 3.6rem; }
  .steps li::before { left: .9rem; width: 34px; height: 34px; font-size: 1.1rem; }
}

/* Colonne principale plus large (page actualités) */
@media (min-width: 960px) {
  .split-wide { grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); }
}

/* Liens du bandeau haut (téléphone, espace membres) */
.topbar-liens { display: flex; gap: .9rem; align-items: center; }
.topbar-liens a + a { padding-left: .9rem; border-left: 1px solid rgba(255, 255, 255, .45); }

/* Encadrés clairs posés sur une section bleu nuit : le texte doit redevenir sombre. */
.section-navy .callout { color: var(--ink); }
.section-navy .callout h3 { color: var(--navy-800); }
.section-navy .callout.red h3 { color: var(--red-700); }
.section-navy .callout a { color: var(--navy-600); }
.section-navy .callout a:hover { color: var(--red-600); }
