:root {
  --ink: #121820;
  --ink-soft: #3a4450;
  --muted: #66707c;
  --paper: #f4f5f7;
  --paper-2: #e9ebef;
  --white: #ffffff;
  --line: rgba(18, 24, 32, 0.1);
  --accent: #121820;
  --accent-soft: #4a5562;
  --urgent: #b42318;
  --urgent-dark: #8f1c13;
  --danger: #b42318;
  --ok: #1f6b4a;
  --shadow: 0 16px 40px rgba(18, 24, 32, 0.08);
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --banner-h: 3.25rem;
  --header-h: 4rem;
  --radius: 0.55rem;
  --btn-h: 3rem;
  --btn-h-lg: 3.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #e9eef4 0%, var(--paper) 28%, #f7f8fa 100%);
  line-height: 1.65;
  padding-top: var(--banner-h);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(720px, 100%); margin-inline: auto; }
.narrow-content { width: min(820px, 100%); margin-inline: auto; }
.prose--wide { max-width: none; }
.lead-block { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.lead-block p { margin-top: 0; }

.zone-block {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.zone-block__media {
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.zone-block__media img { width: 100%; height: 100%; object-fit: cover; }
.commune-pills {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.commune-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  background: #eef4f8;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.commune-pills svg { width: 0.95rem; height: 0.95rem; color: var(--ink-soft); }

.guides { display: grid; gap: 1rem; }
.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem;
}
.guide-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.guide-card .btn { margin-top: 1rem; }
.doc-card .btn { margin-top: 0.85rem; align-self: flex-start; }

@media (min-width: 900px) {
  .zone-block { grid-template-columns: 0.95fr 1.05fr; align-items: center; }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker--light { color: rgba(255,255,255,0.78); }
.kicker--on-dark { color: rgba(255,255,255,0.65); }

/* Unified buttons - ink + urgent only */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-h);
  height: var(--btn-h);
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  color: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; stroke: currentColor; }
.btn--sm { min-height: 2.4rem; height: 2.4rem; padding: 0 0.9rem; font-size: 0.85rem; }
.btn--lg { min-height: var(--btn-h-lg); height: var(--btn-h-lg); padding: 0 1.25rem; font-size: 0.95rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #243040; }
.btn--secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--secondary:hover { border-color: rgba(18,24,32,0.25); background: #f8fafc; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f1f5f9; }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.7); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--urgent { background: var(--urgent); color: #fff; }
.btn--urgent:hover { background: var(--urgent-dark); }
.btn--on-urgent { background: #fff; color: var(--urgent-dark); }
.btn--on-urgent:hover { background: #ffe8e6; }
.btn--on-urgent-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn--on-urgent-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-label-short { display: none; }

/* Urgency banner */
.urgency-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--urgent);
  color: #fff;
  min-height: var(--banner-h);
}
.urgency-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: var(--banner-h);
  padding-block: 0.4rem;
}
.urgency-banner__label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 0;
  flex: 1;
}
.urgency-banner__label svg { width: 1.05rem; height: 1.05rem; color: #fff; flex-shrink: 0; }
.urgency-banner__full { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.urgency-banner__short { display: none; font-weight: 700; }
.urgency-banner__actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
.urgency-banner__actions .btn {
  min-height: 2.35rem;
  height: 2.35rem;
  padding: 0 0.85rem;
  font-size: 0.84rem;
}

/* Header */
.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 50;
  background: rgba(243, 245, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.site-nav { display: none; align-items: center; gap: 0.35rem; }
.nav-link {
  padding: 0.5rem 0.65rem;
  border-radius: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-link:hover, .nav-link.is-active, .nav-dropdown.is-active > .nav-link { color: var(--ink); background: rgba(14,23,38,0.05); }
.nav-dropdown { position: relative; z-index: 1; }
.nav-dropdown:hover,
.nav-dropdown:focus-within { z-index: 20; }
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14.5rem;
  margin-top: 0.2rem;
  padding: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
}
/* Pont invisible pour ne pas perdre le hover entre le bouton et le menu */
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.35rem;
  height: 0.35rem;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu { display: block; }
/* Un seul sous-menu visible : celui survolé prime sur le focus d’un voisin */
.site-nav:has(.nav-dropdown:hover) .nav-dropdown:not(:hover) .nav-dropdown__menu {
  display: none;
}
.nav-dropdown__link {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-dropdown__link:hover, .nav-dropdown__link.is-active { background: var(--paper-2); color: var(--ink); }
.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }
.menu-btn {
  width: 2.5rem; height: 2.5rem;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  border: 0; background: transparent; cursor: pointer;
}
.menu-btn__bar { display: block; width: 1.15rem; height: 1.5px; background: var(--ink); }

.mobile-menu { position: fixed; inset: 0; z-index: 70; visibility: hidden; pointer-events: none; }
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu__overlay { position: absolute; inset: 0; background: rgba(14,23,38,0.45); opacity: 0; transition: opacity 0.2s; }
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; width: min(22rem, 90vw); height: 100%;
  background: #fff; padding: 1.25rem; overflow: auto;
  transform: translateX(100%); transition: transform 0.25s ease;
  display: flex; flex-direction: column;
}
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.menu-close { border: 0; background: transparent; font-size: 1.2rem; cursor: pointer; }
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.mobile-menu__group,
.mobile-menu__item {
  margin: 0;
  padding: 0;
}
.mobile-menu__group {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #f7f9fb;
  padding: 0.7rem 0.75rem 0.35rem;
}
.mobile-menu__group-title {
  margin: 0 0 0.35rem;
  padding: 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.mobile-menu__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__link {
  display: block;
  padding: 0.7rem 0.35rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}
.mobile-menu__link--child {
  padding-left: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom-color: rgba(18, 24, 32, 0.08);
  position: relative;
}
.mobile-menu__link--child::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(18, 24, 32, 0.22);
  transform: translateY(-50%);
}
.mobile-menu__sublist li:last-child .mobile-menu__link { border-bottom: 0; }
.mobile-menu__link--root {
  font-size: 1.02rem;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.85rem 0.95rem;
  background: #fff;
}
.mobile-menu__link.is-active,
.mobile-menu__link--child.is-active {
  color: var(--ink);
  font-weight: 700;
}
.mobile-menu__cta { margin-top: 1.35rem; }

/* Hero */
.hero--home {
  position: relative;
  height: calc(100svh - var(--banner-h) - var(--header-h));
  min-height: 30rem;
  max-height: 46rem;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(10,14,20,0.45) 0%, rgba(10,14,20,0.72) 55%, rgba(10,14,20,0.82) 100%);
  padding: 2.5rem 0;
}
.hero__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(40rem, 100%);
  margin: 0 auto;
  color: #fff;
}
.hero__kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero__hl {
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  color: #f3e7d6;
  font-size: 1.06em;
  letter-spacing: 0.015em;
  text-shadow: 0 0 24px rgba(243, 231, 214, 0.35), 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero__support {
  margin: 0 auto 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
  max-width: 34rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}
.hero__actions .btn--lg {
  min-width: 0;
  width: auto;
  flex: 0 1 auto;
}

.page-hero {
  position: relative;
  padding: 2.75rem 0 2.25rem;
  background: linear-gradient(180deg, #e7edf4 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.page-hero__subtitle { margin: 0.75rem 0 0; color: var(--muted); font-size: 1.05rem; max-width: 38rem; }
.page-hero--photo {
  color: #fff;
  min-height: 16rem;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.page-hero--photo .container { position: relative; z-index: 1; padding: 2.5rem 0; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,23,38,0.88) 0%, rgba(14,23,38,0.45) 70%);
}
.page-hero--zone { position: relative; color: #fff; overflow: hidden; min-height: 17rem; display: flex; align-items: flex-end; padding: 0; }
.page-hero--zone .container { position: relative; z-index: 1; padding: 2.5rem 0; }
.page-hero--zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,23,38,0.86) 0%, rgba(14,23,38,0.4) 75%);
}

.section { padding: 3.75rem 0; }
.section--tint { background: rgba(255,255,255,0.55); border-block: 1px solid var(--line); }
.sec-head { margin-bottom: 1.5rem; }
.sec-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.sec-title--sm { font-size: 1.35rem; margin-bottom: 1rem; }

.prose { max-width: 42rem; }
.prose .lead, .lead { font-size: 1.08rem; color: var(--ink-soft); }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.15rem; }
.note {
  padding: 0.95rem 1rem;
  background: #eef4f8;
  border-left: 3px solid var(--ink-soft);
  border-radius: 0.35rem;
  font-size: 0.95rem;
}
.promise {
  margin: 1.5rem 0 0;
  padding: 1.35rem 1.4rem;
  border-left: 3px solid var(--accent);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.split__media {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.content-layout { display: grid; gap: 2rem; }
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--banner-h) + var(--header-h) + 1rem);
}
.side-card__label { margin: 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.side-card__meta { margin: 0; color: var(--muted); font-size: 0.9rem; }
.side-card__promise { margin: 0.35rem 0 0; font-size: 0.92rem; color: var(--ink-soft); }
.side-card img { border-radius: 0.65rem; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.side-card .btn--block { min-width: 0; }

.teasers {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.teaser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.teaser:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.teaser__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.teaser__media img { width: 100%; height: 100%; object-fit: cover; }
.teaser__body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
}
.teaser h2 { margin: 0; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -0.015em; color: var(--ink); }
.teaser p { margin: 0; color: var(--muted); }
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}
.link svg { width: 1rem; height: 1rem; color: currentColor; }

.engagements__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.engagements__list li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 0.75rem; padding: 0.95rem 1rem;
}
.engagements__list svg { width: 1.15rem; height: 1.15rem; color: var(--ink); flex-shrink: 0; margin-top: 0.1rem; }

