:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --surface-soft: #f3f1eb;
  --text: #121212;
  --muted: #5c6170;
  --brand: #172a52;
  --brand-2: #223a72;
  --brand-soft: #c6b221;
  --accent: #d42c2c;
  --line: #dfdfdf;
  --line-soft: #ececec;
  --container: 1180px;
  --shadow: 0 14px 34px rgba(0, 0, 0, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  background: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.30rem, 3.55vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 700;
}

h1 span {
  color: var(--brand-soft);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.8vw, 3.0rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: #101f3f;
}

.btn-light {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(23, 42, 82, .22);
  color: var(--text);
  backdrop-filter: blur(7px);
}

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

.play {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(23, 42, 82, .22);
  border-radius: 50%;
  font-size: .65rem;
  color: var(--brand);
}

.text-link {
  color: var(--brand);
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* Full-width navbar, inner content aligned to the site container */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  pointer-events: none;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: #e7e7e7;
  overflow: hidden;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: auto;
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--brand);
}

.nav-bar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  transition: box-shadow .2s ease, background .2s ease;
  pointer-events: auto;
}

.nav-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  transition: min-height .2s ease;
}

.site-header.is-sticky .progress-track {
  opacity: 1;
}

.site-header.is-sticky .nav-bar {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.site-header.is-sticky .nav-inner {
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-full {
  height: 72px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 86px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.primary-nav a {
  position: relative;
  padding: 12px;
  font-size: .94rem;
  font-weight: 600;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-current::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 4px auto;
}

/* Full-width hero, with text aligned to the same inner margins as the rest */
.hero {
  position: relative;
  min-height: 585px;
  padding-top: 86px;
  overflow: hidden;
  background: #d9e2dc;
  border-bottom: 1px solid var(--line-soft);
}

.hero-bg {
  position: absolute;
  inset: 86px 0 0;
  width: 100%;
  height: calc(100% - 86px);
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  position: absolute;
  inset: 86px 0 0;
  background: linear-gradient(90deg, rgba(246, 248, 245, .97) 0%, rgba(246, 248, 245, .90) 30%, rgba(246, 248, 245, .52) 50%, rgba(246, 248, 245, .08) 70%, rgba(246, 248, 245, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 499px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(620px, 54%);
  padding: 44px 0 42px;
}

.hero-copy h1 {
  max-width: 18.5ch;
}

.hero-lead {
  max-width: 49ch;
  font-size: 1.04rem;
  margin-bottom: 26px;
  color: #3f4541;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding-top: 58px;
}

.section-soft {
  background: #fff;
  border-block: 1px solid var(--line-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.pillar-copy {
  padding: 22px 6px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pillar-index {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
}

.pillar-copy p {
  margin-bottom: 22px;
}

.pillar-copy .text-link {
  margin-top: auto;
}

.pillar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image-led About section to break the text rhythm */
.about-visual-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-panel {
  padding: 36px 38px;
  align-self: center;
}

.about-panel h2 {
  max-width: 14.5ch;
}

.about-image {
  margin: 0;
  min-height: 440px;
  overflow: hidden;
  background: #e8ece8;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lead {
  color: #303030;
  font-size: 1.08rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stats-grid div {
  padding: 16px 18px;
  background: var(--surface-soft);
  border: 1px solid #e1e5df;
  min-height: 0;
}

.stats-grid strong {
  display: block;
  color: var(--brand);
  font-size: 1.65rem;
  margin-bottom: 4px;
}

.stats-grid span {
  color: #555;
  font-size: .84rem;
  line-height: 1.38;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.expert-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 0;
}

.expert-kicker {
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.expert-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #444;
  font-size: .9rem;
}

.expert-card li {
  margin-bottom: 8px;
  line-height: 1.38;
}

.section-layer {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.section-layer.in-view {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.zones-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  padding: 38px;
}

.zone-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.zone-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.zone-list span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-soft);
  margin-top: 7px;
}

.zone-list p {
  margin: 0;
}

.zone-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.zone-map {
  display: grid;
  place-items: center;
  background: #f5f4ef;
}

.zone-map img {
  width: 100%;
  height: auto;
}

.values-section {
  padding-top: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--brand);
  color: #fff;
}

.values-grid article {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.values-grid article:last-child {
  border-right: 0;
}

.values-grid span {
  display: block;
  margin-bottom: 16px;
  font-size: .78rem;
  color: #bfd4c5;
}

.values-grid h3 {
  color: #fff;
}

.values-grid p {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 0;
}

.contact-section {
  padding-top: 58px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, auto);
  gap: 28px;
  align-items: center;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-grid h2 {
  max-width: 15ch;
}

.contact-grid p {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.contact-note {
  font-size: .88rem;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 24px;
  background: #fff;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .9fr .9fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 33ch;
  margin-top: 18px;
  margin-bottom: 0;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .93rem;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.footer-bottom p {
  margin: 0;
  font-size: .88rem;
}

.navtop {
  --progress: 0deg;
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(var(--brand) var(--progress), #d9d9d9 0deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 60;
}

.navtop span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 700;
}

.navtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  transform: translateY(20px);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in-view {
  transform: translateY(0);
}

@media (max-width:1080px) {
  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 4px);
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    width: min(640px, 68%);
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(246, 248, 245, .98) 0%, rgba(246, 248, 245, .88) 42%, rgba(246, 248, 245, .26) 73%, rgba(246, 248, 245, 0) 100%);
  }

  .pillars-grid,
  .expertise-grid,
  .values-grid,
  .footer-grid,
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .about-visual-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .pillar-card {
    grid-template-columns: 1fr 180px;
  }

  .values-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .values-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width:720px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-inner {
    min-height: 68px;
  }

  .site-header.is-sticky .nav-inner {
    min-height: 64px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 1.22rem;
  }

  .brand-copy small {
    font-size: .66rem;
  }

  .hero {
    padding-top: 72px;
    min-height: 640px;
  }

  .hero-bg,
  .hero-shade {
    inset: 72px 0 0;
    height: calc(100% - 72px);
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(246, 248, 245, .96) 0%, rgba(246, 248, 245, .92) 45%, rgba(246, 248, 245, .42) 78%, rgba(246, 248, 245, .10) 100%);
  }

  .hero-inner {
    min-height: 568px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 52px;
  }

  .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.10rem, 9.2vw, 2.9rem);
  }

  .hero-lead {
    max-width: 36ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding-top: 46px;
  }

  .pillar-card {
    grid-template-columns: 1fr;
  }

  .pillar-card img {
    height: 190px;
  }

  .about-panel,
  .zones-grid,
  .contact-grid {
    padding: 22px;
  }

  .contact-grid h2,
  .about-panel h2 {
    max-width: none;
  }

  .about-image {
    min-height: 250px;
  }

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

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

  .contact-actions {
    align-items: flex-start;
  }

  .navtop {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}


@media (min-width:721px) and (max-width:1280px) {
  .about-visual-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 320px;
  }

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

  .stats-grid div:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width:1081px) and (max-width:1360px) {
  .expertise-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    transform: none;
  }
}


/* =========================================================
   CARTE INTERACTIVE — ZONES D'INTERVENTION
   GeoJSON: 26 provinces RDC; couleurs gérées par Titan DRC
========================================================= */
.titan-zones {
  background: #f7f6f2;
}

.zones-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.zones-heading h2 {
  max-width: 13ch;
}

.zones-heading>p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
}

.zones-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.42fr);
  gap: 42px;
  align-items: start;
}

