:root {
  --navy-950: #081423;
  --navy-900: #0d1b2d;
  --navy-850: #13243a;
  --navy-800: #17314d;
  --gold-500: #c89b3c;
  --gold-400: #ddb869;
  --gold-300: #eed39a;
  --sand-200: #efe6d2;
  --sand-100: #f6f0e4;
  --ink-900: #172230;
  --ink-700: #304252;
  --line-dark: rgba(221, 184, 105, 0.22);
  --line-light: rgba(23, 34, 48, 0.14);
  --white-soft: rgba(255, 255, 255, 0.82);
  --shadow-deep: 0 28px 80px rgba(4, 11, 20, 0.35);
  --shadow-soft: 0 18px 50px rgba(12, 22, 34, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(200, 155, 60, 0.16), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(238, 211, 154, 0.08), transparent 20%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--sand-100);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.vu {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(8, 20, 35, 0.84);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
  flex: 0 1 auto;
}

.logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo b {
  display: block;
  color: var(--sand-100);
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.logo span {
  display: block;
  margin-top: 3px;
  color: var(--gold-300);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(221, 184, 105, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--sand-100);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle .nav-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px 22px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  min-width: 0;
}

nav a {
  position: relative;
  text-decoration: none;
  color: var(--white-soft);
  padding-bottom: 4px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.25s ease;
}

nav a:hover,
nav a.actif {
  color: var(--gold-300);
}

nav a:hover::after,
nav a.actif::after {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(221, 184, 105, 0.12), transparent 40%),
    radial-gradient(circle at 10% 10%, rgba(221, 184, 105, 0.16), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.07), transparent 20%);
  pointer-events: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(7, 14, 24, 0.76) 0%, rgba(7, 14, 24, 0.68) 34%, rgba(7, 14, 24, 0.34) 56%, rgba(7, 14, 24, 0.56) 100%),
    linear-gradient(180deg, rgba(8, 17, 30, 0.08), rgba(8, 17, 30, 0.34)),
    url("img/service-logistique.jpg") center right / cover no-repeat;
  transform: scale(1.02);
  transform-origin: center;
  pointer-events: none;
  opacity: 1;
  filter: brightness(1.12) contrast(1.17) saturate(1.06);
}

.hero-home .hero-grid {
  position: relative;
  z-index: 2;
}

.hero-grid-home {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 18px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-radar {
  justify-self: end;
  width: min(100%, 670px);
  margin-right: -44px;
  filter: drop-shadow(0 34px 64px rgba(0, 0, 0, 0.34));
}

.hero-radar-stage {
  --radar-angle: 0deg;
  position: relative;
  aspect-ratio: 1;
  isolation: isolate;
}

.hero-radar-shell {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(221, 184, 105, 0.05), transparent 26%),
    radial-gradient(circle at center, rgba(10, 25, 42, 0.52), rgba(6, 15, 28, 0.04) 72%, transparent 84%);
}

.hero-radar-stage::before {
  content: "";
  position: absolute;
  inset: 10% 6% 10% 6%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(6, 15, 28, 0), rgba(6, 15, 28, 0.06) 74%, transparent 84%);
  pointer-events: none;
}

.hero-radar-stage::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 105, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 52px rgba(24, 53, 83, 0.2);
  pointer-events: none;
}

.hero-radar-map {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  overflow: visible;
  opacity: 0.94;
}