.communes-block { text-align: center; max-width: 46rem; margin-inline: auto; }
.communes-block__links { display: flex; justify-content: center; gap: 0.65rem; margin-top: 1.25rem; flex-wrap: wrap; }
.communes-block__links .btn { min-width: 10rem; }

.domains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin: 1.25rem 0; }
.domain-card {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 0.7rem; padding: 0.85rem 1rem;
}
.domain-card svg { width: 1.15rem; height: 1.15rem; color: var(--ink-soft); }

.steps { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: 1rem; padding: 1.15rem 1.25rem;
}
.step__num { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); font-weight: 600; }
.step h2, .step h3 { margin: 0 0 0.35rem; font-size: 1.15rem; font-family: var(--font-display); font-weight: 600; }
.step p { margin: 0; color: var(--muted); }

/* Long pages (Le métier / Le cabinet) */
.section--intro-long { padding-top: 2.5rem; padding-bottom: 1.5rem; }
.longpage-intro {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
.longpage-intro__text { margin: 0; max-width: 42rem; }
.page-toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}
.page-toc__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.page-toc__list a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.page-toc__list a:hover {
  background: #eef4f8;
  color: var(--ink);
}
.chapter {
  padding: 3.25rem 0;
  scroll-margin-top: calc(var(--banner-h) + var(--header-h) + 0.75rem);
}
.chapter--tint {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--line);
}
.chapter--panel-wrap { padding: 2.5rem 0; }
.chapter__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.chapter__head { margin-bottom: 1.75rem; }
.chapter__head .lead-block { margin-bottom: 0; }
.chapter__bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.chapter__bullets li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 2.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.chapter__bullets li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.05rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ink);
}
.chapter__closing {
  margin: 1.75rem auto 0;
  max-width: 46rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border-left: 3px solid var(--ink);
  border-radius: 0.45rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.chapter__closing-text { margin: 1.5rem 0 0; text-align: center; }
.chapter .note { margin-top: 1.25rem; }
.domains--chapter { margin-top: 2rem; }

.compare-grid {
  display: grid;
  gap: 1rem;
}
.compare-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}
.compare-card--highlight {
  background: #121820;
  border-color: #121820;
  color: #fff;
}
.compare-card--highlight p { color: rgba(255, 255, 255, 0.82); }
.compare-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}
.compare-card p { margin: 0; color: var(--ink-soft); }

