/* =========================================================
   SCP Alliance Infirmiers — feuille de style principale
   Palette dérivée du logo : bleu pétrole #005477, rose #FF006A
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs de marque */
  --brand:        #005477;
  --brand-dark:   #003C57;
  --brand-deep:   #002E43;
  --brand-hover:  #006D96;
  --brand-50:     #EEF5F9;
  --brand-100:    #DCEAF1;
  --accent:       #E00060;   /* rose assombri, lisible en petit corps */
  --rose:         #FF006A;   /* rose exact du logo */

  /* Neutres */
  --ink:          #0E1B23;
  --text:         #33454F;
  --muted:        #667985;
  --line:         #E3EAEF;
  --surface:      #FFFFFF;
  --surface-alt:  #F5F8FA;

  /* Typographie */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rythme */
  --radius:    14px;
  --radius-sm: 10px;
  --container: 1120px;
  --shadow:    0 1px 2px rgba(14, 27, 35, .04), 0 8px 24px rgba(14, 27, 35, .06);
  --shadow-lg: 0 2px 4px rgba(14, 27, 35, .04), 0 18px 40px rgba(14, 27, 35, .10);
}

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

/* L'attribut hidden doit l'emporter sur les display: flex/grid des composants. */
[hidden] { display: none !important; }

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

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

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }

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

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

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

ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

strong { font-weight: 600; color: var(--ink); }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 760px; }

.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--alt { background: var(--surface-alt); border-block: 1px solid var(--line); }

.section__head { max-width: 640px; margin-bottom: 44px; }
.section__head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 4. Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-hover); color: #fff; }

.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { background: var(--brand-50); border-color: var(--brand-100); color: var(--brand); }

.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { background: var(--brand-50); color: var(--brand); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 5. En-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; padding-right: 24px; }
.brand img { width: 42px; height: auto; }
.brand__name { font-weight: 650; color: var(--ink); letter-spacing: -.02em; line-height: 1.2; font-size: 1.02rem; white-space: nowrap; }
.brand__sub { display: block; font-size: .78rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > .btn { display: none; }  /* visible uniquement dans le menu mobile */
.nav a.btn--primary { color: #fff; background: var(--brand); }
.nav a.btn--primary:hover { color: #fff; background: var(--brand-hover); }
.nav a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .93rem;
  white-space: nowrap;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease;
}
.nav a:hover { background: var(--surface-alt); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--brand); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .94rem; color: var(--ink); text-decoration: none; white-space: nowrap;
}
.header-phone:hover { color: var(--brand); }
.header-phone svg { color: var(--brand); flex: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); cursor: pointer;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, #00405C 0%, var(--brand) 55%, #00658C 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 88% -10%, rgba(255,255,255,.14), transparent 65%),
    radial-gradient(520px 320px at 5% 105%, rgba(255,0,106,.13), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(60px, 7vw, 104px);
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__lead { font-size: 1.15rem; color: rgba(255,255,255,.86); max-width: 46ch; }
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero__meta {
  display: flex; align-items: center; gap: 9px;
  margin: 26px 0 30px;
  font-size: .98rem; color: rgba(255,255,255,.86);
}
.hero__meta svg { flex: none; opacity: .8; }
.hero__figure { position: relative; }
.hero__figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}

/* Bandeau simple pour les pages intérieures */
.page-hero {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 6vw, 76px) 0;
}
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 62ch; margin-bottom: 0; }
.page-hero h1 { margin-bottom: .3em; }

/* ---------- 7. Cartes ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.card--pad-lg { padding: 34px; }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); font-size: .97rem; }
.card--link { text-decoration: none; color: inherit; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; display: flex; flex-direction: column; }
.card--link .card__more { margin-top: auto; padding-top: 16px; }
.card--link:hover { border-color: var(--brand-100); box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }

.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 18px;
  background: var(--brand-50); color: var(--brand); border-radius: 12px;
}

.card__more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-weight: 600; font-size: .93rem; color: var(--brand); text-decoration: none;
}
a.card__more:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Cartes horaires */
.hours-card { display: flex; flex-direction: column; height: 100%; }
.hours-card__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.hours-card__time { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.hours-card .phone-link, .hours-card .card__more { margin-top: auto; }
.hours-card .phone-link { font-size: 1.35rem; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -.01em; display: inline-block; margin-top: 6px; }
.hours-card .phone-link:hover { color: var(--brand); }

/* ---------- 8. Équipe ---------- */
.member { text-align: center; }
.member__photo {
  display: flex; align-items: center; justify-content: center;
  width: 116px; height: 116px; margin: 0 auto 18px;
  border-radius: 50%; overflow: hidden;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  color: var(--brand); font-size: 1.6rem; font-weight: 600; letter-spacing: .02em;
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { margin-bottom: .2em; font-size: 1.08rem; }
.member__role { color: var(--muted); font-size: .93rem; margin-bottom: 0; }
.member__tags { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 7px; }
.member__tags li {
  margin: 0; text-align: left; font-size: .84rem; line-height: 1.4; color: var(--brand);
  background: var(--brand-50); border-radius: 8px; padding: 7px 11px;
}

/* ---------- 9. Tarifs ---------- */
.price-table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.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;
}
.table-note { margin-top: 14px; color: var(--muted); font-size: .92rem; }
.price-table th, .price-table td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th {
  font-size: .78rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); border-bottom-color: var(--line);
}
.price-table tbody th { font-weight: 600; color: var(--ink); }
.price-table td { color: var(--text); white-space: nowrap; }
.price-table td.is-total { font-weight: 650; color: var(--ink); }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; padding: 4px 8px;
}
@media (max-width: 600px) {
  .price-table { font-size: .9rem; }
  .price-table th, .price-table td { padding: 13px 10px; }
}

