/* === VARIABLES & DESIGN TOKENS === */

:root {
  --navy:        #1A2744;
  --navy-2:      #2A3F6F;
  --rouge:       #C8102E;
  --orange-tlp:  #CC6600;
  --grey-bg:     #F0F2F7;
  --grey-line:   #D0D4DF;
  --grey-text:   #888888;
  --white:       #FFFFFF;
  --paper:       #FAFBFC;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;

  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   12px;

  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 1px 1px rgba(0,0,0,.04);
  --shadow-urgent: 0 6px 24px -8px rgba(26,39,68,.18);

  --max-width: 1280px;
  --section-padding: 80px;
}

/* === RESET === */

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  background-color: var(--paper);
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* === SKIP LINK (RGAA 12.6) === */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--rouge);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.1s;
}

.skip-link:focus {
  top: 0;
}

/* === BASE TYPOGRAPHY === */

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(40px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: clamp(15px, 1.5vw, 18px); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* === EYEBROW === */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rouge);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rouge);
  flex-shrink: 0;
}

.eyebrow--navy {
  color: var(--navy-2);
}

.eyebrow--navy::before {
  background: var(--navy-2);
}

/* === H1 WITH RED BAR === */

.h1-with-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.h1-with-bar .colon {
  display: block;
  width: 6px;
  min-height: 56px;
  background: var(--rouge);
  flex-shrink: 0;
  margin-top: 4px;
}

/* === H2 WITH BOTTOM LINE === */

.h2-section {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-line);
  margin-bottom: 40px;
}

/* === LEDE === */

.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  color: var(--navy-2);
  line-height: 1.6;
}

/* === META / CAPTION === */

.meta {
  font-size: 12px;
  font-style: italic;
  color: var(--grey-text);
}

/* === CONTAINER === */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.btn--rouge {
  background: var(--rouge);
  color: var(--white);
  border-color: var(--rouge);
}

.btn--rouge:hover {
  background: #a50d25;
  border-color: #a50d25;
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* === LISTES DE CONTENU === */

.content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

.content-list li {
  line-height: 1.6;
  color: var(--grey-dark);
}

.content-list li + li {
  padding-top: 2px;
}

.content-list ul {
  margin-top: 8px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.content-list ul li {
  font-size: 14px;
  color: var(--grey-text);
}

/* === BANDEAU GOUVERNEMENTAL === */

/* === TOPBAR INSTITUTIONNEL === */

.topbar {
  height: 36px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__identity {
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.topbar__links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 12px;
  transition: color 150ms;
  white-space: nowrap;
}

.topbar__links a:hover {
  color: var(--white);
}

.topbar__links a:focus-visible {
  outline: 2px solid rgba(255,255,255,.5);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* === HEADER PRINCIPAL === */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-line);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo img {
  height: 56px;
  width: auto;
}

.site-header__logo-region {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-text);
  line-height: 1.3;
  white-space: nowrap;
}

.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-header__nav a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}

.site-header__nav a:hover {
  color: var(--rouge);
}

.site-header__nav a.active,
.site-header__nav a[aria-current="page"] {
  border-bottom-color: var(--rouge);
  color: var(--rouge);
}

.site-header__nav a:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--rouge);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 150ms ease;
  margin-left: 16px;
}

.site-header__cta:hover {
  background: #a50d25;
}

.site-header__cta:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 3px;
}

.site-header__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-header__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-header__cta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.site-header__cta-number {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* === BURGER MENU MOBILE === */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}

.burger:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 200ms ease, opacity 200ms ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === BANDEAU ALERTE === */

.alert-banner {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.alert-banner .container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alert-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rouge);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.alert-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
}

.alert-banner a:hover {
  opacity: .8;
}

.alert-banner__text {
  flex: 1;
}

/* === FOOTER === */

.site-footer {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--rouge);
  padding: 60px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.site-footer__col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.site-footer__logo {
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  height: 44px;
  width: auto;
}

