    /* ── Design Tokens ──────────────────────────────────── */
    :root {
      --gold:       #c9a84c;
      --gold-light: #e8d08a;
      --navy:       #0d1b2a;
      --navy-mid:   #1a2f45;
      --navy-soft:  #243b55;
      --white:      #ffffff;
      --off-white:  #f6f4ef;
      --gray:       #8a95a3;
      --text:       #1e2a36;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;

      --max-w: 1160px;
      --radius: 4px;
      --transition: 0.3s ease;
    }

    /* ── Reset ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ── Utilities ──────────────────────────────────────── */
    .container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
    .gold { color: var(--gold); }
    .btn {
      display: inline-block;
      padding: 14px 36px;
      border: 2px solid var(--gold);
      color: var(--gold);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: transparent;
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
      border-radius: var(--radius);
    }
    .btn:hover { background: var(--gold); color: var(--navy); }
    .btn-solid {
      background: var(--gold);
      color: var(--navy);
    }
    .btn-solid:hover { background: var(--gold-light); }

    /* ── Section labels ─────────────────────────────────── */
    .section-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-intro {
      font-size: 1.05rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 600px;
    }

    /* ── TOPBAR (language switcher) ─────────────────────── */
    .topbar {
      background: var(--navy);
      padding: 8px 0;
    }
    .topbar__inner {
      display: flex;
      justify-content: flex-end;
      gap: 16px;
    }
    .topbar a {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--gray);
      transition: color var(--transition);
    }
    .topbar a.active,
    .topbar a:hover { color: var(--gold); }

    .topbar button {
      background:none;
      border:none;
      margin:0;
      padding:0;
      cursor: pointer;

      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--gray);
      transition: color var(--transition);
    }
    .topbar button.active,
    .topbar button:hover { color: var(--gold); }

    /* ?~T~@?~T~@ Language switching ?~T~@?~T~@ */
[data-lang] {
  display: none;
}

[data-lang].visible {
  display: block;
}

span[data-lang].visible.center,
a[data-lang].visible.center,
button[data-lang].visible.center {
  display: block;
}

span[data-lang].visible.inline-flex,
a[data-lang].visible.inline-flex,
button[data-lang].visible.inline-flex {
  display: inline-flex;
}

span[data-lang].visible,
a[data-lang].visible,
button[data-lang].visible {
  display: inline;
}