.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.info-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.commune-list { list-style: none; margin: 0 0 0.75rem; padding: 0; display: grid; gap: 0.45rem; }
.commune-list li { display: flex; align-items: center; gap: 0.45rem; color: var(--ink-soft); }
.commune-list svg { width: 1rem; height: 1rem; color: var(--ink-soft); }

.checklist { list-style: none; margin: 1.25rem 0; padding: 0; display: grid; gap: 0.55rem; }
.checklist li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 0.65rem; padding: 0.8rem 1rem;
}
.checklist svg { width: 1.1rem; height: 1.1rem; color: var(--ink); margin-top: 0.15rem; }

.docs-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
.doc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 1rem; padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.doc-card > svg { width: 1.35rem; height: 1.35rem; color: var(--ink); }
.doc-card h2 { margin: 0; font-family: var(--font-display); font-size: 1.2rem; }
.doc-card p { margin: 0; color: var(--muted); }
.doc-card .btn { color: #fff; }
.doc-card .btn svg { color: currentColor; }

.faq-list { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 0.8rem; padding: 0.95rem 1.1rem;
}
.faq-item summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.75rem 0 0; color: var(--muted); }

.contact-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
.contact-main { min-width: 0; }
.contact-aside { min-width: 0; }
.contact-cards { display: grid; gap: 0.85rem; }
.contact-card {
  display: flex; gap: 0.9rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 1rem; padding: 1.1rem 1.2rem;
}
.contact-card svg { width: 1.35rem; height: 1.35rem; color: var(--ink); }
.contact-card strong { display: block; }
.contact-card span { color: var(--muted); font-size: 0.92rem; }
.contact-photo {
  margin-top: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }

.panel-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  height: auto;
  align-self: start;
}
.panel-form h2 { margin: 0 0 1rem; font-family: var(--font-display); font-size: 1.35rem; }

.lead-form .field { margin-bottom: 0.85rem; }
.lead-form .field > label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.lead-form .field input,
.lead-form .field select,
.lead-form .field textarea,
.lead-form input:not([type="checkbox"]):not([type="hidden"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fff;
}
.field-row { display: grid; gap: 0.75rem; }
/* Case à cocher : grille 2 colonnes (box | texte), jamais empilée */
.check {
  display: grid !important;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: start;
  margin: 1rem 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.check input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  grid-column: 1;
  grid-row: 1;
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem !important;
  max-width: 1.25rem !important;
  min-height: 1.25rem !important;
  margin: 0.2em 0 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  accent-color: var(--ink);
  cursor: pointer;
  justify-self: start;
}
.check__text {
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.45;
  cursor: pointer;
}
.form-msg { margin: 0.85rem 0 0; font-weight: 600; }
.form-msg.is-ok { color: var(--ok); }
.form-msg.is-error { color: var(--danger); }

.cta-band { background: var(--ink); color: #eef1f4; padding: 3.25rem 0; }
.cta-band__inner { display: grid; gap: 1.5rem; }
.cta-band__title { margin: 0 0 0.5rem; font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.02em; }
.cta-band__text { margin: 0; color: rgba(238,241,244,0.72); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }
.cta-band__actions .btn--lg { min-width: 12rem; }

.punchline {
  padding: 2.75rem 0; text-align: center; background: #e7edf4; border-block: 1px solid var(--line);
}
.punchline p {
  margin: 0 auto; max-width: 28rem;
  font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.75rem); line-height: 1.28; letter-spacing: -0.02em;
}

.related__grid { display: grid; gap: 0.75rem; }
.related__card {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.15rem; background: var(--white); border: 1px solid var(--line); border-radius: 0.75rem; font-weight: 600;
}
.related__card svg { width: 1.1rem; height: 1.1rem; color: var(--ink); }

.media-band { margin: 0; }
.media-band img { width: 100%; max-height: 24rem; object-fit: cover; }
.media-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 2rem 0 0;
}
.media-strip--single { grid-template-columns: 1fr; max-width: 28rem; }
.media-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.85rem;
}