.site-footer__baseline {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  line-height: 1.5;
}

.site-footer__urgence {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__urgence-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rouge);
}

.site-footer__urgence-number {
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}

.site-footer__urgence-note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color 150ms ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-footer__links a:hover {
  color: var(--white);
}

.site-footer__links a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__links a svg {
  width: 14px;
  height: 14px;
  opacity: .5;
  flex-shrink: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.site-footer__legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}

.site-footer__legal-links a:hover {
  color: var(--white);
}

/* === HERO SECTION === */

.hero {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__lede {
  margin-bottom: 32px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-line);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__number {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--rouge);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: var(--grey-text);
}

/* === CARTE URGENCE === */

.card-urgent {
  background: var(--white);
  border-top: 6px solid var(--rouge);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-urgent);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-urgent__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-urgent__pulse {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.card-urgent__pulse-dot {
  position: absolute;
  inset: 0;
  background: var(--rouge);
  border-radius: 50%;
}

.card-urgent__pulse-ring {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--rouge);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .card-urgent__pulse-ring { animation: none; }
}

.card-urgent__status {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rouge);
}

.card-urgent__number-display {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.card-urgent__number-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-text);
  margin-bottom: 8px;
}

.card-urgent__number {
  font-size: 36px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  line-height: 1;
}

.card-urgent__number-sub {
  font-size: 13px;
  color: var(--grey-text);
  margin-top: 4px;
}

.card-urgent__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-urgent__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
}

.card-urgent__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--navy);
}

.card-urgent__info-item svg {
  width: 15px;
  height: 15px;
  color: var(--rouge);
  flex-shrink: 0;
}

/* === SECTION MISSIONS === */

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--grey-bg);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section__header .h2-section {
  border-bottom-color: rgba(255,255,255,.2);
}

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

.mission-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.mission-card:hover {
  box-shadow: var(--shadow-urgent);
  transform: translateY(-2px);
}

.mission-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rouge);
}

.mission-card__icon {
  width: 48px;
  height: 48px;
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.mission-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.mission-card__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-2);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 150ms ease, color 150ms ease;
}

.mission-card__link:hover {
  color: var(--rouge);
  gap: 10px;
}

.mission-card__link:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
  border-radius: 2px;
}

/* === SECTION AUDIENCE === */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.audience-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-line);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.audience-tile:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-card);
}

.audience-tile__icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.audience-tile__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.audience-tile h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.audience-tile p {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.4;
  margin: 0;
}

/* === SECTION STEPS === */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--grey-line) 0,
    var(--grey-line) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border: 2px solid var(--rouge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--rouge);
  background: var(--white);
  flex-shrink: 0;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.step p {
  font-size: 14px;
  color: var(--grey-text);
  margin: 0;
}

/* === SECTION ACTUALITÉS === */

.actu-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.actu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 150ms ease;
}

.actu-card:hover {
  box-shadow: var(--shadow-urgent);
}

.actu-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.actu-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,.04) 6px,
    rgba(255,255,255,.04) 8px
  );
}

.actu-card__image-label {
  font-family: monospace;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}

.actu-card__body {
  padding: 20px;
}

.actu-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--grey-bg);
  color: var(--navy-2);
  margin-bottom: 8px;
}

.actu-card__tag--alerte {
  background: rgba(200,16,46,.1);
  color: var(--rouge);
}

.actu-card__date {
  font-size: 12px;
  color: var(--grey-text);
  margin-bottom: 8px;
}

.actu-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.actu-card p {
  font-size: 14px;
  color: var(--grey-text);
  margin-bottom: 16px;
}

.actu-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 150ms ease, gap 150ms ease;
}

.actu-card__link:hover {
  color: var(--rouge);
  gap: 10px;
}