.radar-route,
.radar-axis {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.radar-route {
  stroke: rgba(112, 143, 176, 0.38);
  stroke-width: 0.55;
}

.radar-route-main,
.radar-route-west,
.radar-route-north {
  stroke: rgba(221, 184, 105, 0.22);
  stroke-width: 0.72;
  stroke-dasharray: 3.5 6.5;
  animation: corridorFlow 14s linear infinite;
}

.radar-route-west {
  stroke-opacity: 0.74;
  animation-duration: 16s;
}

.radar-route-north {
  stroke-opacity: 0.68;
  animation-duration: 18s;
}

.radar-route-secondary {
  stroke: rgba(112, 143, 176, 0.24);
  stroke-dasharray: 1.6 2.8;
}

.radar-axis {
  stroke: rgba(221, 184, 105, 0.1);
  stroke-width: 0.4;
}

.hero-radar-grid,
.hero-radar-sweep,
.hero-radar-center,
.hero-radar-ring,
.hero-radar-ticks,
.radar-point,
.city-badge,
.zone-tag {
  position: absolute;
}

.hero-radar-grid {
  inset: 7%;
  border-radius: 50%;
  background:
    linear-gradient(rgba(112, 143, 176, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 143, 176, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0 74%, transparent 88%);
  opacity: 0.38;
}

.hero-radar-ring {
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 105, 0.15);
  transform: translate(-50%, -50%);
}

.hero-radar-ring-1 {
  width: 34%;
  height: 34%;
}

.hero-radar-ring-2 {
  width: 58%;
  height: 58%;
}

.hero-radar-ring-3 {
  width: 82%;
  height: 82%;
}

.hero-radar-ring-4 {
  width: 98%;
  height: 98%;
  border-color: rgba(112, 143, 176, 0.12);
}

.hero-radar-ticks {
  inset: 3%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(221, 184, 105, 0.24) 0deg 1deg, transparent 1deg 14deg);
  mask-image: radial-gradient(circle at center, transparent 0 86%, black 90% 100%);
  opacity: 0.46;
}

.hero-radar-center {
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 236, 188, 1) 0%, rgba(221, 184, 105, 0.92) 55%, rgba(221, 184, 105, 0) 100%);
  box-shadow: 0 0 22px rgba(221, 184, 105, 0.5);
}

.hero-radar-sweep {
  inset: 2%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 314deg, rgba(221, 184, 105, 0.03) 330deg, rgba(221, 184, 105, 0.1) 342deg, rgba(221, 184, 105, 0.22) 351deg, rgba(255, 246, 221, 0.52) 358deg, rgba(255, 246, 221, 0.12) 360deg);
  mix-blend-mode: screen;
  transform: rotate(var(--radar-angle));
  opacity: 0.92;
  filter: blur(0.55px);
}

.radar-point {
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 204, 224, 0.82) 0%, rgba(125, 154, 181, 0.74) 44%, rgba(72, 95, 121, 0.08) 100%);
  box-shadow:
    0 0 0 4px rgba(80, 116, 150, 0.08),
    0 0 16px rgba(80, 116, 150, 0.18);
  transform: scale(calc(0.92 + var(--city-glow, 0) * 0.22));
  opacity: calc(0.76 + var(--city-glow, 0) * 0.24);
  animation: cityTwinkle var(--twinkle-duration, 5.8s) ease-in-out infinite;
  animation-delay: var(--twinkle-delay, 0s);
  transition: transform 0.42s ease, opacity 0.42s ease, box-shadow 0.42s ease, background 0.42s ease;
}

.radar-point::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 184, 105, 0.18) 0%, rgba(221, 184, 105, 0.05) 38%, rgba(221, 184, 105, 0) 72%);
  opacity: 0.28;
  transform: scale(0.88);
  animation: haloBreathe var(--twinkle-duration, 5.8s) ease-in-out infinite;
  animation-delay: var(--twinkle-delay, 0s);
}

.radar-point::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 105, calc(0.12 + var(--city-glow, 0) * 0.3));
  transform: scale(calc(0.88 + var(--city-glow, 0) * 1.2));
  opacity: calc(0.12 + var(--city-glow, 0) * 0.52);
  transition: transform 0.42s ease, opacity 0.42s ease, border-color 0.42s ease;
}

.radar-point.is-hot {
  background: radial-gradient(circle, rgba(255, 248, 228, 1) 0%, rgba(221, 184, 105, 1) 42%, rgba(221, 184, 105, 0.14) 100%);
  box-shadow:
    0 0 0 6px rgba(221, 184, 105, 0.1),
    0 0 26px rgba(221, 184, 105, 0.44);
}