.site-footer { background: #0a1220; color: #d9e2ec; padding: 3rem 0 1.5rem; }
.site-footer__grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.site-footer__brand { margin: 0; font-family: var(--font-display); font-size: 1.4rem; }
.site-footer__tagline, .site-footer__meta { margin: 0.25rem 0; color: rgba(217,226,236,0.65); }
.site-footer__promise { margin: 0.85rem 0 0; max-width: 28rem; }
.site-footer__label { margin: 0 0 0.65rem; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(217,226,236,0.55); font-weight: 700; }
.site-footer__phone { display: inline-block; font-size: 1.35rem; font-weight: 700; margin-bottom: 0.25rem; }
.site-footer__email { display: inline-block; margin-top: 0.35rem; }
.site-footer__nav { display: grid; gap: 0.4rem; }
.site-footer__nav a { color: rgba(217,226,236,0.85); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; justify-content: space-between;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: rgba(217,226,236,0.55);
}
.site-footer__bottom nav { display: flex; gap: 1rem; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal.is-open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(14,23,38,0.55); }
.modal__panel {
  position: relative;
  z-index: 1;
  width: min(34rem, 100%);
  max-height: min(92vh, 100%);
  margin: 0;
  overflow: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.modal__brandbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 245, 248, 0.96);
  flex-shrink: 0;
}
.brand--modal { gap: 0.55rem; min-width: 0; pointer-events: none; }
.brand--modal .brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  font-size: 0.95rem;
}
.brand--modal .brand__name { font-size: 1.05rem; }
.brand--modal .brand__sub { font-size: 0.7rem; }
.modal__body { padding: 1.15rem 1.25rem 1.5rem; }
.modal__close {
  position: static;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--ink);
}
.modal__close:hover { background: rgba(14,23,38,0.06); }
.modal__panel h2 { margin: 0 0 0.5rem; font-family: var(--font-display); font-size: 1.45rem; }
.modal__intro { margin: 0 0 1.15rem; color: var(--muted); }
@media (max-width: 640px) {
  .modal { padding: 0; align-items: stretch; }
  .modal__panel {
    width: 100%;
    max-height: none;
    min-height: 100%;
    border-radius: 0;
  }
  .modal__brandbar {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0.75rem 0.9rem;
    background: #fff;
    box-shadow: 0 1px 0 var(--line);
  }
  .brand--modal .brand__mark {
    width: 2.25rem;
    height: 2.25rem;
  }
  .brand--modal .brand__name { font-size: 1.08rem; }
  .brand--modal .brand__sub { font-size: 0.72rem; }
  .modal__body { padding: 1.1rem 1rem 2rem; }
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .menu-btn { display: none; }
  .teasers { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .domains { grid-template-columns: repeat(4, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .engagements__list { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .content-layout { grid-template-columns: 1.45fr 0.9fr; align-items: start; }
  .contact-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .cta-band__inner { grid-template-columns: 1.2fr auto; align-items: center; }
  .related__grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .split--reverse .split__media { order: 2; }
  .longpage-intro { grid-template-columns: 1.35fr 0.9fr; gap: 2.5rem; align-items: start; }
  .page-toc { position: sticky; top: calc(var(--banner-h) + var(--header-h) + 1rem); }
  .compare-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .info-panel { padding: 2.25rem 2.4rem; }
}

@media (max-width: 760px) {
  .urgency-banner__full { display: none; }
  .urgency-banner__short { display: inline; }
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  .urgency-banner__actions .btn { padding: 0 0.7rem; }
  .urgency-banner__call { display: none !important; }
  .urgency-banner__callback {
    background: #fff;
    border-color: #fff;
    color: var(--urgent-dark);
  }
  .urgency-banner__callback:hover {
    background: #ffe8e6;
    border-color: #ffe8e6;
    color: var(--urgent-dark);
  }
}

@media (max-width: 640px) {
  .hero--home { min-height: 28rem; height: auto; padding: 0; }
  .hero__overlay { position: relative; min-height: 28rem; padding: 2.25rem 0; }
  .hero__media { position: absolute; }
  .hero__actions {
    width: 100%;
    gap: 0.5rem;
  }
  .hero__actions .btn--lg {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    height: auto;
    min-height: 2.65rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
    justify-content: center;
  }
  .cta-band__actions .btn--lg { width: auto; min-width: 0; }
  .media-strip { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