button[data-lang].visible.cta-btn,
button[data-lang].visible.hero-btn {
  display: inline-block;
}

    /* ── HEADER / NAV ───────────────────────────────────── */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      transition: box-shadow var(--transition);
    }
    .header.scrolled { box-shadow: 0 2px 24px rgba(13,27,42,0.12); }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .header__logo img { height: 40px; width: auto; }
    .header__nav { display: flex; align-items: center; gap: 36px; }
    .header__nav a {
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--navy-mid);
      position: relative;
      transition: color var(--transition);
    }
    .header__nav a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .header__nav a:hover { color: var(--navy); }
    .header__nav a:hover::after { width: 100%; }
    .header__cta { margin-left: 8px; }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }

    /* ── HERO ───────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
      position: relative;
      overflow: hidden;
      padding: 120px 0 100px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
      opacity: 1;
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }
    .hero__eyebrow {
      /*display: inline-flex;*/
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .hero__eyebrow::before {
      content: '';
      display: block;
      width: 32px; height: 1px;
      background: var(--gold);
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 24px;
    }
    .hero h1 em { font-style: normal; color: var(--gold); }
    .hero__desc {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 560px;
    }
    .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-ghost {
      /*display: inline-block;*/
      padding: 14px 36px;
      border: 1px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.85);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: transparent;
      cursor: pointer;
      transition: border-color var(--transition), color var(--transition);
      border-radius: var(--radius);
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* ── CLIENTS STRIP ──────────────────────────────────── */
    .clients {
      background: var(--off-white);
      padding: 56px 0;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .clients__label {
      text-align: center;
      margin-bottom: 40px;
    }
    .clients__grid {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px 64px;
    }
    .clients__grid img {
      height: 44px;
      width: auto;
      filter: grayscale(1) opacity(0.55);
      transition: filter var(--transition);
      object-fit: contain;
    }
    .clients__grid img:hover { filter: grayscale(0) opacity(1); }

    /* ── WHY US ─────────────────────────────────────────── */
    .why {
      padding: 100px 0;
    }
    .why__header { margin-bottom: 64px; }
    .why__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
    }
    .why__card {
      padding: 40px 32px;
      border: 1px solid rgba(201,168,76,0.2);
      border-top: 3px solid var(--gold);
      background: var(--white);
      transition: box-shadow var(--transition), transform var(--transition);
    }
    .why__card:hover {
      box-shadow: 0 12px 40px rgba(13,27,42,0.1);
      transform: translateY(-4px);
    }
    .why__icon {
      width: 48px; height: 48px;
      margin-bottom: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .why__icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .why__card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .why__card p {
      font-size: 0.95rem;
      color: #5a6877;
      line-height: 1.7;
    }
    .why__tagline {
      margin-top: 56px;
      padding: 28px 36px;
      background: var(--navy);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .why__tagline::before {
      content: '';
      display: block;
      width: 4px;
      height: 40px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .why__tagline p {
      font-size: 1.1rem;
      font-style: italic;
      color: rgba(255,255,255,0.85);
      font-family: var(--font-display);
    }

    /* ── SERVICES ───────────────────────────────────────── */
    .services {
      background: var(--off-white);
      padding: 100px 0;
    }
    .services__header { margin-bottom: 64px; }
    .service-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-bottom: 2px;
      background: var(--white);
      overflow: hidden;
      transition: box-shadow var(--transition);
    }
    .service-row:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.08); }
    .service-row--reverse .service-row__img { order: 2; }
    .service-row--reverse .service-row__body { order: 1; }
    .service-row__img {
      aspect-ratio: 5/3;
      overflow: hidden;
    }
    .service-row__img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .service-row:hover .service-row__img img { transform: scale(1.04); }
    .service-row__body {
      padding: 52px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .service-row__num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--gold);
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .service-row__body h3 {
      font-family: var(--font-display);
      font-size: 1.55rem;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .service-row__body p {
      font-size: 0.95rem;
      color: #5a6877;
      line-height: 1.75;
    }
    .service-row__body ul {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .service-row__body ul li {
      font-size: 0.9rem;
      color: #5a6877;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .service-row__body ul li::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .services__cta {
      margin-top: 64px;
      text-align: center;
    }

    /* ── TESTIMONIAL ────────────────────────────────────── */
    .testimonial {
      padding: 100px 0;
      background: var(--white);
    }
    .testimonial__inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }
    .testimonial__quote-mark {
      font-family: var(--font-display);
      font-size: 6rem;
      color: var(--gold);
      line-height: 0.6;
      margin-bottom: 24px;
      opacity: 0.3;
    }
    .testimonial blockquote {
      font-family: var(--font-display);
      font-size: 1.55rem;
      color: var(--navy);
      line-height: 1.5;
      font-style: italic;
      margin-bottom: 32px;
    }
    .testimonial__author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .testimonial__avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold);
    }
    .testimonial__name {
      text-align: left;
    }
    .testimonial__name strong {
      display: block;
      font-weight: 600;
      color: var(--navy);
    }
    .testimonial__name span {
      font-size: 0.85rem;
      color: var(--gray);
    }

    /* ── ABOUT ──────────────────────────────────────────── */
    .about {
      background: var(--navy);
      padding: 100px 0;
    }
    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about__img {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }
    .about__img img {
      width: 100%; aspect-ratio: 4/3;
      object-fit: cover;
    }
    .about__img::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid var(--gold);
      transform: translate(12px, 12px);
      pointer-events: none;
    }
    .about .section-label { color: var(--gold); }
    .about .section-title { color: var(--white); }
    .about p {
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      font-size: 0.97rem;
      margin-bottom: 20px;
    }
    .about__history {
      margin-top: 32px;
      padding: 24px;
      border-left: 3px solid var(--gold);
      background: rgba(201,168,76,0.06);
    }
    .about__history h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .about__history p { margin-bottom: 0; }

    /* ── CONTACT ────────────────────────────────────────── */
    .contact {
      padding: 100px 0;
      background: var(--off-white);
    }
    .contact__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contact__info { padding-top: 8px; }
    .contact__info p {
      color: #5a6877;
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .contact__address {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
      color: var(--navy-mid);
      font-size: 0.95rem;
    }
    .contact__address svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
    .contact__linkedin {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 10px 20px;
      border-radius: var(--radius);
      transition: background var(--transition), color var(--transition);
    }
    .contact__linkedin:hover { background: var(--gold); color: var(--navy); }
    .contact__linkedin svg { width: 16px; height: 16px; fill: currentColor; }

    /* Newsletter */
    .newsletter__form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .newsletter__form label {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--navy-mid);
    }
    .newsletter__form input[type="email"] {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid rgba(201,168,76,0.35);
      background: var(--white);
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text);
      outline: none;
      border-radius: var(--radius);
      transition: border-color var(--transition);
    }
    .newsletter__form input[type="email"]:focus { border-color: var(--gold); }
    .newsletter__form input[type="email"]::placeholder { color: #aab3be; }
    .newsletter__submit { align-self: flex-start; }
    .newsletter__note {
      font-size: 0.78rem;
      color: var(--gray);
    }

    /* ── FOOTER ─────────────────────────────────────────── */
    .footer {
      background: var(--navy);
      padding: 48px 0 32px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer__logo img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
    .footer__nav { display: flex; gap: 28px; }
    .footer__nav a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      transition: color var(--transition);
    }
    .footer__nav a:hover { color: var(--gold); }
    .footer__copy {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      width: 100%;
      margin-top: 8px;
      text-align: center;
    }

    /* ── DIVIDER ─────────────────────────────────────────── */
    .divider {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 56px;
    }
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    }
    .divider__icon {
      width: 10px; height: 10px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* ── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 900px) {
      .why__grid { grid-template-columns: 1fr; gap: 24px; }
      .service-row { grid-template-columns: 1fr; }
      .service-row--reverse .service-row__img,
      .service-row--reverse .service-row__body { order: unset; }
      .about__inner,
      .contact__inner { grid-template-columns: 1fr; gap: 48px; }
      .about__img::after { display: none; }

      .header__nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; gap: 20px; border-bottom: 2px solid var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
      .header__nav.open { display: flex; }
      .nav-toggle { display: flex; }
      .header__cta { display: none; }

      .service-row__img { aspect-ratio: 16/9; }
      .service-row__body { padding: 36px 28px; }
    }

    @media (max-width: 600px) {
      .hero { padding: 80px 0 72px; }
      .why, .services, .testimonial, .about, .contact { padding: 72px 0; }
      .clients__grid img { height: 32px; }
      .hero__actions { flex-direction: column; align-items: flex-start; }
    }

    /* ── Scroll animation ───────────────────────────────── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    [data-reveal].visible {
      opacity: 1;
      transform: none;
    }

    /* ── Admin section ───────────────────────────────── */
  #admins {
    background-color: #0d0d0d;          /* même fond que le reste du site */
    padding: 80px 20px;
    text-align: center;
  }

  #admins .section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7eb95e;                     /* accent vert avaulo */
    margin-bottom: 8px;
  }

  #admins h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
  }

  #admins .section-subtitle {
    color: #a0a0a0;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 52px;
    line-height: 1.6;
  }

  /* ---------- Grille 4 cartes ---------- */
  .admins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }

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

  /* ---------- Carte individuelle ---------- */
  .admin-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 32px 24px 28px;
    transition: border-color 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .admin-card:hover {
    border-color: #7eb95e;
    transform: translateY(-4px);
  }

  /* Photo circulaire */
  .admin-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7eb95e;
    margin-bottom: 18px;
  }

  /* Fallback si pas de photo */
  .admin-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #222;
    border: 3px solid #7eb95e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2rem;
    color: #7eb95e;
  }

  .admin-card .admin-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
  }

  .admin-card .admin-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7eb95e;
    margin: 0 0 12px;
  }

  .admin-card .admin-bio {
    font-size: 0.88rem;
    color: #a0a0a0;
    line-height: 1.6;
    flex: 1;
    margin: 0 0 18px;
  }

  /* Lien LinkedIn optionnel */
  .admin-card .admin-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7eb95e;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .admin-card .admin-linkedin:hover {
    border-bottom-color: #7eb95e;
  }
  .admin-card .admin-linkedin svg {
    flex-shrink: 0;
  }


    /* ── KEY-FIGURES ───────────────────────────────── */

  #key-figure {
    padding: 4rem 2rem;
    text-align: center;
}

div.key-figure__header {
	margin: 60px 0;
}

#key-figure h2 {
    margin-bottom: 2.5rem;
}

.key-figure__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.key-figure__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.key-figure__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #your-brand-color;
    line-height: 1.1;
}

.key-figure__item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

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

.key-figure__unit {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c8a84b;         /* Couleur dorée / accent — à adapter à votre charte */
}

.key-figure__label {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.4;
  text-align: center;
}

.key-figure__icon {
	width: 70px;
	height: 70px;
	text-align: center;
}