.radar-point-primary {
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  box-shadow:
    0 0 0 8px rgba(221, 184, 105, 0.1),
    0 0 30px rgba(221, 184, 105, 0.42);
}

.radar-point-primary::before {
  inset: -14px;
  background: radial-gradient(circle, rgba(221, 184, 105, 0.22) 0%, rgba(221, 184, 105, 0.08) 42%, rgba(221, 184, 105, 0) 72%);
  opacity: 0.8;
  transform: scale(0.94);
  animation: pointCorePulse 4.8s ease-in-out infinite;
}

.radar-point-primary.is-hot {
  box-shadow:
    0 0 0 10px rgba(221, 184, 105, 0.14),
    0 0 38px rgba(221, 184, 105, 0.58);
}

.city-badge {
  color: rgba(183, 204, 224, 0.74);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 4px 8px 4px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 14, 24, 0.44), rgba(7, 14, 24, 0));
  text-shadow:
    0 0 10px rgba(7, 14, 24, 0.7),
    0 0 18px rgba(7, 14, 24, 0.42);
  opacity: calc(0.56 + var(--city-glow, 0) * 0.52);
  transform: translate(12px, -14px);
  transition: opacity 0.42s ease, color 0.42s ease, text-shadow 0.42s ease, background 0.42s ease;
}

.city-badge::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(221, 184, 105, 0), rgba(221, 184, 105, 0.48));
  transform: translateY(-50%);
  opacity: calc(0.24 + var(--city-glow, 0) * 0.52);
  transition: opacity 0.34s ease, background 0.34s ease;
}

.city-badge.is-hot {
  color: rgba(255, 241, 210, 0.98);
  text-shadow:
    0 0 12px rgba(221, 184, 105, 0.32),
    0 0 24px rgba(221, 184, 105, 0.12);
}

.city-badge-primary {
  color: rgba(255, 241, 210, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.city-badge[data-city="Brazzaville"] {
  transform: translate(20px, -12px);
}

.city-badge[data-city="Dolisie"] {
  transform: translate(10px, 18px);
}

.city-badge[data-city="Mossendjo"] {
  transform: translate(-116px, -2px);
}

.city-badge[data-city="Nkayi"] {
  transform: translate(22px, 18px);
}

.city-badge[data-city="Sibiti"] {
  transform: translate(-96px, -24px);
}

.city-badge[data-city="Kinkala"] {
  transform: translate(18px, 10px);
}

.city-badge[data-city="Owando"] {
  transform: translate(18px, -8px);
}

.city-badge[data-city="Oyo"] {
  transform: translate(18px, -22px);
}

.city-badge[data-city="Ouesso"] {
  transform: translate(-88px, -12px);
}

.city-badge[data-city="Impfondo"] {
  transform: translate(16px, -30px);
}

.zone-tag {
  color: rgba(127, 154, 182, 0.62);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(7, 14, 24, 0.62);
  opacity: 0.68;
}

.zone-tag-primary {
  color: rgba(221, 184, 105, 0.74);
}

.zone-atlantique {
  transform: translate(-4px, 8px);
}

.zone-central {
  transform: translate(30px, 8px);
}

.zone-nord {
  transform: translate(42px, -6px);
}

@keyframes corridorFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -26;
  }
}

@keyframes pointCorePulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.58;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.92;
  }
}

@keyframes haloBreathe {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.18;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.38;
  }
}