.zones-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.zone-item {
  width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 26px;
  gap: 14px;
  align-items: center;
  padding: 20px 4px;
  border: 0;
  border-bottom: 1px solid rgba(23, 42, 82, .14);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, padding .2s ease, color .2s ease;
}

.zone-item:first-child {
  border-top: 1px solid rgba(23, 42, 82, .14);
}

.zone-item:hover,
.zone-item.active {
  padding-inline: 14px;
  background: #fff;
}

.zone-item:focus-visible,
.zones-national:focus-visible,
.map-reset:focus-visible {
  outline: 3px solid rgba(23, 42, 82, .18);
  outline-offset: 3px;
}

.zone-number {
  color: var(--brand-soft);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.zone-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zone-text strong {
  color: #193526;
  font-size: 1.06rem;
}

.zone-text small {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}

.zone-arrow {
  color: var(--brand);
  font-size: 1.12rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: .2s ease;
}

.zone-item:hover .zone-arrow,
.zone-item.active .zone-arrow {
  opacity: 1;
  transform: translateX(0);
}

.zones-national {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.zones-national:hover,
.zones-national.active {
  background: #101f3f;
  transform: translateY(-1px);
}

.national-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  font-size: 1.2rem;
}

.zones-national strong {
  display: block;
  margin: 0 0 5px;
  color: #fff;
  font-size: 1rem;
}

.zones-national small {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
  line-height: 1.5;
}

.rdc-map-wrap {
  min-width: 0;
}

.rdc-map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .06);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: #59645e;
  font-size: .78rem;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-swatch {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 2px;
}