.stat { text-align: center; padding: 30px 24px; }
.stat__value { font-size: clamp(2.4rem, 1.8rem + 2vw, 3.2rem); font-weight: 700; color: var(--brand); line-height: 1; letter-spacing: -.03em; }
.stat__label { margin-top: 10px; color: var(--muted); font-size: .95rem; }

/* ---------- 10. Encadrés ---------- */
.notice {
  display: flex; gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  background: var(--brand-50);
}
.notice svg { flex: none; color: var(--brand); margin-top: 2px; }
.notice p { margin: 0; font-size: .97rem; }
.notice p > strong:first-child { display: block; margin-bottom: 3px; }
.notice--warning { border-left-color: var(--accent); background: #FFF1F6; }
.notice--warning svg { color: var(--accent); }

/* ---------- 11. Blocs mixtes ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split__media--contain {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.split__media--contain img { box-shadow: none; max-height: 300px; width: auto; }

.check-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.check-list li { display: flex; gap: 11px; margin-bottom: 12px; color: var(--text); }
.check-list svg { flex: none; color: var(--brand); margin-top: 5px; }

/* ---------- 12. Appel à l'action ---------- */
.cta {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.85); max-width: 54ch; margin-inline: auto; }
.cta .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- 12 bis. Bandeau « À la une » ---------- */
.alaune {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
}
.alaune__carousel { display: flex; align-items: center; gap: 22px; padding: 14px 0; }

.carousel { position: relative; }

.carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Pas de scroll-behavior ici : c'est le script qui décide, afin de respecter
     la préférence « animations réduites » du visiteur. */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }

.carousel__track { display: flex; }

.carousel__slide { flex: 0 0 100%; scroll-snap-align: start; }

.alaune__slide { display: flex; align-items: center; gap: 18px; }

.alaune__icone {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: var(--surface); color: var(--brand);
  border: 1px solid var(--line); border-radius: 50%;
}

.alaune__corps { min-width: 0; flex: 1 1 0; }
.alaune__corps .eyebrow {
  /* Rose du logo légèrement assombri : à 11 px, le #FF006A pur ne tient pas
     le contraste de 4,5:1 exigé pour le petit texte. */
  margin-bottom: 1px; font-size: .69rem; color: var(--accent);
}
.alaune__titre {
  margin: 0; font-size: 1.02rem; font-weight: 650;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.3;
}
.alaune__texte {
  margin: 2px 0 0; font-size: .91rem; color: var(--muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.alaune__lien {
  flex: none;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .91rem; font-weight: 600; color: var(--brand);
  text-decoration: none; white-space: nowrap;
}
.alaune__lien:hover { text-decoration: underline; text-underline-offset: 4px; }

.alaune__nav { flex: none; margin-top: 0; gap: 14px; }

.carousel__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.carousel__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--surface); color: var(--brand);
  border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
.carousel__btn:hover { background: var(--brand-50); border-color: var(--brand-100); }
.carousel__btn[disabled] { opacity: .4; cursor: default; }
.carousel__btn:hover[disabled] { background: var(--surface); border-color: var(--line); }
.carousel__btns { display: flex; gap: 8px; }

.carousel__dots { display: flex; gap: 7px; }
.carousel__dot {
  width: 8px; height: 8px; padding: 0;
  background: var(--line); border: 0; border-radius: 50%;
  cursor: pointer; transition: background-color .16s ease, width .16s ease;
}
.carousel__dot[aria-current="true"] { background: var(--brand); width: 22px; border-radius: 4px; }

@media (max-width: 900px) {
  /* Le lien passe sous le texte plutôt que de disparaître */
  .alaune__slide { flex-wrap: wrap; }
  .alaune__lien { margin-left: 64px; margin-top: 6px; }
}

@media (max-width: 720px) {
  .alaune__carousel { flex-direction: column; align-items: stretch; gap: 10px; padding: 14px 0; }
  .alaune__nav { justify-content: space-between; }
  .alaune__icone { width: 40px; height: 40px; }
  .alaune__slide { gap: 14px; }
  .alaune__lien { margin-left: 54px; margin-top: 4px; }
}

@media (max-width: 560px) {
  /* Bandeau très court sur téléphone : le détail est sur la page liée */
  .alaune__texte { display: none; }
  .alaune__titre { font-size: .99rem; }
  .alaune__lien { flex: 0 0 100%; }       /* le lien prend sa propre ligne */
}

/* ---------- 12 ter. Prise de rendez-vous ---------- */
.rdv-etapes { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; align-items: start; }

.rdv-champ { display: block; margin-bottom: 20px; }
.rdv-champ > span,
.admin-form label {
  display: block; margin-bottom: 7px;
  font-size: .85rem; font-weight: 600; color: var(--ink);
}
.rdv-champ--requis > span::after { content: " *"; color: var(--accent); }

.rdv-champ input, .rdv-champ select, .rdv-champ textarea,
.admin-form input, .admin-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .97rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.rdv-champ textarea, .admin-form textarea { resize: vertical; }
.rdv-champ input:focus, .rdv-champ select:focus, .rdv-champ textarea:focus,
.admin-form input:focus, .admin-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-100);
}