@keyframes cityTwinkle {
  0%,
  100% {
    opacity: calc(0.76 + var(--city-glow, 0) * 0.24);
  }

  42% {
    opacity: calc(0.82 + var(--city-glow, 0) * 0.28);
  }

  58% {
    opacity: calc(0.9 + var(--city-glow, 0) * 0.34);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  gap: 44px;
  align-items: center;
}

.hero-grid-single {
  grid-template-columns: minmax(0, 1120px);
  justify-content: start;
}

.sur,
.eyebrow,
.role,
.mini-kicker {
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.74rem;
}

.hero h1,
.bandeau h1,
h2,
.direction h3,
.carte-s h3,
.garantie h3,
.carte-f h3,
.modal-c h3,
.partenaire-d h3,
.service-panel h3,
.contact-card h3 {
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  max-width: 19ch;
}

.hero h1 em,
.bandeau h1 em,
h2 em {
  color: var(--gold-300);
  font-style: normal;
}

.hero p {
  margin-top: 24px;
  max-width: 68ch;
  font-size: 1.1rem;
  line-height: 1.88;
  color: rgba(246, 240, 228, 0.82);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn.plein {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(200, 155, 60, 0.24);
}

.btn.plein:hover,
.envoyer:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(200, 155, 60, 0.3);
}

.btn.ligne {
  border: 1px solid rgba(246, 240, 228, 0.22);
  color: var(--sand-100);
  background: rgba(255, 255, 255, 0.03);
}

.btn.ligne:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.contact-card,
.garantie,
.carte-s,
.carte-f,
.modal-c,
.partenaire-d,
.service-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.presta::before {
  content: "—";
  color: var(--gold-400);
  margin-right: 10px;
  font-weight: 700;
}

section {
  padding: 96px 0;
}

.claire {
  background:
    radial-gradient(circle at top left, rgba(221, 184, 105, 0.18), transparent 28%),
    linear-gradient(180deg, var(--sand-100), var(--sand-200));
  color: var(--ink-900);
}

.claire .eyebrow,
.claire .role,
.claire .mini-kicker,
.claire .sur {
  color: #8d6420;
}

.claire .contact-card,
.claire .garantie,
.claire .carte-s,
.claire .carte-f,
.claire .modal-c,
.claire .partenaire-d,
.claire .service-panel {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.centre {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 18px;
}

.intro {
  max-width: 66ch;
  margin: 0 auto 58px;
  font-size: 1.04rem;
  line-height: 1.88;
  color: inherit;
  opacity: 0.84;
}

.bandeau {
  position: relative;
  overflow: hidden;
  padding: 100px 0 76px;
}

.bandeau::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(221, 184, 105, 0.12), transparent 40%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.bandeau .container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.bandeau h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.5rem);
  max-width: 22ch;
}

.bandeau p {
  margin-top: 22px;
  max-width: 72ch;
  color: rgba(246, 240, 228, 0.82);
  line-height: 1.88;
  font-size: 1.04rem;
}

.filigrane {
  position: absolute;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  bottom: -26px;
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: rgba(221, 184, 105, 0.08);
  pointer-events: none;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.carte-s {
  display: block;
  height: 100%;
  padding: 32px 28px;
  text-align: left;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.carte-s::before {
  content: attr(data-rom);
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-size: 4.6rem;
  color: rgba(221, 184, 105, 0.11);
  line-height: 1;
}

.carte-s:hover,
.garantie:hover,
.carte-f:hover,
.modal-c:hover,
.partenaire-d:hover,
.service-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
}

.rom {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-300);
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.carte-s h3 {
  font-size: 1.52rem;
  margin-bottom: 12px;
}

.carte-s p,
.garantie p,
.direction p,
.detail .txt p,
.partenaire-d p,
.apropos p,
.contact-lead,
.service-summary p {
  line-height: 1.88;
  opacity: 0.84;
}

.decouvrir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.decouvrir::after {
  content: "→";
}

.garanties {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.garantie {
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo,
.cadre-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #112641, #224366);
}

.photo {
  aspect-ratio: 16 / 11;
}

.photo img,
.cadre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.garantie .corps {
  padding: 24px 24px 26px;
}

.garantie h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.apropos {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.apropos-plein {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  max-width: 1180px;
  align-items: stretch;
}

.apropos-copy {
  max-width: 760px;
  align-self: center;
}

.apropos-editorial {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
}

.section-entreprise-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-entreprise-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(248, 243, 232, 0.88) 0%, rgba(248, 243, 232, 0.82) 34%, rgba(248, 243, 232, 0.76) 58%, rgba(248, 243, 232, 0.84) 100%),
    linear-gradient(180deg, rgba(248, 243, 232, 0.16), rgba(248, 243, 232, 0.22)),
    url("img/home-corporate.jpg") center center / cover no-repeat;
  filter: saturate(1.03) contrast(1.14) brightness(0.98);
  transform: scale(1.02);
  pointer-events: none;
  z-index: 0;
}

.section-entreprise-home > * {
  position: relative;
  z-index: 1;
}

.section-entreprise-home .apropos-editorial::before {
  content: none;
}

.apropos-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 243, 232, 0.76), rgba(248, 243, 232, 0.82)),
    url("img/home-corporate.jpg") center center / cover no-repeat;
  opacity: 0.66;
  filter: saturate(1.02) contrast(1.12) brightness(0.98);
  transform: scale(1.01);
  pointer-events: none;
  z-index: 0;
}

