
    /* ────────────────────────────────────────
       VARIABLES
    ──────────────────────────────────────── */
    :root {
      --gold:       #D4AF37;
      --gold-l:     #F0D060;
      --gold-dim:   rgba(212,175,55,0.14);
      --navy:       #0A2540;
      --navy-mid:   #0d2748;
      --navy-card:  #091e35;
      --cyan:       #2D9CDB;
      --dark:       #0a0f18;
      --white:      #FFFFFF;
      --nav-h:      70px;
      --px:         clamp(1.25rem, 6vw, 7rem);
      --py:         clamp(4rem, 8vw, 7rem);
      --max-w:      1260px;
      --ff-serif:   'Cormorant Garamond', serif;
      --ff-sans:    'Outfit', sans-serif;
      --ff-display: 'Bebas Neue', sans-serif;
    }

    /* ────────────────────────────────────────
       RESET
    ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
    body { font-family: var(--ff-sans); background: var(--navy); color: var(--white); overflow-x: hidden; line-height: 1.65; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; border: none; background: none; cursor: pointer; }
    img, svg { display: block; max-width: 100%; }

    /* ────────────────────────────────────────
       SCROLLBAR
    ──────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

    /* ────────────────────────────────────────
       CURSEUR CUSTOM
    ──────────────────────────────────────── */
    @media (pointer:fine) {
      body { cursor: none; }
      #cursor {
        position: fixed; width: 10px; height: 10px;
        background: var(--gold); border-radius: 50%;
        pointer-events: none; z-index: 9999;
        left: -100px; top: -100px;
        transform: translate(-50%,-50%);
        transition: width .18s, height .18s, background .18s;
        will-change: left, top;
      }
      #cursor-ring {
        position: fixed; width: 36px; height: 36px;
        border: 1px solid rgba(212,175,55,.4); border-radius: 50%;
        pointer-events: none; z-index: 9998;
        left: -100px; top: -100px;
        transform: translate(-50%,-50%);
        will-change: left, top;
      }
      #cursor.big  { width: 18px; height: 18px; background: rgba(212,175,55,.55); }
      #cursor-ring.big { width: 54px; height: 54px; }
    }

    /* ────────────────────────────────────────
       LAYOUT
    ──────────────────────────────────────── */
    .wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }
    .py { padding-top: var(--py); padding-bottom: var(--py); }

    /* ────────────────────────────────────────
       NAVBAR
    ──────────────────────────────────────── */
    #nav {
      position: fixed; inset: 0 0 auto 0; z-index: 300;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding-inline: var(--px);
      transition: background .35s, border-color .35s, height .25s;
    }
    #nav.stuck {
      height: 58px;
      background: rgba(7,20,40,.97);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(212,175,55,.16);
    }

    .logo {
      font-family: var(--ff-display);
      font-size: clamp(1.1rem, 2.2vw, 1.42rem);
      letter-spacing: .07em; color: var(--white);
      white-space: nowrap; line-height: 1;
    }
    .logo em { color: var(--gold); font-style: normal; }

    .nav-ul {
      display: flex; align-items: center;
      gap: clamp(.8rem, 1.6vw, 1.6rem);
      list-style: none;
    }
    .nav-ul a {
      font-size: .75rem; font-weight: 500;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.68);
      position: relative; padding-bottom: 3px;
      transition: color .3s;
    }
    .nav-ul a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 100%; height: 1px; background: var(--gold);
      transform: scaleX(0); transform-origin: right;
      transition: transform .32s ease;
    }
    .nav-ul a:hover { color: var(--gold); }
    .nav-ul a:hover::after { transform: scaleX(1); transform-origin: left; }

    .ham { display: none; flex-direction: column; gap: 5px; width: 34px; height: 34px; justify-content: center; }
    .ham span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: transform .28s, opacity .2s; }
    .ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity: 0; }
    .ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    #mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 290;
      background: rgba(5,15,30,.97); backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
    }
    #mobile-nav.open { display: flex; }
    #mobile-nav a {
      font-family: var(--ff-display);
      font-size: clamp(1.6rem, 5.5vw, 2.5rem);
      letter-spacing: .1em; color: var(--white);
      transition: color .3s, transform .3s;
    }
    #mobile-nav a:hover { color: var(--gold); transform: translateX(8px); }

    /* ────────────────────────────────────────
       HERO
    ──────────────────────────────────────── */
    #hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      background: linear-gradient(150deg, #05101e 0%, #0A2540 55%, #091a30 100%);
      overflow: hidden; padding-top: var(--nav-h);
    }
    #particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
    .h-deco {
      position: absolute; right: clamp(2.5rem, 7vw, 8rem);
      top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(212,175,55,.22) 30%, rgba(212,175,55,.08) 70%, transparent);
      z-index: 1; pointer-events: none;
    }

    /* floating orbs */
    .orb {
      position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(212,175,55,.06) 0%, transparent 70%); top: 10%; right: 15%; animation-delay: 0s; }
    .orb-2 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(45,156,219,.07) 0%, transparent 70%); bottom: 20%; left: 8%; animation-delay: -3s; }
    .orb-3 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(212,175,55,.04) 0%, transparent 70%); top: 55%; right: 30%; animation-delay: -5s; }
    @keyframes orbFloat {
      0%,100% { transform: translateY(0) scale(1); }
      50%     { transform: translateY(-24px) scale(1.04); }
    }

    .hero-inner {
      position: relative; z-index: 2;
      width: 100%; max-width: var(--max-w);
      margin-inline: auto;
      padding: 3.5rem var(--px) 5rem;
    }

    .h-eyebrow {
      display: inline-flex; align-items: center; gap: .75rem;
      font-size: .7rem; font-weight: 500;
      letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.75rem;
      opacity: 0; transform: translateY(10px);
    }
    .h-eyebrow::before { content: ''; display: block; width: 34px; height: 1px; background: var(--gold); }

    .h-brand {
      font-family: var(--ff-serif); font-size: clamp(1rem, 2.2vw, 1.5rem);
      font-weight: 300; letter-spacing: .06em;
      color: rgba(255,255,255,.45); display: block; margin-bottom: .4rem;
      opacity: 0; transform: translateY(12px);
    }

    .tw-wrap { min-height: clamp(4rem, 10vw, 8.5rem); display: flex; align-items: center; gap: 4px; opacity: 0; }
    #tw-word {
      font-family: var(--ff-serif); font-size: clamp(3.5rem, 9.5vw, 8.5rem);
      font-weight: 700; line-height: 1; color: var(--gold); font-style: italic; white-space: nowrap;
    }
    .tw-cursor {
      display: inline-block; width: clamp(3px, .45vw, 5px); height: clamp(3.2rem, 9vw, 7.5rem);
      background: var(--gold); vertical-align: middle; animation: blink .9s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    .h-desc {
      font-size: clamp(.88rem, 1.35vw, 1.08rem); color: rgba(255,255,255,.5); line-height: 1.88;
      max-width: 560px; margin-top: 1.5rem; opacity: 0; transform: translateY(14px);
    }
    .h-desc strong { color: rgba(255,255,255,.78); font-weight: 600; }

    .h-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; opacity: 0; transform: translateY(14px); }
    .badge {
      padding: .32rem .85rem;
      border: 1px solid rgba(212,175,55,.22); background: rgba(212,175,55,.04);
      font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(212,175,55,.72);
      clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
    }

    .h-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.4rem; opacity: 0; transform: translateY(14px); }

    .h-scroll {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .45rem;
      z-index: 2; opacity: 0;
    }
    .h-scroll span { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.28); }
    .h-scroll-bar {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, rgba(212,175,55,.65), transparent);
      animation: scrollPulse 2.4s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%  { transform: scaleY(0); transform-origin: top; opacity: 0; }
      25% { opacity: 1; }
      60% { transform: scaleY(1); transform-origin: top; }
      100%{ transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* ────────────────────────────────────────
       BOUTONS
    ──────────────────────────────────────── */
    .btn-g {
      display: inline-block; padding: .78rem 2rem;
      background: var(--gold); color: var(--navy);
      font-size: .77rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
      clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
      transition: background .28s, transform .22s;
    }
    .btn-g:hover { background: var(--gold-l); transform: translateY(-2px); }

    .btn-o {
      display: inline-block; padding: .78rem 2rem;
      background: transparent; color: var(--gold);
      font-size: .77rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
      border: 1px solid rgba(212,175,55,.55);
      clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
      transition: background .28s, transform .22s, border-color .28s;
    }
    .btn-o:hover { background: rgba(212,175,55,.08); border-color: var(--gold); transform: translateY(-2px); }

    /* ────────────────────────────────────────
       SECTION HELPERS
    ──────────────────────────────────────── */
    .eyebrow {
      display: inline-flex; align-items: center; gap: .65rem;
      font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .8rem;
    }
    .eyebrow::before { content:''; display:block; width:26px; height:1px; background:var(--gold); flex-shrink:0; }
    .sec-title { font-family: var(--ff-serif); font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 600; line-height: 1.1; color: var(--white); }
    .sec-title .ac { color: var(--gold); font-style: italic; }
    .divider {
      display: flex; align-items: center; gap: .9rem; margin: 1.3rem 0 2.5rem;
    }
    .divider::before { content:''; flex-shrink:0; width:44px; height:2px; background:var(--gold); }
    .divider::after  { content:''; flex:1; height:1px; background:linear-gradient(to right,rgba(212,175,55,.22),transparent); }
    .rv { will-change: opacity, transform; }

    /* ────────────────────────────────────────
       ABOUT
    ──────────────────────────────────────── */
    #about { background: linear-gradient(180deg,#08111f 0%,#0a1e38 100%); }
    .about-g { display: grid; grid-template-columns: 400px 1fr; gap: clamp(2.5rem,5vw,5rem); align-items: center; }
    .about-vis {
      position: relative; aspect-ratio: 4/5;
      clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
      overflow: hidden;
    }
    .about-vis-bg { width:100%; height:100%; background: transparent; display:flex; align-items:center; justify-content:center; }
    .about-badge {
      position:absolute; bottom:0; right:0;
      background:var(--gold); color:var(--navy);
      padding:1.1rem 1.4rem; text-align:center;
      clip-path: polygon(22px 0,100% 0,100% 100%,0 100%,0 22px);
    }
    .about-badge .n { font-family:var(--ff-display); font-size:2.4rem; line-height:1; display:block; }
    .about-badge .l { font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700; display:block; margin-top:2px; }
    .about-body p { color:rgba(255,255,255,.6); line-height:1.9; font-size:.93rem; margin-bottom:1.1rem; }
    .about-body p strong { color:rgba(255,255,255,.88); }
    .about-tags { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.5rem; }
    .about-tag { padding:.36rem .88rem; border:1px solid rgba(212,175,55,.25); font-size:.69rem; letter-spacing:.09em; text-transform:uppercase; color:var(--gold); }

    /* ────────────────────────────────────────
       STATS
    ──────────────────────────────────────── */
    #stats { background: var(--gold); }
    .stats-g { display: grid; grid-template-columns: repeat(4,1fr); }
    .stat {
      padding: 2.4rem 1.5rem;
      border-right: 1px solid rgba(10,37,64,.15);
      text-align: center;
    }
    .stat:last-child { border-right: none; }
    .stat-n { font-family: var(--ff-display); font-size: clamp(2.5rem,5vw,3.8rem); color: var(--navy); line-height: 1; }
    .stat-suf { font-size: .65em; }
    .stat-l { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(10,37,64,.62); margin-top: .35rem; }

    /* ────────────────────────────────────────
       SERVICES
    ──────────────────────────────────────── */
    #services { background: linear-gradient(180deg,#070f1c 0%,#091b30 100%); }

    .srv-g {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 3rem;
    }

    /* ── Carte service ── */
    .srv {
      background: linear-gradient(155deg, #0e2240 0%, #091b32 60%, #07151f 100%);
      border: 1px solid rgba(212,175,55,.13);
      border-radius: 2px;
      padding: 0;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color .35s, transform .35s, box-shadow .35s;
      cursor: default;
    }
    .srv:hover {
      border-color: rgba(212,175,55,.45);
      transform: translateY(-6px);
      box-shadow: 0 24px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.08);
    }

    /* Bande colorée en haut */
    .srv-header {
      position: relative;
      padding: 1.8rem 1.8rem 1.4rem;
      border-bottom: 1px solid rgba(212,175,55,.07);
    }
    .srv-header::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent 80%);
      transform: scaleX(0); transform-origin: left;
      transition: transform .5s ease;
    }
    .srv:hover .srv-header::before { transform: scaleX(1); }

    /* Badge numéro flottant */
    .srv-num {
      position: absolute; top: 1rem; right: 1.5rem;
      font-family: var(--ff-display);
      font-size: 3.2rem; line-height: 1;
      color: rgba(212,175,55,.07);
      pointer-events: none; user-select: none;
      transition: color .35s;
    }
    .srv:hover .srv-num { color: rgba(212,175,55,.13); }

    /* Icône dans cercle */
    .srv-ico-wrap {
      width: 52px; height: 52px;
      background: rgba(212,175,55,.08);
      border: 1px solid rgba(212,175,55,.18);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.1rem;
      transition: background .35s, border-color .35s, transform .35s;
    }
    .srv:hover .srv-ico-wrap {
      background: rgba(212,175,55,.16);
      border-color: rgba(212,175,55,.45);
      transform: scale(1.08);
    }
    .srv-ico-wrap svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

    .srv-title {
      font-family: var(--ff-serif);
      font-size: 1.18rem; font-weight: 700;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: .38rem;
    }
    .srv-badge-service {
      display: inline-block;
      padding: .18rem .65rem;
      background: rgba(212,175,55,.08);
      border: 1px solid rgba(212,175,55,.18);
      font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
      color: rgba(212,175,55,.7);
    }

    .testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

    /* Corps de la carte */
    .srv-body {
      padding: 1.4rem 1.8rem;
      flex: 1;
      display: flex; flex-direction: column;
    }
    .srv-desc {
      font-size: .84rem; color: rgba(255,255,255,.48);
      line-height: 1.78; margin-bottom: 1.2rem;
    }
    .srv-list {
      list-style: none;
      display: flex; flex-direction: column; gap: .5rem;
      margin-bottom: 1.6rem;
      flex: 1;
    }
    .srv-list li {
      display: flex; align-items: flex-start; gap: .6rem;
      font-size: .8rem; color: rgba(255,255,255,.55);
      line-height: 1.5;
    }
    .srv-list li::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: .38rem;
    }

    /* Pied de carte : bouton CTA */
    .srv-footer {
      padding: 1.1rem 1.8rem 1.6rem;
      margin-top: auto;
    }

    /* ── LE BOUTON DEVIS — vrai bouton cliquable ── */
    .srv-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .65rem;
      width: 100%;
      padding: .78rem 1.4rem;
      background: rgba(212,175,55,.08);
      border: 1px solid rgba(212,175,55,.3);
      color: var(--gold);
      font-family: var(--ff-sans);
      font-size: .76rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      border-radius: 2px;
      transition: background .28s, border-color .28s, color .28s, transform .2s, box-shadow .28s;
      position: relative;
      overflow: hidden;
    }
    .srv-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .35s ease;
      z-index: 0;
    }
    .srv-cta:hover::before { transform: scaleX(1); }
    .srv-cta:hover {
      color: var(--navy);
      border-color: var(--gold);
      box-shadow: 0 6px 22px rgba(212,175,55,.25);
      transform: translateY(-1px);
    }
    .srv-cta span, .srv-cta svg { position: relative; z-index: 1; }
    .srv-cta svg {
      width: 15px; height: 15px;
      stroke: currentColor; fill: none; stroke-width: 2.2;
      transition: transform .28s;
    }
    .srv-cta:hover svg { transform: translateX(5px); }

    /* Carte spéciale Voyage */
    .srv.srv-voyage {
      background: linear-gradient(155deg, #0d2240 0%, #0a1e3a 50%, #071424 100%);
      border-color: rgba(212,175,55,.22);
    }
    .srv.srv-voyage .srv-header::before {
      background: linear-gradient(90deg, var(--gold-l), var(--cyan) 80%);
    }
    .srv.srv-voyage .srv-title { color: var(--gold-l); }
    .srv.srv-voyage .srv-cta {
      background: rgba(212,175,55,.12);
      border-color: rgba(212,175,55,.4);
    }

    /* ────────────────────────────────────────
       GALERIE
    ──────────────────────────────────────── */
    #gallery { background: linear-gradient(180deg,#06101c 0%,#091a2e 100%); }

    .gallery-filters {
      display: flex; flex-wrap: wrap; gap: .55rem;
      margin-bottom: 2.5rem;
    }
    .gf-btn {
      padding: .38rem 1rem;
      border: 1px solid rgba(212,175,55,.25);
      background: transparent;
      font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.5);
      cursor: pointer; transition: all .25s;
      clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
    }
    .gf-btn:hover, .gf-btn.active {
      background: var(--gold); color: var(--navy);
      border-color: var(--gold);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .g-item {
      position: relative; overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
      cursor: pointer;
      aspect-ratio: 4/3;
    }
    .g-item.tall { grid-row: span 2; aspect-ratio: auto; }
    .g-item.wide { grid-column: span 2; }

    .g-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .55s ease;
    }
    .g-item:hover img { transform: scale(1.07); }

    .g-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(5,15,30,.88) 0%, transparent 55%);
      opacity: 0; transition: opacity .35s;
      display: flex; align-items: flex-end; padding: 1.1rem;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-label {
      font-family: var(--ff-serif); font-size: .95rem; font-weight: 600;
      color: var(--gold); letter-spacing: .04em;
    }
    .g-cat {
      font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
      color: rgba(255,255,255,.5); margin-top: .2rem;
    }

    /* lightbox */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lb-img { max-width: 88vw; max-height: 85vh; object-fit: contain; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%); }
    #lb-close {
      position: fixed; top: 1.5rem; right: 1.5rem;
      width: 44px; height: 44px;
      background: var(--gold); color: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; font-weight: 700; cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    }
    #lb-caption { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); text-align: center; }
    #lb-caption strong { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--gold); }
    #lb-caption span { display: block; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .25rem; }

    /* ────────────────────────────────────────
       TÉMOIGNAGES
    ──────────────────────────────────────── */
    #testimonials { background: linear-gradient(180deg,#091a2e 0%,#0a2540 100%); overflow: hidden; }

    .testi-track-wrap {
      overflow: hidden; position: relative; margin-top: 3rem;
    }
    .testi-track-wrap::before,
    .testi-track-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
      pointer-events: none;
    }
    .testi-track-wrap::before { left: 0; background: linear-gradient(to right, #091a2e, transparent); }
    .testi-track-wrap::after  { right: 0; background: linear-gradient(to left, #0a2540, transparent); }

    .testi-track {
      display: flex; gap: 1.5rem;
      animation: scrollLeft 38s linear infinite;
      width: max-content;
    }
    .testi-track:hover { animation-play-state: paused; }

    @keyframes scrollLeft {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .testi-card {
      background: var(--navy-card);
      border: 1px solid rgba(212,175,55,.1);
      padding: 1.8rem 1.6rem;
      width: 320px; flex-shrink: 0;
      position: relative;
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
      transition: border-color .3s, transform .3s;
    }
    .testi-card:hover { border-color: rgba(212,175,55,.3); transform: translateY(-4px); }
    .testi-card::before {
      content: '\201C'; position: absolute; top: 1rem; right: 1.4rem;
      font-family: var(--ff-serif); font-size: 4.5rem; line-height: 1;
      color: rgba(212,175,55,.1); font-style: italic;
    }

    .testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
    .testi-stars svg { width: 14px; height: 14px; fill: var(--gold); }
    .testi-text { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.8; font-style: italic; margin-bottom: 1.3rem; }
    .testi-author { display: flex; align-items: center; gap: .8rem; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--cyan));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display); font-size: 1.1rem; color: var(--navy); flex-shrink: 0;
    }
    .testi-name { font-size: .88rem; font-weight: 600; color: var(--white); }
    .testi-role { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); opacity: .7; margin-top: .15rem; }
    .testi-service {
      display: inline-block; margin-top: 1rem;
      padding: .22rem .7rem;
      border: 1px solid rgba(212,175,55,.18);
      font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(212,175,55,.55);
    }

    /* ────────────────────────────────────────
       EXPERTISE
    ──────────────────────────────────────── */
    #expertise { background: #071528; }
    .exp-g { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: center; }
    .exp-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
    .exp-item { display: flex; gap: 1rem; align-items: flex-start; }
    .exp-n { font-family:var(--ff-display); font-size:1.5rem; color:rgba(212,175,55,.3); line-height:1; flex-shrink:0; margin-top:.1rem; }
    .exp-t { font-size:.9rem; font-weight:600; color:var(--white); margin-bottom:.28rem; }
    .exp-d { font-size:.82rem; color:rgba(255,255,255,.48); line-height:1.72; }

    .donut-w { position:relative; display:flex; align-items:center; justify-content:center; width:min(280px,100%); margin:0 auto; }
    .donut-w svg { width:100%; height:auto; }
    .donut-c { position:absolute; text-align:center; }
    .donut-c .big { font-family:var(--ff-display); font-size:3rem; color:var(--white); line-height:1; }
    .donut-c .sub { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.38); line-height:1.4; }

    .legend { display:flex; flex-direction:column; gap:.6rem; margin-top:1.8rem; }
    .leg { display:flex; align-items:center; gap:.65rem; font-size:.78rem; color:rgba(255,255,255,.55); }
    .leg-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }

    /* ────────────────────────────────────────
       PROCESSUS
    ──────────────────────────────────────── */
    #process { background: linear-gradient(180deg,#071528 0%,#091e38 100%); }
    .proc-head { margin-bottom:3.5rem; }
    .proc-g {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; background: rgba(212,175,55,.08);
      position: relative;
    }
    .proc-step {
      background: var(--navy-card);
      padding: 2.2rem 1.6rem;
      position: relative; overflow: hidden;
    }
    .proc-step::after {
      content: '';
      position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
      background: var(--gold); transition: width .5s ease;
    }
    .proc-step:hover::after { width: 100%; }
    .proc-circle {
      width:50px; height:50px;
      border:1px solid rgba(212,175,55,.3); border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-family:var(--ff-display); font-size:1.2rem; color:var(--gold);
      margin-bottom:1.2rem;
      transition: background .3s, border-color .3s;
    }
    .proc-step:hover .proc-circle { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .proc-t { font-size:.93rem; font-weight:600; color:var(--white); margin-bottom:.5rem; }
    .proc-d { font-size:.81rem; color:rgba(255,255,255,.45); line-height:1.7; }

    /* ────────────────────────────────────────
       VALEURS
    ──────────────────────────────────────── */
    #values { background: var(--navy-card); }
    .val-head { margin-bottom: 3rem; }
    .val-g { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
    .val-c {
      background: linear-gradient(145deg,rgba(212,175,55,.04),rgba(45,156,219,.03));
      border:1px solid rgba(212,175,55,.1);
      padding:2.2rem 1.8rem;
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
      transition: border-color .3s, transform .3s;
    }
    .val-c:hover { border-color: rgba(212,175,55,.3); }
    .val-ico { width:48px; height:48px; margin-bottom:1.2rem; }
    .val-ico svg { width:100%; height:100%; stroke:var(--gold); fill:none; stroke-width:1.4; }
    .val-t { font-family:var(--ff-serif); font-size:1.2rem; font-weight:600; color:var(--white); margin-bottom:.5rem; }
    .val-d { font-size:.83rem; color:rgba(255,255,255,.5); line-height:1.75; }

    /* ────────────────────────────────────────
       CONTACT
    ──────────────────────────────────────── */
    #contact { background: linear-gradient(180deg,#091b2e 0%,#07111e 100%); }
    .contact-g { display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(2.5rem,5vw,5rem); align-items:start; }
    .contact-info p { font-size:.88rem; color:rgba(255,255,255,.5); line-height:1.85; margin-bottom:2rem; }
    .c-items { display:flex; flex-direction:column; gap:1rem; }
    .c-item { display:flex; align-items:flex-start; gap:.85rem; }
    .c-ico { width:38px; height:38px; background:rgba(212,175,55,.1); border:1px solid rgba(212,175,55,.18); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .c-ico svg { width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.8; }
    .c-lbl { font-size:.67rem; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:.2rem; }
    .c-val { font-size:.87rem; color:var(--white); }

    .contact-form { display:flex; flex-direction:column; gap:1rem; }
    .f-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
    .f-group { display:flex; flex-direction:column; gap:.35rem; }
    .f-group label { font-size:.67rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.35); }
    .f-group input, .f-group select, .f-group textarea {
      background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
      padding:.72rem 1rem; color:var(--white); font-family:var(--ff-sans); font-size:.88rem;
      transition:border-color .25s, background .25s;
      outline:none; resize:none; width:100%;
    }
    .f-group input:focus, .f-group select:focus, .f-group textarea:focus {
      border-color:rgba(212,175,55,.5); background:rgba(212,175,55,.03);
    }
    .f-group select option { background:var(--navy); }
    .f-group.err input, .f-group.err select, .f-group.err textarea { border-color:#e05; }

    #form-ok { display:none; padding:.85rem 1.2rem; background:rgba(16,185,129,.1); border:1px solid rgba(16,185,129,.3); font-size:.84rem; color:#6ee7b7; }

    /* ────────────────────────────────────────
       FOOTER
    ──────────────────────────────────────── */
    #footer { background: #050e1a; }
    .ft-g { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:clamp(2rem,4vw,4rem); padding-top:var(--py); padding-bottom:2rem; }
    .ft-logo { font-family:var(--ff-display); font-size:1.3rem; letter-spacing:.07em; color:var(--white); margin-bottom:1rem; }
    .ft-logo em { color:var(--gold); font-style:normal; }
    .ft-desc { font-size:.82rem; color:rgba(255,255,255,.28); line-height:1.85; max-width:240px; }
    .ft-socials { display:flex; gap:1rem; margin-top:1.2rem; }
    .ft-socials a { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; background:rgba(212,175,55,.1); border:1px solid rgba(212,175,55,.25); color:var(--gold); transition:all .3s; }
    .ft-socials a:hover { background:rgba(212,175,55,.25); color:var(--gold-l); transform:translateY(-2px); }
    .ft-title { font-size:.68rem; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.25); margin-bottom:1.1rem; }
    .ft-ul { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
    .ft-ul a { font-size:.82rem; color:rgba(255,255,255,.38); transition:color .25s; }
    .ft-ul a:hover { color:var(--gold); }
    .ft-bottom {
      margin-top:2.75rem; padding-top:1.4rem;
      border-top:1px solid rgba(255,255,255,.05);
      display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.5rem;
      font-size:.72rem; color:rgba(255,255,255,.17);
    }
    .ft-bottom a { color:rgba(212,175,55,.4); transition:color .25s; }
    .ft-bottom a:hover { color:var(--gold); }

    /* ────────────────────────────────────────
       BACK TO TOP
    ──────────────────────────────────────── */
    #btt {
      position:fixed; bottom:1.75rem; right:1.75rem; z-index:280;
      width:42px; height:42px;
      background:var(--gold); display:flex; align-items:center; justify-content:center;
      clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,0 100%);
      opacity:0; pointer-events:none;
      transition:opacity .32s, background .22s, transform .22s;
    }
    #btt.on { opacity:1; pointer-events:all; }
    #btt:hover { background:var(--gold-l); transform:translateY(-3px); }
    #btt svg { width:17px; height:17px; stroke:var(--navy); fill:none; stroke-width:2.5; }

    /* ────────────────────────────────────────
       ÉQUIPE
    ──────────────────────────────────────── */
    #team { background: #071528; }
    .team-wrap { position: relative; margin-top: 3rem; }
    .swiper-container { position: relative; }
    .swiper-slide { height: auto; }
    
    .team-member {
      background: linear-gradient(155deg, #0e2240 0%, #091b32 60%, #07151f 100%);
      border: 1px solid rgba(212,175,55,.13);
      padding: 0; overflow: hidden;
      display: flex; flex-direction: column;
      cursor: pointer;
      transition: border-color .35s, transform .35s, box-shadow .35s;
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    }
    .team-member:hover {
      border-color: rgba(212,175,55,.45);
      transform: translateY(-6px);
      box-shadow: 0 24px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.08);
    }
    
    .team-img-wrap {
      position: relative; overflow: hidden;
      aspect-ratio: 4/5; background: #0d2748;
    }
    .team-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
    }
    .team-member:hover .team-img-wrap img { transform: scale(1.05); }
    
    .team-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(5,15,30,.9) 0%, transparent 60%);
      opacity: 0; transition: opacity .35s;
      display: flex; align-items: flex-end; padding: 1.4rem;
    }
    .team-member:hover .team-overlay { opacity: 1; }
    .team-info { color: var(--white); }
    .team-name { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 600; color: var(--gold); }
    .team-role { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .3rem; }
    
    /* Swiper overrides */
    .swiper { overflow: visible; }
    .swiper-button-next, .swiper-button-prev {
      color: var(--gold); background: rgba(212,175,55,.1);
      width: 44px; height: 44px; border-radius: 0;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
      transition: all .28s;
    }
    .swiper-button-next:hover, .swiper-button-prev:hover {
      background: rgba(212,175,55,.25);
      color: var(--gold-l);
    }
    .swiper-button-next::after, .swiper-button-prev::after {
      font-size: 1.1rem; font-weight: 600;
    }
    
    .swiper-pagination { bottom: -3rem; }
    .swiper-pagination-bullet {
      background: rgba(212,175,55,.3);
      width: 8px; height: 8px;
      transition: all .3s;
    }
    .swiper-pagination-bullet-active {
      background: var(--gold); width: 24px; border-radius: 4px;
    }

    /* ────────────────────────────────────────
       RESPONSIVE
    ──────────────────────────────────────── */
    @media(max-width:1100px) {
      .srv-g { grid-template-columns:repeat(2,1fr); }
      .gallery-grid { grid-template-columns:repeat(3,1fr); }
    }
    @media(max-width:1040px) {
      .about-g { grid-template-columns:1fr 1fr; }
      .ft-g { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:860px) {
      .about-g { grid-template-columns:1fr; }
      .about-vis { aspect-ratio:16/8; max-width:100%; }
      .exp-g { grid-template-columns:1fr; }
      .gallery-grid { grid-template-columns:repeat(2,1fr); }
      .g-item.tall { grid-row: span 1; }
    }
    @media(max-width:768px) {
      .nav-ul { display:none; }
      .ham    { display:flex; }
      .h-deco { display:none; }
      .stats-g { grid-template-columns:repeat(2,1fr); }
      .stat { border-right:none; border-bottom:1px solid rgba(10,37,64,.15); }
      .stat:nth-child(odd) { border-right:1px solid rgba(10,37,64,.15); }
      .stat:last-child,:nth-child(3) { border-bottom:none; }
      .srv-g { grid-template-columns:1fr; }
      .proc-g { grid-template-columns:1fr 1fr; }
      .proc-g::before { display:none; }
      .val-g { grid-template-columns:1fr 1fr; }
      .contact-g { grid-template-columns:1fr; }
      .ft-g { grid-template-columns:1fr; }
      .ft-desc { max-width:100%; }
      .ft-bottom { flex-direction:column; text-align:center; }
    }
    @media(max-width:520px) {
      .proc-g { grid-template-columns:1fr; }
      .val-g  { grid-template-columns:1fr; }
      .h-cta  { flex-direction:column; align-items:flex-start; }
      .f-row  { grid-template-columns:1fr; }
      .gallery-grid { grid-template-columns:1fr 1fr; }
      .g-item.wide { grid-column: span 1; }
    }

    /* ── shimmer animation pour images ── */
    .img-shimmer {
      background: linear-gradient(90deg, #0d2748 0%, #122f55 50%, #0d2748 100%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    @keyframes shimmer { 0%{background-position:200%} 100%{background-position:-200%} }

    /* ── parallax hero ── */
    #hero .hero-inner { transform: translateZ(0); }

    /* ── section separator ── */
    .sec-sep {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(212,175,55,.18), transparent);
    }