.actu-breves {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.actu-breve {
  padding: 16px 20px;
  border-bottom: 1px solid var(--grey-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background-color 150ms ease;
}

.actu-breve:last-child {
  border-bottom: none;
}

.actu-breve:hover {
  background: var(--paper);
}

.actu-breve__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.actu-breve__date {
  font-size: 11px;
  color: var(--grey-text);
}

.actu-breve a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 150ms ease;
}

.actu-breve a:hover {
  color: var(--rouge);
}

.actu-breve a:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
  border-radius: 2px;
}

/* === PARTENAIRES === */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.partner-cell {
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--grey-line);
  margin: -1px 0 0 -1px;
  padding: 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey-text);
  transition: background-color 150ms ease, color 150ms ease;
}

.partner-cell:hover {
  background: var(--grey-bg);
  color: var(--navy);
}

.partner-logo {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 150ms ease;
}

.partner-cell:hover .partner-logo {
  filter: grayscale(0%);
}

.partner-cell__fallback {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

/* === GABARIT ARTICLE (pages secondaires) === */

.hero--compact {
  padding: 40px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--grey-line);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-text);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--navy-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}

.breadcrumb a:hover {
  color: var(--rouge);
}

.breadcrumb__sep {
  color: var(--grey-line);
}

.article-layout {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 48px;
  padding: 48px 0;
}

/* === TABLE OF CONTENTS (TOC) === */

.toc {
  position: sticky;
  top: 100px;
  align-self: start;
}

.toc__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-text);
  margin-bottom: 12px;
}

.toc__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc__list a {
  display: block;
  font-size: 13px;
  color: var(--navy);
  padding: 6px 12px;
  border-left: 2px solid var(--grey-line);
  text-decoration: none;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.toc__list a:hover,
.toc__list a.active {
  border-left-color: var(--rouge);
  color: var(--rouge);
  background: rgba(200,16,46,.04);
}

.toc__list a:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
}

/* === PROSE === */

.prose h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-line);
  font-size: 28px;
}

.prose h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--navy);
}

.prose ul,
.prose ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.prose li {
  margin-bottom: 8px;
  list-style: disc;
}

/* === CALLOUT === */

.callout {
  background: var(--grey-bg);
  border-left: 4px solid var(--rouge);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.callout__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rouge);
  margin-bottom: 8px;
}

.callout p {
  font-size: 14px;
  color: var(--navy);
  margin: 0;
}

/* === RÉFLEXES GRILLE (page déclarer) === */

.reflexes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  padding: 0;
  list-style: none;
  margin: 24px 0;
}

.reflexe-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.55;
}

.reflexe-item__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--rouge);
}

@media (max-width: 700px) {
  .reflexes-list {
    grid-template-columns: 1fr;
  }
}

/* === ARROW LIST === */

ul.arrows {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

ul.arrows li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
}

ul.arrows li::before {
  content: '→';
  color: var(--rouge);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === TABLES === */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
}

.data-table caption {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  caption-side: top;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--grey-line);
  color: var(--navy);
}

.data-table tr:nth-child(odd) td {
  background: var(--grey-bg);
}

.data-table tr:nth-child(even) td {
  background: var(--paper);
}

.data-table tr:hover td {
  background: rgba(26,39,68,.04);
}

/* === ACCORDION === */

.accordion {
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px 0;
}

.accordion__item {
  border-bottom: 1px solid var(--grey-line);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: background-color 150ms ease;
  border: none;
  gap: 16px;
}

.accordion__trigger:hover {
  background: var(--paper);
}

.accordion__trigger:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: -3px;
}

.accordion__chevron {
  width: 18px;
  height: 18px;
  color: var(--grey-text);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.accordion__trigger[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
}

.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.accordion__item:has(.accordion__trigger[aria-expanded="true"]) .accordion__content {
  grid-template-rows: 1fr;
}

.accordion__inner {
  overflow: hidden;
  padding: 0 20px;
}

.accordion__item:has(.accordion__trigger[aria-expanded="true"]) .accordion__inner {
  padding: 0 20px 20px;
}

/* === ASIDE === */

.aside {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aside-card {
  border-radius: var(--radius-md);
  padding: 24px;
}

.aside-card--navy {
  background: var(--navy);
  color: var(--white);
}

.aside-card--navy .aside-card__title {
  color: rgba(255,255,255,.6);
}

.aside-card--light {
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
}

.aside-card__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-text);
  margin-bottom: 16px;
}