.legend-swatch.forest {
  background: #708c5b;
}

.legend-swatch.agro {
  background: #9fb66a;
}

.legend-swatch.mixed {
  background: #2d4a86;
}

.legend-swatch.service {
  background: #c6b221;
}

.rdc-map-stage {
  position: relative;
  min-height: 480px;
  background: #f4f2ec;
  overflow: hidden;
}

.rdc-province-map {
  display: block;
  width: 100%;
  height: auto;
  min-height: 480px;
  touch-action: manipulation;
}

.province-path {
  fill: #e9e7df;
  stroke: #fff;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill .18s ease, filter .18s ease, opacity .18s ease;
}

.province-path[data-zone="forest"] {
  fill: #708c5b;
}

.province-path[data-zone="agro"] {
  fill: #9fb66a;
}

.province-path[data-zone="mixed"] {
  fill: #2d4a86;
}

.province-path[data-zone="service"] {
  fill: #c6b221;
}

.province-path:hover,
.province-path.is-hovered {
  filter: brightness(.94);
}

.province-path.is-selected {
  fill: var(--brand) !important;
  filter: drop-shadow(0 6px 8px rgba(23, 42, 82, .24));
}

.province-path.is-muted {
  opacity: .48;
}

.province-path.is-national {
  fill: #dfe8db;
}

.province-label {
  fill: #173d2a;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linejoin: round;
  pointer-events: none;
  text-anchor: middle;
}

.province-label.is-selected {
  fill: #fff;
  stroke: var(--brand);
  stroke-width: 5px;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #68716c;
  font-size: .9rem;
  background: linear-gradient(110deg, #f4f2ec 8%, #fff 18%, #f4f2ec 33%);
  background-size: 200% 100%;
  animation: mapShimmer 1.35s linear infinite;
}

.map-loading.is-hidden {
  display: none;
}

@keyframes mapShimmer {
  to {
    background-position-x: -200%;
  }
}

.map-tooltip {
  position: absolute;
  z-index: 5;
  max-width: 230px;
  padding: 9px 11px;
  border: 1px solid rgba(15, 76, 47, .14);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  color: #183725;
  font-size: .78rem;
  line-height: 1.35;
  pointer-events: none;
}

.map-tooltip strong {
  display: block;
  margin-bottom: 2px;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 22px;
  background: #f4f2ec;
}

.map-fallback[hidden] {
  display: none;
}

.map-fallback img {
  max-width: min(100%, 560px);
  max-height: 390px;
  object-fit: contain;
}

.map-fallback p {
  margin: 0;
  max-width: 45ch;
  text-align: center;
  font-size: .84rem;
}

.map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border-top: 1px solid var(--line-soft);
}

.map-footer p {
  margin: 0;
  color: #5a655f;
  font-size: .88rem;
}

.map-footer p strong {
  color: var(--brand);
}

.map-reset {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(23, 42, 82, .20);
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
}

.map-reset:hover {
  background: #f1f5f1;
}

.map-attribution {
  margin: 10px 0 0;
  color: #858b87;
  font-size: .73rem;
  text-align: right;
}