.rdv-aide, .admin-aide { margin: 7px 0 0; font-size: .87rem; color: var(--muted); }
.admin-aide code { background: var(--surface-alt); padding: 1px 6px; border-radius: 5px; font-size: .92em; }
.admin-form input, .admin-form textarea { margin-bottom: 18px; }
.admin-form h2 { font-size: 1.15rem; }

/* Calendrier */
.rdv-calendrier__tete {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.rdv-calendrier__mois { font-weight: 650; color: var(--ink); text-transform: capitalize; }
.rdv-calendrier__nav { display: flex; gap: 8px; }

.rdv-semaine, .rdv-grille {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.rdv-semaine {
  margin-bottom: 8px;
  font-size: .74rem; font-weight: 650; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); text-align: center;
}

.rdv-jour {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font: inherit; font-size: .95rem; font-weight: 500;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .14s ease, color .14s ease, border-color .14s ease;
}
.rdv-jour:hover:not([disabled]) { background: var(--brand-50); border-color: var(--brand-100); }
.rdv-jour[disabled] { background: transparent; color: var(--line); cursor: default; }
.rdv-jour[aria-current="date"] { background: var(--brand); color: #fff; font-weight: 600; }

/* Créneaux horaires */
.rdv-heures { display: flex; flex-wrap: wrap; gap: 8px; }
.rdv-heure {
  padding: 10px 16px;
  font: inherit; font-size: .93rem; font-weight: 500;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .14s ease, color .14s ease, border-color .14s ease;
}
.rdv-heure:hover { background: var(--brand-50); border-color: var(--brand-100); }
.rdv-heure[aria-current="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

.rdv-vide { color: var(--muted); font-size: .93rem; margin: 0; }

.rdv-resume {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; margin-bottom: 26px;
  background: var(--brand-50);
  border-radius: var(--radius-sm);
  font-weight: 600; color: var(--brand);
}

.rdv-piege { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.rdv-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

.rdv-choix { display: flex; gap: 20px; flex-wrap: wrap; }
.rdv-choix label, .rdv-consentement {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; font-weight: 400; color: var(--text); cursor: pointer;
}
.rdv-choix input, .rdv-consentement input { width: auto; margin-top: 4px; flex: none; }
.rdv-consentement { margin-bottom: 24px; }

@media (max-width: 860px) {
  .rdv-etapes { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  /* Quelques pixels gagnés pour agrandir les cases du calendrier */
  .rdv-etapes .card { padding: 18px; }
  .rdv-semaine, .rdv-grille { gap: 4px; }
}
@media (max-width: 520px) {
  .rdv-duo { grid-template-columns: 1fr; }
}

/* ---------- 13. Carte & accès ---------- */
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-alt);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); margin: 0; }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { flex: none; color: var(--brand); margin-top: 3px; }
.info-list dt, .info-list__label { font-size: .82rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-list__value { color: var(--ink); font-weight: 500; }
.info-list__value a { text-decoration: none; }

/* ---------- 14. Pied de page ---------- */
.site-footer {
  background: #002E43;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
  padding: 64px 0 28px;
}
.site-footer h4 {
  color: #fff; font-size: .82rem; font-weight: 650;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.site-footer__brand img { width: 40px; background: #fff; border-radius: 9px; padding: 4px; }
.site-footer__brand span { color: #fff; font-weight: 650; letter-spacing: -.01em; }
.site-footer__bottom {
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .88rem; color: rgba(255,255,255,.55);
}
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__bottom li { margin: 0; }

/* ---------- 15. Responsive ---------- */
@media (max-width: 1180px) {
  .brand__sub { display: none; }
  .site-header__inner { gap: 16px; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__figure { order: -1; }
  .hero__figure img { aspect-ratio: 16 / 9; }
  .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .header-phone span { display: none; }
  .header-actions .btn { display: none; }

  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav > .btn { display: inline-flex; }
  .nav a { padding: 13px 12px; font-size: 1rem; border-radius: 10px; }
  .nav a.btn { margin-top: 10px; padding: 14px 20px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .cta, .nav-toggle { display: none; }
  body { color: #000; font-size: 12pt; }
}