.aside-card__urgence {
  text-align: center;
  margin-bottom: 20px;
}

.aside-card__urgence-number {
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.aside-card__urgence-note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.aside-links a {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}

.aside-links a:hover {
  color: var(--white);
}

.aside-links a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  border-radius: 2px;
}

.aside-links a svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: .6;
}

.tlp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,102,0,.15);
  color: var(--orange-tlp);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--orange-tlp);
}

/* === FORMULAIRE === */

.form-layout {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

.form-card {
  border-top: 4px solid var(--rouge);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.form-section {
  padding: 28px 32px;
  border-bottom: 1px solid var(--grey-line);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.form-label .req {
  color: var(--rouge);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(42,63,111,.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}

.form-error {
  font-size: 13px;
  color: var(--rouge);
  display: none;
}

.form-error.visible {
  display: block;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: var(--grey-text);
}

/* === RADIO TUILES === */

.radio-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.radio-tile {
  position: relative;
}

.radio-tile input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-tile label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: center;
  transition: border-color 150ms ease, background-color 150ms ease;
  min-height: 72px;
}

.radio-tile label svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  color: var(--grey-text);
  transition: color 150ms ease;
}

.radio-tile input[type="radio"]:checked + label {
  border-color: var(--navy-2);
  background: rgba(42,63,111,.06);
  color: var(--navy-2);
}

.radio-tile input[type="radio"]:checked + label svg {
  color: var(--navy-2);
}

.radio-tile input[type="radio"]:focus-visible + label {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
}

/* === DROP ZONE === */

.drop-zone {
  border: 2px dashed var(--grey-line);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--navy-2);
  background: rgba(42,63,111,.04);
}

.drop-zone svg {
  width: 32px;
  height: 32px;
  color: var(--grey-text);
}

.drop-zone__text {
  font-size: 14px;
  color: var(--navy);
}

.drop-zone__hint {
  font-size: 12px;
  color: var(--grey-text);
}

.drop-zone input[type="file"] {
  display: none;
}

/* === CHECKBOX === */

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  cursor: pointer;
  accent-color: var(--navy);
  margin-top: 2px;
}

.checkbox-field label {
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  line-height: 1.5;
}

/* === FORM ACTIONS === */

.form-actions {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border-top: 1px solid var(--grey-line);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  flex-wrap: wrap;
}

.form-actions__required {
  margin-left: auto;
  font-size: 13px;
  color: var(--grey-text);
}

/* === CONFIRMATION MESSAGE === */

.form-confirmation {
  display: none;
  padding: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-confirmation.visible {
  display: flex;
}

.form-confirmation__icon {
  width: 56px;
  height: 56px;
  background: rgba(42,63,111,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-2);
}

.form-confirmation__icon svg {
  width: 28px;
  height: 28px;
}

/* === SERVICE GRID === */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.service-card:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.service-card h4 {
  font-size: 16px;
}

.service-card p {
  font-size: 14px;
  color: var(--grey-text);
  margin: 0;
}

/* === TAGS === */

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 999px;
}

.tag--default {
  background: var(--grey-bg);
  color: var(--navy-2);
}

.tag--rouge {
  background: rgba(200,16,46,.1);
  color: var(--rouge);
}

.tag--orange {
  background: rgba(204,102,0,.12);
  color: var(--orange-tlp);
}

.tag--blue {
  background: rgba(42,63,111,.1);
  color: var(--navy-2);
}

/* === COPY BUTTON === */

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-2);
  padding: 4px 10px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.btn-copy:hover {
  background: var(--grey-bg);
}

.btn-copy:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
}

.btn-copy svg {
  width: 13px;
  height: 13px;
}

