<style>
  
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:       #F4F5F1;
      --bg-alt:   #ECEEE9;
      --white:    #FFFFFF;
      --ink:      #1A1A18;
      --ink-soft: #555550;
      --ink-muted:#8A8A84;
      --rule:     #DDDDD8;
	  --light:    #f9f9f9;

      --orange:    #da9938;
      --orange-dk: #be852f;
      --orange-lt: #f2eee6;
      --blue:    #568298;
      --blue-lt: #E8EFF8;
      --gold:     #aea18c;

      --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      --body:    'Outfit', system-ui, sans-serif;
      --max:     1240px;
      --pad:     clamp(1.25rem, 4vw, 3rem);
      --r:       2px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--body); background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    img  { display: block; max-width: 100%; }
    a    { color: inherit; text-decoration: none; }

    /* ══ NAV — blanc propre ══ */
    .nav {
      position: fixed; inset: 0 0 auto; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 var(--pad); height: 80px;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--rule);
    }
    .nav-logo img { height: 28px; }
    .nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
    .nav-links a {
      font-family: var(--display); font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--ink-soft); padding: 0.4rem 0.8rem; border-radius: var(--r);
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--ink); background: var(--bg-alt); }
    .nav-shop { background: var(--orange) !important; color: #fff !important; }
    .nav-shop:hover { background: var(--orange-dk) !important; }
    .nav-sep  { width: 1px; height: 14px; background: var(--rule); margin: 0 0.2rem; }

    /* ══ HERO — split plein écran, typographie condensée massive ══ */
    .hero {
      padding-top: 70px; 
      display: grid; grid-template-columns: 60% 40%;
      background: var(--light);
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: clamp(2rem,4vw,4rem) var(--pad);
      border-right: 1px solid var(--rule);
      position: relative;
    }s
    /* trait vert gauche — ligne de force */
    .hero-left::before {
      content: '';
      position: absolute; top: 12%; left: 0; bottom: 12%;
      width: 4px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      border-radius: 2px;
    }
    .hero-eyebrow {
      font-family: var(--display); font-size: 1rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.1rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-eyebrow::before { content: ''; width: 2.5rem; height: 2px; background: var(--gold); flex-shrink: 0; }

    /* H1 — grand, condensé, impactant */
    h1 {
      font-family: var(--display);
      font-size: clamp(3.5rem, 8vw, 4.5rem);
      font-weight: 700; line-height: 0.9;
      letter-spacing: 0.01em; text-transform: uppercase;
      color: var(--ink); margin-bottom: 1.75rem;
    }
    h1 em { color: var(--orange); font-style: normal; }

    .hero-sub {
      font-family: var(--body); font-size: 1.0rem; font-weight: 300;
      color: var(--ink-soft); max-width: 42ch; line-height: 1.8;
      margin-bottom: 2rem;
      padding-left: 1rem; border-left: 2px solid var(--rule);
    }
    .hero-kpi {
      display: flex; gap: 2.5rem; margin-bottom: 2.25rem;
      padding: 1.1rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    }
    .kpi-num   { font-family: var(--display); font-size: 2.25rem; font-weight: 800; color: var(--ink-soft); line-height: 1; letter-spacing: -0.01em; }
    .kpi-label { font-size: 0.68rem; font-weight: 500; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }
    .hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

    /* Boutons */
    .btn {
      font-family: var(--display); font-size: 1.5rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.75rem 1.6rem; border-radius: var(--r);
      transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.12); }
    .btn-orange   { background: var(--orange); color: #fff; }
    .btn-orange:hover { background: var(--orange-dk); box-shadow: 0 6px 22px rgba(46,107,62,0.3); }
    .btn-blue   { background: var(--blue); color: #fff; }
    .btn-gold    { background: var(--gold);  color: #fff; }
    .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--rule); }
    .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
    .btn-outline-2 { background: transparent; color: var(--ink); border: 1.5px solid var(--rule); }
    .btn-outline-2:hover { border-color: var(--blue); color: var(--blue); }

    /* Hero photo + badge flottant */
    .hero-right { position: relative; overflow: hidden;}
    .hero-right img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 30%;
      transition: transform 9s ease;
    }
    .hero:hover .hero-right img { transform: scale(1.04); }
    /* Gradient bas de photo */
    .hero-right::after {
      content: ''; position: absolute; inset: auto 0 0;
      height: 40%; background: linear-gradient(to top, rgba(26,26,24,0.45), transparent);
      pointer-events: none;
    }
    /* Badge flottant blanc — modernité "fusing" */
    .hero-badge {
      position: absolute; bottom: 2rem; left: 2rem; z-index: 2;
      background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
      border-left: 4px solid var(--gold);
      padding: 1rem 1.5rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    .hero-badge-num   { font-family: var(--display); font-size: 2.75rem; font-weight: 800; color: var(--ink-soft); line-height: 1; letter-spacing: -0.01em; }
    .hero-badge-label { font-size: 0.62rem; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

    /* ══ STATS — ligne pleine  ══ */
    .stats {
      background: var(--bg-alt);
      border-bottom: 2px solid var(--rule);
    }
    

    /* ══ SECTIONS ══ */
    .section { padding: clamp(4rem,7vw,6rem) var(--pad); }
    .section-inner { max-width: var(--max); margin: 0 auto; }

    /* Eyebrow + titre section */
    .eyebrow {
      font-family: var(--display); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.6rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .eyebrow::before { content: ''; width: 2rem; height: 2px; border-radius: 1px; flex-shrink: 0; }
    .eyebrow.g { color: var(--orange); } .eyebrow.g::before { background: var(--orange); }
    .eyebrow.a { color: var(--blue); } .eyebrow.a::before { background: var(--blue); }

    h2.s-title {
      font-family: var(--display);
      font-size: clamp(2.5rem,5vw,5.5rem);
      font-weight: 800; line-height: 0.92; letter-spacing: 0.01em;
      text-transform: uppercase; color: var(--ink); margin-bottom: 1rem;
    }
    h2.s-title em   { color: var(--orange); font-style: normal; }
    h2.s-title em.a { color: var(--blue); }
    .s-desc { font-size: 1.0rem; font-weight: 300; color: var(--ink-soft); max-width: 60ch; line-height: 1.85; }

    /* Header 2 cols */
    .s-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 2.5rem; }

    /* Pole logo */
    .pole-logo { height: 68px; opacity: 0.85; margin-bottom: 1.25rem; }

    /* ══ IMAGE PLEINE LARGEUR avec overlay caption ══ */
    .img-hero {
      position: relative; overflow: hidden;
      border-radius: var(--r); margin-bottom: 2rem;
    }
    .img-hero img {
      width: 100%; aspect-ratio: 21/7; object-fit: cover;
      display: block; transition: transform 6s ease;
    }
    .img-hero:hover img { transform: scale(1.03); }
    .img-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(26,26,24,0.35) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ══ GRILLE CARTES ══ */
    .grid { display: grid; gap: 2px; background: var(--rule); border-radius: var(--r); overflow: hidden; }
    .grid.c4 { grid-template-columns: repeat(4,1fr); }
    .grid.c3 { grid-template-columns: repeat(3,1fr); }
    .grid.c2 { grid-template-columns: repeat(2,1fr); }

    .card {
      background: var(--white); padding: 1.75rem 1.5rem;
      display: flex; flex-direction: column; gap: 0.45rem;
      border-top: 3px solid transparent;
      transition: border-color 0.2s, background 0.2s;
      position: relative;
    }
    .card.g:hover { border-top-color: var(--orange); background: var(--orange-lt); }
    .card.a:hover { border-top-color: var(--blue); background: var(--blue-lt); }
    .card-icon { font-size: 1.5rem; line-height: 1; margin-bottom: 0.15rem; }
    .card-tag  { font-family: var(--display); font-size: 0.80rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
    .card-tag.g { color: var(--orange); }
    .card-tag.a { color: var(--blue); }
    .card h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); line-height: 1.1; }
    .card p  { font-size: 0.88rem; font-weight: 300; color: var(--ink-soft); line-height: 1.7; flex: 1; }
    .clink {
      font-family: var(--display); font-size: 0.80rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 0.35rem;
      margin-top: 0.4rem; transition: gap 0.2s;
    }
    .clink::after { content: '→'; }
    .clink:hover  { gap: 0.6rem; }
    .clink.g { color: var(--orange); }
    .clink.a { color: var(--blue); }

    /* ══ BANDE ÉDITO 2 COLS ══ */
    .edito { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); border-radius: var(--r); overflow: hidden; margin-top: 2px; }
    .edito-blk { padding: 2rem 1.75rem; }
    .edito-blk.g { background: var(--orange-lt); }
    .edito-blk.a { background: var(--blue-lt); }
    .edito-blk h3 { font-family: var(--display); font-size: 1.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.6rem; }
    .edito-blk.g h3 { color: var(--orange-dk); }
    .edito-blk.a h3 { color: var(--blue); }
    .edito-blk p { font-size: 0.88rem; font-weight: 300; color: var(--ink-soft); line-height: 1.75; margin-bottom: 0.9rem; }

    /* ══ CTA BAR ══ */
    .cta-bar {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem; padding: 1.4rem 2rem;
      border-radius: var(--r); margin-top: 2px;
    }
    .cta-bar.g { background: var(--orange); }
    .cta-bar.a { background: var(--blue); }
    .cta-bar p  { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.8); max-width: 52ch; }
    .cta-btns   { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .btn-wh { font-family: var(--display); font-size: 0.80rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1rem; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--r); transition: background 0.2s; }
    .btn-wh:hover { background: rgba(255,255,255,0.28); }
    .btn-ws { font-family: var(--display); font-size: 0.80rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1rem; background: var(--white); border-radius: var(--r); transition: opacity 0.2s; }
    .btn-ws:hover { opacity: 0.88; }
    .btn-ws.g { color: var(--orange); }
    .btn-ws.a { color: var(--blue); }

    /* ══ BREVET CLI — section pleine, fond gris ══ */
    .cli { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
    .cli-inner {
      max-width: var(--max); margin: 0 auto;
      padding: clamp(3.5rem,6vw,5.5rem) var(--pad);
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .cli-left h2 {
      font-family: var(--display); font-size: clamp(2.5rem,4.5vw,4.5rem);
      font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em;
      color: var(--ink); line-height: 0.92; margin-bottom: 1.25rem;
    }
    .cli-left h2 em { color: var(--gold); font-style: normal; }
    .cli-left p { font-size: 0.88rem; font-weight: 300; color: var(--ink-soft); line-height: 1.85; margin-bottom: 0.75rem; }
    .tech-links { display: flex; flex-direction: column; gap: 2px; margin-top: 1.5rem; }
    .tech-link {
      display: flex; align-items: center; gap: 0.85rem;
      padding: 0.85rem 1rem; background: var(--white);
      border-left: 3px solid transparent;
      font-size: 0.8rem; color: var(--ink-soft);
      transition: all 0.2s;
    }
    .tech-link:hover { border-left-color: var(--orange); color: var(--ink); background: var(--orange-lt); }
    .tech-link-body { flex: 1; }
    .tech-link-body strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.1rem; }
    .tech-arr { color: var(--ink-muted); }

    /* Badge CLI vert + photo */
    .cli-right {}
    .cli-badge {
      background: var(--gold); color: #fff; padding: 2rem 1.75rem;
      border-radius: var(--r); display: flex; gap: 1.25rem; align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .cli-badge-icon { font-size: 2rem; flex-shrink: 0; }
    .cli-badge h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
    .cli-badge p  { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
    .cli-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r); filter: brightness(0.82); }

    /* ══ FOOTER sombre ══ */
    footer { background: var(--ink); padding: 3.5rem var(--pad) 0; }
    .foot-inner { max-width: var(--max); margin: 0 auto; }
    .foot-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
    .foot-logo img { height: 30px; filter: brightness(0) invert(1); opacity: 0.70; margin-bottom: 1rem; }
    .foot-tagline  { font-size: 0.76rem; font-weight: 300; color: #f6f6f6; line-height: 1.75; max-width: 28ch; }
    .foot-col h4 { font-family: var(--display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #f6f6f6; margin-bottom: 1rem; }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
    .foot-col a  { font-size: 0.77rem; font-weight: 300; color: rgba(255,255,255,0.38); transition: color 0.2s; color: #f6f6f6;}
    .foot-col a:hover { color: #fff; }
    .foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.07); }
    .foot-copy { font-size: 0.70rem; color: rgba(255,255,255,0.78); }
    .foot-addr { font-size: 0.70rem; color: rgba(255,255,255,0.78); font-style: normal; }
    .foot-addr a { color: inherit; }
    .foot-social { display: flex; gap: 1rem; }
    .foot-social a { font-family: var(--display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.60); transition: color 0.2s; }
    .foot-social a:hover { color: #fff; }
    /* Barre verte signature en bas */
    .foot-bar { height: 4px; background: var(--gold); margin-top: 1.5rem; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { aspect-ratio: 16/9; order: -1; }
      .s-header   { grid-template-columns: 1fr; gap: 1.5rem; }
		.grid.c4  { grid-template-columns: 2fr 2fr; }
      .cli-inner  { grid-template-columns: 1fr; }
      .shop-inner { flex-direction: column; align-items: flex-start; }
      .foot-grid  { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .stats    { grid-template-columns: 1fr 1fr; }
      .grid.c4  { grid-template-columns: 1fr 1fr; }
      .grid.c3  { grid-template-columns: 1fr 1fr; }
      .edito    { grid-template-columns: 1fr; }
      .cta-bar  { flex-direction: column; align-items: flex-start; }
      /*.nav-links { display: none; }*/
    }
    @media (max-width: 480px) {
      .grid.c4, .grid.c3, .grid.c2 { grid-template-columns: 1fr; }
      .stats { grid-template-columns: 1fr; }
      .hero-kpi { gap: 1.5rem; }
      .foot-grid { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
  </style>