.apropos-editorial > * {
  position: relative;
  z-index: 1;
}

.apropos-editorial .apropos-copy {
  max-width: 1020px;
  margin: 0 auto;
}

.apropos-editorial .apropos-copy h2 {
  max-width: 29ch;
  margin-left: auto;
  margin-right: auto;
}

.apropos-editorial .apropos-copy p {
  max-width: 82ch;
  margin-left: auto;
  margin-right: auto;
}

.apropos-editorial .actions {
  justify-content: center;
  width: 100%;
}

.apropos-editorial .actions-editorial-primary {
  display: flex;
  justify-content: center;
}

.apropos-editorial .actions-editorial-secondary {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.apropos-split {
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.96fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
}

.apropos-copy-split {
  max-width: 680px;
}

.apropos-copy-split h2 {
  max-width: 14ch;
}

.apropos-copy-split .actions {
  justify-content: center;
}

.apropos-media {
  position: relative;
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 48, 0.12);
  box-shadow: 0 24px 48px rgba(23, 34, 48, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.7);
}

.apropos-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 243, 232, 0.18), rgba(248, 243, 232, 0.08)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 32%);
  pointer-events: none;
}

.apropos-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04) brightness(1.04);
}

.apropos-textual {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.apropos-copy-textual {
  max-width: 900px;
  margin: 0 auto;
}

.apropos-copy-textual h2 {
  max-width: 24ch;
  margin-left: 0;
  margin-right: 0;
}

.apropos-copy-textual p {
  max-width: 76ch;
  margin-left: 0;
  margin-right: 0;
}

.apropos-copy-textual .actions {
  justify-content: center;
}

.apropos p {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.apropos-copy h2 {
  max-width: 11.5ch;
}

.apropos-textual .apropos-copy h2 {
  max-width: 24ch;
}

.apropos-textual .apropos-copy p {
  max-width: 76ch;
}

.title-balance span {
  display: block;
}

.legal-inline {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.apropos-plein .legal-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 20px;
}

.apropos-plein .legal-inline span {
  align-items: flex-start;
  min-height: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(23, 34, 48, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 14px 28px rgba(23, 34, 48, 0.05);
}

.legal-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(23, 34, 48, 0.78);
  font-size: 0.92rem;
}

.legal-inline strong {
  color: var(--ink-900);
}

.apropos-ornement {
  position: relative;
  min-height: 100%;
  border-radius: 32px;
  border: 1px solid rgba(23, 34, 48, 0.08);
  background:
    radial-gradient(circle at 24% 24%, rgba(221, 184, 105, 0.16), transparent 0 18%),
    radial-gradient(circle at 68% 36%, rgba(23, 49, 77, 0.08), transparent 0 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(239, 230, 210, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 18px 40px rgba(23, 34, 48, 0.08);
  overflow: hidden;
}

.apropos-ornement::before,
.apropos-ornement::after {
  content: "";
  position: absolute;
  inset: 0;
}

.apropos-ornement::before {
  background:
    linear-gradient(90deg, rgba(23, 34, 48, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(23, 34, 48, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.06), black 20%, black 82%, rgba(0, 0, 0, 0.06));
  opacity: 0.32;
}

.apropos-ornement::after {
  inset: 12%;
  border-radius: 28px;
  border: 1px solid rgba(141, 100, 32, 0.14);
  background:
    radial-gradient(circle at 50% 50%, rgba(221, 184, 105, 0.08), transparent 48%),
    repeating-linear-gradient(135deg, rgba(23, 34, 48, 0.04) 0 2px, transparent 2px 18px);
  opacity: 0.9;
}

.ornement-monogram,
.ornement-kicker {
  position: absolute;
  z-index: 1;
}

.ornement-monogram {
  right: 10%;
  bottom: 10%;
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(5.8rem, 8vw, 8.6rem);
  line-height: 0.9;
  color: rgba(141, 100, 32, 0.13);
  letter-spacing: -0.04em;
}

.ornement-kicker {
  left: 12%;
  bottom: 14%;
  color: rgba(141, 100, 32, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.embleme-grand {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-light);
  background:
    radial-gradient(circle at center, rgba(221, 184, 105, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 230, 210, 0.88));
  box-shadow: var(--shadow-soft);
}

.embleme-grand img {
  width: min(280px, 80%);
  height: auto;
}

.service-summary {
  padding: 28px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.service-summary ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-summary li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(23, 49, 77, 0.08);
  color: var(--ink-900);
  font-size: 0.86rem;
  border: 1px solid rgba(23, 34, 48, 0.1);
}

.direction {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.direction h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.direction .role {
  display: block;
  margin-bottom: 18px;
}

.direction p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.lien-or {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.claire .lien-or {
  color: #8d6420;
}

.fiche {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(23, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.fiche .row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid rgba(23, 34, 48, 0.1);
}

.fiche .row:last-child {
  border-bottom: 0;
}

.fiche .lab,
.fiche .val {
  padding: 16px 20px;
}

.fiche .lab {
  color: #8d6420;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-right: 1px solid rgba(23, 34, 48, 0.1);
}

.fiche .val {
  color: var(--ink-900);
  line-height: 1.72;
}

.detail {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 30px;
  align-items: center;
}

.detail .txt p {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.detail .txt .actions {
  margin-top: 28px;
}

.visuel-s {
  position: relative;
}

.cadre-photo {
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 34, 48, 0.16);
  box-shadow: var(--shadow-soft);
}

.num {
  position: absolute;
  right: 18px;
  bottom: -36px;
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(4.6rem, 9vw, 7rem);
  color: rgba(200, 155, 60, 0.16);
  line-height: 1;
  pointer-events: none;
}

.prestations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.presta {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  line-height: 1.7;
}

.claire .presta {
  border-color: rgba(23, 34, 48, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-900);
}

.formations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.carte-f,
.modal-c,
.partenaire-d,
.service-panel {
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carte-f .ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(221, 184, 105, 0.32);
  color: var(--gold-300);
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.claire .carte-f .ico {
  color: #8d6420;
  border-color: rgba(141, 100, 32, 0.25);
}

.carte-f h3,
.modal-c h3,
.partenaire-d h3,
.service-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.carte-f p,
.modal-c p,
.partenaire-d p,
.service-panel p {
  line-height: 1.8;
  opacity: 0.84;
}

.duree,
.type {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.claire .duree,
.claire .type {
  color: #8d6420;
}

.modal-grille,
.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.partenaires-d {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.partenaire-d {
  padding: 0;
  overflow: hidden;
  display: flex;
}

.partner-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.partner-visual {
  min-height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(23, 34, 48, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 230, 210, 0.68));
}

.partner-visual img {
  max-width: 224px;
  max-height: 132px;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 10px 24px rgba(8, 20, 35, 0.08));
}

.partner-visual-logo {
  background:
    radial-gradient(circle at top, rgba(200, 155, 60, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 238, 225, 0.92));
}

.partner-visual-logo-alt {
  background:
    radial-gradient(circle at top, rgba(200, 155, 60, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(242, 233, 214, 0.9));
}

.partner-visual-eni {
  background: linear-gradient(180deg, #efc53f, #e9bb2d);
}

/* Section ENI temporairement masquée en attente de l'annonce officielle */
.partenaire-masque {
  display: none !important;
}

.partner-visual-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 238, 226, 0.86));
}

.partner-mark {
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #172230;
}

.partner-mark-muted {
  font-size: 2.5rem;
  color: rgba(141, 100, 32, 0.72);
}

.partner-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 30px;
}

.partner-copy h3 {
  margin-bottom: 8px;
}

.partner-copy .type {
  margin-top: 0;
  margin-bottom: 16px;
  padding: 6px 10px;
  background: rgba(200, 155, 60, 0.14);
  border-radius: 6px;
  line-height: 1.2;
}

.partner-cta {
  margin-top: auto;
  padding-top: 18px;
  color: #8d6420;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.partner-cta::before {
  content: "→ ";
}

.partner-link:hover .partner-cta {
  color: var(--ink-900);
}

.partner-link:hover .partner-visual-logo,
.partner-link:hover .partner-visual-logo-alt {
  background:
    radial-gradient(circle at top, rgba(200, 155, 60, 0.2), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(239, 228, 200, 0.96));
}

.pillars {
  margin-top: 34px;
}

.service-panel {
  min-height: 100%;
}

#contact {
  scroll-margin-top: 110px;
  padding-top: 32px;
}

.contact-shell {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(15, 29, 46, 0.96), rgba(8, 20, 35, 0.98)),
    linear-gradient(135deg, rgba(221, 184, 105, 0.08), transparent 56%);
  box-shadow: var(--shadow-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-lead {
  margin-bottom: 22px;
  font-size: 1rem;
  color: rgba(246, 240, 228, 0.84);
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 20px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  color: rgba(246, 240, 228, 0.86);
  line-height: 1.72;
  text-decoration: none;
}

.formulaire {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(221, 184, 105, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.form-header {
  margin-bottom: 22px;
}

.form-header p {
  margin-top: 10px;
  color: rgba(246, 240, 228, 0.75);
  line-height: 1.72;
}

.form-status {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(221, 184, 105, 0.22);
  text-align: left;
}

.form-status.hidden {
  display: none;
}

.form-status strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.form-status p {
  color: rgba(246, 240, 228, 0.84);
  line-height: 1.72;
}

.form-status.success {
  background: rgba(82, 138, 96, 0.18);
  border-color: rgba(138, 198, 154, 0.3);
}

.form-status.error {
  background: rgba(159, 78, 78, 0.18);
  border-color: rgba(214, 131, 131, 0.28);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.deuxcol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.champ {
  margin-bottom: 18px;
}

.champ label {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  border: 1px solid rgba(221, 184, 105, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--sand-100);
  padding: 14px 16px;
  font: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.champ select option {
  color: var(--sand-100);
  background: var(--navy-900);
}

.champ textarea {
  min-height: 140px;
  resize: vertical;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.07);
}

.envoyer {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-note {
  margin-top: 14px;
  color: rgba(246, 240, 228, 0.66);
  font-size: 0.88rem;
  line-height: 1.7;
}

.ctafinal {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 118px 0 122px;
}

.ctafinal h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  margin-bottom: 22px;
}

.ctafinal p {
  max-width: 60ch;
  margin: 0 auto 42px;
  font-size: 1.08rem;
  line-height: 1.92;
  opacity: 0.86;
}

.ctafinal .btn {
  min-height: 56px;
  padding: 0 34px;
  font-size: 0.82rem;
  box-shadow: 0 16px 34px rgba(200, 155, 60, 0.26);
}

footer {
  padding: 64px 0 34px;
  border-top: 1px solid var(--line-dark);
}

.footgrille {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 28px;
}

footer p,
footer li {
  line-height: 1.82;
  color: rgba(246, 240, 228, 0.72);
}

footer h4 {
  margin-bottom: 12px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

footer a {
  color: rgba(246, 240, 228, 0.86);
  text-decoration: none;
}

.footbas {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(221, 184, 105, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(246, 240, 228, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.spacing-top {
  margin-top: 28px;
}

.detail-nav {
  justify-content: space-between;
}

.detail-nav .lien-or:first-child::before {
  content: "< ";
}

.detail-nav .lien-or:last-child::after {
  content: " >";
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  nav {
    gap: 10px 18px;
    font-size: 0.72rem;
  }

  .hero-grid,
  .apropos,
  .detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .garanties {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid-home {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 18px;
  }

  .hero-radar {
    width: min(100%, 520px);
    margin-right: -16px;
    opacity: 0.9;
  }

  .apropos-copy h2 {
    max-width: none;
  }

  .apropos-ornement {
    min-height: 300px;
  }

  .apropos-plein .legal-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partenaires-d {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    gap: 16px;
  }

  nav {
    gap: 10px 16px;
    font-size: 0.7rem;
  }

  .services,
  .formations,
  .prestations,
  .modal-grille,
  .partenaires-d,
  .pillars {
    grid-template-columns: 1fr;
  }

  .footgrille {
    grid-template-columns: 1fr;
  }

  .fiche .row {
    grid-template-columns: 1fr;
  }

  .fiche .lab {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 34, 48, 0.1);
  }

  .hero-grid-home {
    grid-template-columns: 1fr;
  }

  .hero-radar {
    width: min(100%, 360px);
    margin: 8px 0 0 auto;
    opacity: 0.76;
  }

  .apropos-ornement {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  header {
    position: static;
  }

  .header-inner {
    width: min(var(--content-width), calc(100% - 28px));
    padding: 12px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 14px;
  }

  .logo {
    width: auto;
    gap: 10px;
    min-width: 0;
  }

  .logo img {
    width: 64px;
    height: 64px;
  }

  .logo b {
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }

  .logo span {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
  }

  nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px;
    gap: 8px;
    border-radius: 18px;
    border: 1px solid rgba(221, 184, 105, 0.14);
    background: rgba(7, 17, 29, 0.96);
    box-shadow: 0 18px 44px rgba(4, 11, 20, 0.26);
  }

  nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(221, 184, 105, 0.1);
    background: rgba(255, 255, 255, 0.02);
    text-align: left;
    line-height: 1.15;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
  }

  nav a::after {
    display: none;
  }

  .container,
  .hero-grid,
  .contact-shell,
  .footgrille,
  .footbas {
    width: calc(100% - 32px);
  }

  .hero-grid,
  .bandeau .container {
    width: calc(100% - 24px);
  }

  .hero-grid-home {
    grid-template-columns: 1fr;
  }

  .hero,
  .bandeau {
    padding-top: 68px;
  }

  .hero-radar {
    display: none;
  }

  section {
    padding: 76px 0;
  }

  .contact-shell,
  .formulaire {
    padding: 22px;
  }

  .hero h1,
  .bandeau h1 {
    max-width: 13ch;
    font-size: clamp(1.9rem, 8.6vw, 2.65rem);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .bandeau-service .container {
    width: calc(100% - 12px);
  }

  .bandeau-service h1 {
    width: 100%;
    max-width: none;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero p,
  .bandeau p,
  .intro {
    max-width: 100%;
  }

  .filigrane {
    opacity: 0.55;
  }

  .deuxcol {
    grid-template-columns: 1fr;
  }

  .garanties {
    grid-template-columns: 1fr;
  }

  .apropos-plein .legal-inline {
    grid-template-columns: 1fr;
  }

  .apropos-ornement {
    min-height: 180px;
  }

  #contact {
    scroll-margin-top: 20px;
    padding-top: 76px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .envoyer {
    width: 100%;
  }

  .filigrane {
    font-size: 6rem;
    right: 16px;
  }

  .contact-shell,
  .formulaire {
    padding: 20px;
  }
}