/* === RESPONSIVE : 1024px === */

@media (max-width: 1024px) {
  .missions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .actu-breves {
    grid-column: 1 / -1;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .article-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .toc,
  .aside {
    position: static;
  }

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

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

  .site-header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
    padding: 24px;
  }

  .site-header__nav.open {
    display: flex;
  }

  .site-header__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .site-header__nav a {
    font-size: 18px;
    padding: 12px 24px;
  }

  .site-header__cta {
    margin-top: 24px;
    margin-left: 0;
  }

  .burger {
    display: flex;
  }

  .site-header__logo-region {
    display: none;
  }
}

/* === RESPONSIVE : 768px === */

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }

  .gov-banner__right {
    display: none;
  }

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

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

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__stats {
    gap: 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* === RESPONSIVE : 360px === */

@media (max-width: 480px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

/* === FOCUS VISIBLE GLOBAL === */

:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
}

/* === PAGE ACTUALITÉS === */

.actu-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.actu-filters a {
  display: inline-block;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  color: var(--navy);
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.actu-filters a:hover {
  border-color: var(--navy-2);
  background: var(--grey-bg);
}

.actu-filters a.active,
.actu-filters a[aria-current="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.actu-filters a:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
}

.actu-grid--page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.actu-voir-plus {
  text-align: center;
  padding: 8px 0 40px;
}

@media (max-width: 768px) {
  .actu-grid--page {
    grid-template-columns: 1fr;
  }
}

/* === PAGE PLAN DU SITE === */

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 48px 0;
}

@media (min-width: 900px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sitemap-section h2 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rouge);
}

.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.sitemap-links li {
  list-style: none;
}

.sitemap-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  padding: 4px 0;
  transition: color 150ms ease, gap 150ms ease;
}

.sitemap-links a::before {
  content: '→';
  color: var(--rouge);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.sitemap-links a:hover {
  color: var(--rouge);
  gap: 12px;
}

.sitemap-links a:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
  border-radius: 2px;
}

/* === UTILITY === */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-rouge { color: var(--rouge); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* === BOUTONS SUPPLÉMENTAIRES === */

.btn--urgency {
  background: var(--rouge);
  color: var(--white);
  border-color: var(--rouge);
  font-size: 16px;
  padding: 14px 28px;
}
.btn--urgency:hover {
  background: #a50d25;
  border-color: #a50d25;
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--secondary-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--secondary-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* === PAGE HERO (pages intérieures) === */

.page-hero {
  background: var(--navy);
  padding: 56px 0 48px;
}

.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 16px;
}

.page-hero__lede {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 640px;
  line-height: 1.55;
  margin: 0;
}

.page-hero--urgence {
  background: var(--rouge);
}

/* === LAYOUT DEUX COLONNES === */

.content-cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.content-col--main {
  min-width: 0;
}

.content-col--side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .content-cols {
    grid-template-columns: 1fr;
  }
  .content-col--side {
    order: -1;
  }
}

/* === SIDE CARD === */

.side-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.side-card__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin: 0 0 14px;
}

.side-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-bg);
  transition: color 150ms;
}

.side-links a:last-child {
  border-bottom: none;
}

.side-links a:hover {
  color: var(--rouge);
}

.side-links a:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
  border-radius: 2px;
}

.side-links svg {
  flex-shrink: 0;
  color: var(--grey-text);
}

/* === SECTION INTRO === */

.section-intro {
  font-size: 17px;
  color: var(--grey-text);
  max-width: 700px;
  margin-bottom: 40px;
}

/* === LEGAL CONTENT === */

.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 0;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
}

.legal-dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 24px;
  margin-bottom: 32px;
  background: var(--grey-bg);
  padding: 20px 24px;
  border-radius: var(--radius);
}
.legal-dl dt {
  font-weight: 600;
  color: var(--navy);
}
.legal-dl dd {
  margin: 0;
  color: var(--grey-dark);
}
@media (max-width: 600px) {
  .legal-dl {
    grid-template-columns: 1fr;
  }
  .legal-dl dt {
    margin-top: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--grey-text);
  }
  .legal-dl dt:first-child {
    margin-top: 0;
  }
}