@media (max-width:980px) {
  .zones-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rdc-map-wrap {
    order: 1;
  }

  .zones-list {
    order: 2;
  }
}

@media (max-width:720px) {
  .zones-heading {
    margin-bottom: 24px;
  }

  .rdc-map-stage {
    min-height: 330px;
  }

  .rdc-province-map {
    min-height: 330px;
  }

  .map-legend {
    gap: 10px 14px;
    padding: 12px;
  }

  .map-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-reset {
    width: 100%;
  }

  .map-attribution {
    text-align: left;
  }

  .zone-item {
    grid-template-columns: 30px minmax(0, 1fr) 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-loading {
    animation: none;
  }
}

.kin-services-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 22px;
  padding: 24px 26px;
  background: linear-gradient(90deg, rgba(23, 42, 82, .05), rgba(198, 178, 33, .07));
  border: 1px solid rgba(23, 42, 82, .10);
}

.kin-services-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.kin-services-card h3 {
  margin-bottom: 10px;
}

.kin-services-card p {
  margin-bottom: 0;
}

.kin-services-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.kin-services-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid rgba(23, 42, 82, .12);
  color: var(--brand);
  font-weight: 600;
}

.kin-services-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-visual {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(23, 42, 82, .10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.service-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-visual figcaption {
  padding: 12px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.45;
}

.service-card {
  background: linear-gradient(180deg, rgba(198, 178, 33, .08), #fff);
  border-color: rgba(198, 178, 33, .26);
}

.footer-brand p {
  max-width: 33ch;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width:1080px) {
  .expertise-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kin-services-card {
    grid-template-columns: 1fr;
  }

  .kin-services-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:720px) {
  .brand-logo-full {
    height: 58px;
  }

  .footer-logo {
    height: 74px;
  }

  .expertise-grid-4 {
    grid-template-columns: 1fr;
  }

  .kin-services-visuals {
    grid-template-columns: 1fr;
  }
}


/* HISTORIQUE — intégré à À propos, format horizontal compact */
.history-block {
  margin-top: 26px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.history-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.history-head h2 {
  margin-bottom: 0;
  max-width: 10ch;
}

.history-head>p {
  max-width: 58ch;
  margin: 0 0 4px auto;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
}

.history-step {
  padding: 22px 24px 20px 0;
  min-width: 0;
}

.history-step+.history-step {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.history-year {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-soft);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.history-step h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.history-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.55;
}

.history-note {
  margin: 16px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--brand-soft);
  color: var(--muted);
  font-size: .9rem;
}

.history-note strong {
  color: var(--brand);
}

/* CONDITIONS DE COMMANDE — compactes, pas de cartes hautes */
.service-conditions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-block: 1px solid var(--line);
}

.condition-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 20px 18px 0;
  align-items: start;
}

.condition-item+.condition-item {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.condition-no {
  color: var(--brand-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.condition-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
}

.condition-item p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.5;
}

/* CONTACT RÉEL + CTA WHATSAPP */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  margin-top: 22px;
}

.contact-details p {
  margin: 0;
  min-width: 210px;
}

.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details strong {
  margin-bottom: 5px;
  color: var(--brand);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-details a {
  color: var(--text);
  font-weight: 600;
}

.contact-phone {
  color: var(--brand);
  font-weight: 650;
}

@media (max-width:900px) {
  .history-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .history-head>p {
    margin-left: 0;
  }

  .history-timeline,
  .service-conditions {
    grid-template-columns: 1fr;
  }

  .history-step,
  .history-step+.history-step,
  .condition-item,
  .condition-item+.condition-item {
    padding: 16px 0;
    border-left: 0;
  }

  .history-step+.history-step,
  .condition-item+.condition-item {
    border-top: 1px solid var(--line);
  }
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 0 20px;

  border: 1px solid #25D366;
  border-radius: 4px;

  font-weight: 650;

  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;

  transform: translateY(-1px);

  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
}

.whatsapp-icon {
  width: 23px;
  height: 23px;

  display: inline-flex;
  flex: 0 0 23px;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-arrow {
  margin-left: 4px;
  font-size: 1.05rem;
}