/* === CONFORMITÉ BADGE === */

.conformite-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
}
.conformite-badge--non-conforme {
  background: #fef2f4;
  color: var(--rouge);
  border: 1px solid #f8c2cc;
}

/* === PARTNER CARDS === */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-card__logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.partner-card__logo img {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.partner-card__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.partner-card__badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--grey-bg);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-card__badge--fondateur {
  background: #eef2ff;
  color: var(--navy-2);
}

.partner-card__desc {
  font-size: 14px;
  color: var(--grey-dark);
  line-height: 1.6;
  flex: 1;
}

.partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-line);
  padding-bottom: 2px;
  transition: color 150ms, border-color 150ms;
}
.partner-card__link:hover {
  color: var(--rouge);
  border-color: var(--rouge);
}
.partner-card__link:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 2px;
  border-radius: 2px;
}

/* === CERT HIGHLIGHT === */

.cert-highlight {
  display: flex;
  gap: 28px;
  background: #eef2ff;
  border: 1px solid rgba(26,39,68,.15);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 48px;
}

.cert-highlight__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.cert-highlight__content {
  flex: 1;
}

.cert-highlight__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

@media (max-width: 600px) {
  .cert-highlight {
    flex-direction: column;
  }
}

/* === PÉRIMÈTRE GRID (les-cert.html) === */

.perimetre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.perimetre-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 24px;
}

.perimetre-card__icon {
  color: var(--navy);
  margin-bottom: 12px;
}

.perimetre-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.perimetre-card__text {
  font-size: 14px;
  color: var(--grey-dark);
  line-height: 1.6;
  margin: 0;
}

/* === SIDE CARDS SUPPLÉMENTAIRES (declarer.html) === */

.side-card--urgence {
  background: var(--rouge);
  color: var(--white);
  border-color: var(--rouge);
}
.side-card--urgence .side-card__title {
  color: var(--white);
}

.side-card__intro {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: .9;
}

.side-card__note {
  font-size: 12px;
  opacity: .8;
  margin-top: 8px;
}

.urgence-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 12px 0;
  letter-spacing: -.01em;
}
.urgence-phone:hover {
  text-decoration: underline;
}
.urgence-phone:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  border-radius: 2px;
}

.side-phone,
.side-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-line);
  margin-bottom: 8px;
  transition: color 150ms;
}
.side-phone:hover,
.side-email:hover {
  color: var(--rouge);
}
.side-phone:last-child,
.side-email:last-child {
  border-bottom: none;
}

.side-steps {
  counter-reset: steps;
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-steps li {
  counter-increment: steps;
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--grey-dark);
  line-height: 1.5;
}
.side-steps li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === FORMULAIRE VARIANTES === */

.form-row {
  display: flex;
  gap: 20px;
}
.form-row--two > .form-group {
  flex: 1;
}
@media (max-width: 600px) {
  .form-row--two {
    flex-direction: column;
  }
}

.form-group--checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
}

.form-label-check {
  font-size: 14px;
  color: var(--grey-dark);
  line-height: 1.5;
  cursor: pointer;
}
.form-label-check a {
  color: var(--navy);
}
.form-label-check a:hover {
  color: var(--rouge);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #eef2ff;
  border-left: 3px solid var(--navy);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* === TABLE CONTAINER === */

.table-container {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--grey-line);
}

/* === SITEMAP SECTIONS === */

.sitemap-section {
  break-inside: avoid;
}
.sitemap-section__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--grey-line);
}
.sitemap-section ul ul {
  margin: 8px 0 0 16px;
}
.sitemap-section ul ul li {
  font-size: 13px;
  color: var(--grey-text);
  padding: 2px 0;
  list-style: disc;
}
