/* =========================================================
     MAQUETTE v5 -- frenchcasting.net  (Noir & Or -- version finale)
     Direction : Premium / Cinematographique
     Palette : Noir profond + Or champagne + Ivoire
     ========================================================= */

  :root {
    --noir:        #0a0a0b;
    --noir-2:      #141416;
    --noir-3:      #1d1d20;
    --or:          #c9a96a;
    --or-clair:    #e3c98f;
    --or-fonce:    #9c7e45;
    --ivoire:      #f5f1e8;
    --gris:        #8a857c;
    --gris-2:      #3a3a3e;
    --erreur:      #e07a5f;
    --succes:      #81b29a;
    --ombre:       0 24px 60px -20px rgba(0,0,0,.7);
    --serif:       'Playfair Display', Georgia, serif;
    --sans:        'Inter', -apple-system, 'Segoe UI', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
  body {
    font-family: var(--sans);
    background: var(--noir);
    color: var(--ivoire);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; }
  ::selection { background: var(--or); color: var(--noir); }

  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--noir); }
  ::-webkit-scrollbar-thumb { background: var(--gris-2); border-radius: 10px; border: 2px solid var(--noir); }
  ::-webkit-scrollbar-thumb:hover { background: var(--or-fonce); }

  .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* ============ HEADER ============ */
  header.site {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 0; background: rgba(10,10,11,.0);
    transition: all .4s ease; border-bottom: 1px solid transparent;
  }
  header.site.scrolled {
    background: rgba(10,10,11,.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,169,106,.15);
    padding: 14px 0;
  }
  header.site .container { display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; align-items: center; gap: 12px; }
  .logo .monogram {
    width: 64px; height: 64px; border-radius: 6px; overflow: hidden;
    background: radial-gradient(circle at 30% 30%, rgba(201,169,106,.15), transparent 70%);
    border: 1px solid rgba(201,169,106,.3);
    flex-shrink: 0;
  }
  .logo .monogram img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .logo .txt { display: flex; flex-direction: column; line-height: 1.05; }
  .logo .txt .name { font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: .5px; }
  .logo .txt .sub  { font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-top: 2px; }

  nav.primary { display: flex; align-items: center; gap: 38px; }
  nav.primary a {
    font-size: 13px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase;
    color: var(--ivoire); opacity: .75; position: relative; transition: opacity .3s;
  }
  nav.primary a:hover { opacity: 1; }
  nav.primary a::after {
    content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
    background: var(--or); transition: width .3s;
  }
  nav.primary a:hover::after { width: 100%; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans); font-size: 12.5px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 13px 26px; border-radius: 2px; cursor: pointer;
    transition: all .3s ease; border: 1px solid transparent;
  }
  .btn-gold { background: linear-gradient(135deg, var(--or-clair), var(--or), var(--or-fonce)); color: var(--noir); box-shadow: 0 10px 30px -10px rgba(201,169,106,.5); }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(201,169,106,.7); }
  .btn-ghost { background: transparent; color: var(--ivoire); border-color: rgba(245,241,232,.3); }
  .btn-ghost:hover { border-color: var(--or); color: var(--or); }

  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; }
  .burger span { width: 26px; height: 2px; background: var(--ivoire); transition: .3s; }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 99; background: var(--noir);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform .4s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { font-family: var(--serif); font-size: 28px; color: var(--ivoire); }

  /* ============ HERO ============ */
  .hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 70% 20%, rgba(201,169,106,.12), transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(44,55,80,.25), transparent 50%),
      var(--noir);
  }
  .hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(201,169,106,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,169,106,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  #particles { position: absolute; inset: 0; z-index: 1; }
  .hero .container { position: relative; z-index: 2; padding-top: 100px; }
  .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--or); margin-bottom: 28px;
  }
  .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--or); }

  h1.hero-title {
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(40px, 5.5vw, 76px); line-height: 1.05;
    letter-spacing: -1px; margin-bottom: 26px;
  }
  h1.hero-title em {
    font-style: italic; font-weight: 500;
    background: linear-gradient(120deg, var(--or-clair), var(--or));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero p.lead { font-size: 17px; color: var(--gris); max-width: 480px; margin-bottom: 40px; font-weight: 300; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-note { margin-top: 16px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--or); font-weight: 600; }

  .hero-stats {
    display: flex; gap: 48px; margin-top: 64px; padding-top: 36px;
    border-top: 1px solid rgba(245,241,232,.08);
    flex-wrap: wrap; max-width: 100%;
  }
  .hero-stats .stat { min-width: 0; flex-shrink: 1; }
  .hero-stats .stat .lbl { overflow-wrap: break-word; }
  .hero-stats .stat .num { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--or); }
  .hero-stats .stat .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); margin-top: 4px; }

  .hero-card {
    position: relative; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(201,169,106,.2); box-shadow: var(--ombre);
    background: var(--noir-2);
  }
  .hero-card-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.8) contrast(1.05);
  }
  .hero-card .frame-line { position: absolute; inset: 18px; border: 1px solid rgba(201,169,106,.15); pointer-events: none; }
  .hero-card .play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 78px; height: 78px; border-radius: 50%;
    border: 1.5px solid var(--or); display: grid; place-items: center; cursor: pointer;
    background: rgba(10,10,11,.4); transition: all .3s;
  }
  .hero-card .play:hover { background: var(--or); transform: translate(-50%,-50%) scale(1.08); }
  .hero-card .play::after {
    content: ''; width: 0; height: 0; margin-left: 4px;
    border-left: 16px solid var(--or); border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  }
  .hero-card .play:hover::after { border-left-color: var(--noir); }
  .hero-card .label { position: absolute; bottom: 28px; left: 28px; right: 28px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
  .hero-card .label .meta { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--or); display: block; margin-bottom: 8px; }
  .hero-card .badge {
    position: absolute; top: 28px; right: 28px;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 12px; border: 1px solid rgba(201,169,106,.4); border-radius: 20px; color: var(--or);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .hero-card .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--succes); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

  .scroll-ind {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gris);
    display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 3;
  }
  .scroll-ind::after { content: ''; width: 1px; height: 40px; background: linear-gradient(var(--or), transparent); animation: scrolldown 2s infinite; }
  @keyframes scrolldown { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

  /* ============ MARQUEE ============ */
  .marquee {
    border-top: 1px solid rgba(201,169,106,.12); border-bottom: 1px solid rgba(201,169,106,.12);
    background: var(--noir-2); overflow: hidden; padding: 24px 0; white-space: nowrap;
    max-width: 100%; position: relative;
  }
  .marquee-track { display: inline-flex; gap: 50px; animation: scrollx 30s linear infinite; }
  .marquee-track span {
    font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--ivoire); opacity: .85;
    display: inline-flex; align-items: center; gap: 50px;
  }
  .marquee-track span::after { content: '\2726'; color: var(--or); font-style: normal; font-size: 16px; }
  @keyframes scrollx { to { transform: translateX(-50%); } }

  /* ============ SECTION GENERIQUE ============ */
  section { padding: 120px 0; position: relative; }
  .sec-head { text-align: center; max-width: 680px; margin: 0 auto 70px; }
  .sec-head .eyebrow { justify-content: center; }
  .sec-head h2 {
    font-family: var(--serif); font-weight: 600;
    font-size: clamp(30px, 3.5vw, 46px); line-height: 1.15; letter-spacing: -.5px; margin-bottom: 18px;
  }
  .sec-head p { color: var(--gris); font-size: 16px; font-weight: 300; }

  /* ============ ACTIVITES ============ */
  #activites { background: var(--noir-2); }
  .activities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .act-card {
    position: relative; border-radius: 4px; overflow: hidden;
    background: linear-gradient(180deg, var(--noir-3), var(--noir-2));
    border: 1px solid rgba(245,241,232,.06); transition: all .4s ease;
    display: flex; flex-direction: column;
    cursor: pointer;
  }
  .act-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 3;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    transform: scaleX(0); transition: transform .4s;
  }
  .act-card:hover { transform: translateY(-6px); border-color: rgba(201,169,106,.3); box-shadow: var(--ombre); }
  .act-card:hover::before { transform: scaleX(1); }
  .act-card .act-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
  .act-card .act-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
  .act-card:hover .act-img img { transform: scale(1.06); }
  .act-card .act-body { padding: 32px 32px 36px; }
  .act-card .num { font-family: var(--serif); font-size: 13px; color: var(--or); letter-spacing: 2px; margin-bottom: 18px; }
  .act-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; margin-bottom: 14px; }
  .act-card p { color: var(--gris); font-size: 14.5px; font-weight: 300; }
  .act-card .tag {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 18px; padding: 6px 14px; border-radius: 30px;
    font-size: 10.5px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    border: 1px solid rgba(201,169,106,.4); color: var(--or); background: rgba(201,169,106,.06);
  }

  /* ============ PROCESS ============ */
  #process .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
  #process .steps::before {
    content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px;
    background: linear-gradient(90deg, var(--or-fonce), var(--or), var(--or-fonce)); opacity: .4;
  }
  .step { text-align: center; padding: 0 18px; position: relative; }
  .step .circle {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 24px;
    background: var(--noir); border: 1.5px solid var(--or);
    display: grid; place-items: center; position: relative; z-index: 2;
    font-family: var(--serif); font-size: 20px; color: var(--or);
  }
  .step h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
  .step p { color: var(--gris); font-size: 13.5px; font-weight: 300; }

  /* ============ VIDEO A LA UNE ============ */
  .feature-video {
    max-width: 920px; margin: 0 auto; cursor: pointer;
  }
  .feature-video .vid-thumb {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--noir-3), var(--noir));
    border: 1px solid rgba(201,169,106,.15);
    transition: all .4s ease;
  }
  .feature-video .vid-thumb:hover { border-color: rgba(201,169,106,.4); box-shadow: var(--ombre); }
  .feature-video .vid-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,11,.5) 0%, transparent 50%); z-index: 1; }
  .feature-video .play-big {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
    width: 88px; height: 88px; border-radius: 50%;
    border: 1.5px solid var(--or); display: grid; place-items: center;
    background: rgba(10,10,11,.45); backdrop-filter: blur(6px); transition: all .35s;
  }
  .feature-video .play-big::after {
    content: ''; margin-left: 5px;
    border-left: 24px solid var(--or); border-top: 16px solid transparent; border-bottom: 16px solid transparent;
  }
  .feature-video .vid-thumb:hover .play-big { background: var(--or); transform: translate(-50%,-50%) scale(1.06); }
  .feature-video .vid-thumb:hover .play-big::after { border-left-color: var(--noir); }
  .feature-video .duration {
    position: absolute; bottom: 16px; right: 16px; z-index: 2;
    font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 2px;
    background: rgba(10,10,11,.75); backdrop-filter: blur(4px); color: var(--ivoire);
  }
  .feature-meta { text-align: center; margin-top: 32px; }
  .feature-meta .cat { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--or); margin-bottom: 12px; }
  .feature-meta h3 { font-family: var(--serif); font-size: clamp(22px,2.5vw,30px); font-weight: 600; line-height: 1.3; margin-bottom: 12px; }
  .feature-meta p { font-size: 15px; color: var(--gris); max-width: 560px; margin: 0 auto; font-weight: 300; }

  /* ============ A PROPOS ============ */
  #about { background: var(--noir-2); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(201,169,106,.15);
    box-shadow: var(--ombre);
  }
  .about-visual .about-img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .about-text h2 { font-family: var(--serif); font-size: clamp(28px,3.2vw,42px); font-weight: 600; line-height: 1.15; margin-bottom: 24px; letter-spacing: -.5px; }
  .about-text h2 em { font-style: italic; color: var(--or); }
  .about-text > p { color: var(--gris); font-size: 15.5px; font-weight: 300; margin-bottom: 20px; }
  .about-feats { list-style: none; margin-top: 32px; }
  .about-feats li {
    display: flex; align-items: flex-start; gap: 16px; padding: 14px 0;
    border-bottom: 1px solid rgba(245,241,232,.06); font-size: 14.5px;
  }
  .about-feats li:last-child { border-bottom: none; }
  .about-feats li .check {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    border: 1px solid var(--or); display: grid; place-items: center; margin-top: 1px;
  }
  .about-feats li .check::after { content: ''; width: 8px; height: 4px; border-left: 1.5px solid var(--or); border-bottom: 1.5px solid var(--or); transform: rotate(-45deg) translate(1px,-1px); }
  .about-feats li strong { color: var(--ivoire); font-weight: 500; }

  /* ============ SECTIONS TEXTE HOME (SEO) ============ */
  .home-text { max-width: 760px; margin: 0 auto; text-align: left; }
  .home-text p { color: var(--gris); font-size: 15.5px; font-weight: 300; margin-bottom: 16px; }
  .home-text p strong { color: var(--ivoire); font-weight: 500; }
  .home-text a.internal { color: var(--or); border-bottom: 1px dotted var(--or); transition: color .3s; }
  .home-text a.internal:hover { color: var(--or-clair); }
  .home-text ul { list-style: none; margin: 20px 0; }
  .home-text ul li { color: var(--gris); font-size: 15px; padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid rgba(245,241,232,.05); }
  .home-text ul li:last-child { border-bottom: none; }
  .home-text ul li::before { content: '--'; position: absolute; left: 0; color: var(--or); }
  .home-text ul li strong { color: var(--ivoire); font-weight: 500; }

  /* ============ FAQ ============ */
  #faq { background: var(--noir-2); }
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid rgba(245,241,232,.08); }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    padding: 26px 4px; text-align: left; color: var(--ivoire);
    font-family: var(--serif); font-size: 19px; font-weight: 500;
  }
  .faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; position: relative; transition: transform .3s; }
  .faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--or); top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .faq-q .pm::before { width: 14px; height: 1.5px; }
  .faq-q .pm::after { width: 1.5px; height: 14px; transition: transform .3s; }
  .faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .faq-a p { padding: 0 4px 26px; color: var(--gris); font-size: 14.5px; font-weight: 300; }
  .faq-a .highlight { display: inline-block; padding: 2px 10px; background: rgba(201,169,106,.15); color: var(--or-clair); border: 1px solid rgba(201,169,106,.3); border-radius: 3px; font-weight: 500; font-size: 13px; }

  /* ============ PORTFOLIO ============ */
  #portfolio { background: var(--noir); }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 1fr; gap: 16px;
  }
  /* Grille mosaique : 4 photos vedettes plus grandes */
  .gallery-item:nth-child(1)  { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6)  { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(9)  { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(12) { grid-column: span 2; grid-row: span 2; }
  @media (max-width: 620px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(9),
    .gallery-item:nth-child(12) { grid-column: span 2; grid-row: span 2; }
  }
  .gallery-item {
    position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
    border: 1px solid rgba(201,169,106,.12); cursor: pointer; transition: all .4s ease;
  }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s ease, filter .4s ease;
    filter: grayscale(.3) brightness(.85) contrast(1.05);
  }
  .gallery-item:hover { border-color: rgba(201,169,106,.5); transform: translateY(-4px); }
  .gallery-item:hover img { transform: scale(1.06); filter: grayscale(0) brightness(1) contrast(1.05); }
  /* Photos moins saturees a la base : eclat renforce */
  .gallery-item.boost img {
    filter: grayscale(.3) brightness(1.05) contrast(1.12) saturate(1.35);
  }
  .gallery-item.boost:hover img { transform: scale(1.06); filter: grayscale(0) brightness(1.1) contrast(1.12) saturate(1.35); }
  .gallery-item .caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 20px;
    background: linear-gradient(to top, rgba(10,10,11,.95), transparent);
    transform: translateY(8px); opacity: 0; transition: all .4s ease;
  }
  .gallery-item:hover .caption { transform: translateY(0); opacity: 1; }
  .gallery-item .caption .cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--or); margin-bottom: 6px; }
  .gallery-item .caption .name { font-family: var(--serif); font-size: 18px; color: var(--ivoire); }

  /* ============ LIGHTBOX ============ */
  .lightbox {
    position: fixed; inset: 0; z-index: 210;
    background: rgba(5,5,6,.95); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center; padding: 60px;
    opacity: 0; pointer-events: none; transition: opacity .35s ease;
  }
  .lightbox.open { opacity: 1; pointer-events: auto; }
  .lightbox img {
    max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,.9);
    transform: scale(.96); transition: transform .35s ease;
  }
  .lightbox.open img { transform: scale(1); }
  .lightbox .lb-close {
    position: absolute; top: 24px; right: 32px; z-index: 2;
    width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    background: transparent; border: 1px solid rgba(201,169,106,.4); color: var(--or);
    font-size: 24px; display: grid; place-items: center; transition: all .3s;
  }
  .lightbox .lb-close:hover { background: var(--or); color: var(--noir); }
  .lightbox .lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
    background: transparent; border: 1px solid rgba(201,169,106,.4); color: var(--or);
    font-size: 26px; display: grid; place-items: center; transition: all .3s;
  }
  .lightbox .lb-nav:hover { background: var(--or); color: var(--noir); }
  .lightbox .lb-prev { left: 32px; }
  .lightbox .lb-next { right: 32px; }
  .lightbox .lb-counter {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    font-size: 13px; letter-spacing: 2px; color: var(--gris);
  }
  @media (max-width: 620px) {
    .lightbox { padding: 40px 16px; }
    .lightbox .lb-nav { width: 44px; height: 44px; }
    .lightbox .lb-prev { left: 10px; }
    .lightbox .lb-next { right: 10px; }
  }

  /* ============ OVERLAY ACTIVITE (zoom au clic) ============ */
  .act-overlay {
    position: fixed; inset: 0; z-index: 220;
    background: rgba(5,5,6,.92); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center; padding: 40px 24px;
    opacity: 0; pointer-events: none; transition: opacity .35s ease;
  }
  .act-overlay.open { opacity: 1; pointer-events: auto; }
  .act-overlay .ao-card {
    width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto;
    background: linear-gradient(180deg, var(--noir-3), var(--noir-2));
    border: 1px solid rgba(201,169,106,.3); border-radius: 6px; overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,.9);
    transform: scale(.94); transition: transform .35s ease;
  }
  .act-overlay.open .ao-card { transform: scale(1); }
  .act-overlay .ao-img { width: 100%; }
  .act-overlay .ao-img img { width: 100%; height: auto; display: block; }
  .act-overlay .ao-body { padding: 40px 44px 44px; position: relative; }
  .act-overlay .ao-close {
    position: absolute; top: -52px; right: 0;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    background: transparent; border: 1px solid rgba(201,169,106,.4); color: var(--or);
    font-size: 22px; display: grid; place-items: center; transition: all .3s;
  }
  .act-overlay .ao-close:hover { background: var(--or); color: var(--noir); }
  .act-overlay .ao-num { font-family: var(--serif); font-size: 14px; color: var(--or); letter-spacing: 2px; margin-bottom: 12px; }
  .act-overlay .ao-title { font-family: var(--serif); font-size: 34px; font-weight: 600; margin-bottom: 16px; }
  .act-overlay .ao-desc { font-size: 16px; color: var(--ivoire); line-height: 1.7; font-weight: 300; }
  .act-overlay .ao-tag {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 22px; padding: 8px 16px; border-radius: 30px;
    font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    border: 1px solid rgba(201,169,106,.4); color: var(--or); background: rgba(201,169,106,.06);
  }
  @media (max-width: 620px) {
    .act-overlay .ao-body { padding: 28px 24px 32px; }
    .act-overlay .ao-title { font-size: 26px; }
  }

  /* ============ CONTACT ============ */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
  .contact-info h2 { font-family: var(--serif); font-size: clamp(28px,3.2vw,42px); font-weight: 600; margin-bottom: 20px; line-height: 1.15; }
  .contact-info h2 em { font-style: italic; color: var(--or); }
  .contact-info > p { color: var(--gris); font-size: 15.5px; font-weight: 300; margin-bottom: 32px; }
  .contact-info .detail { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(245,241,232,.06); }
  .contact-info .detail svg { width: 20px; height: 20px; stroke: var(--or); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
  .contact-info .detail .k { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); }
  .contact-info .detail .v { font-size: 15px; color: var(--ivoire); margin-top: 3px; }

  .contact-form {
    background: var(--noir-2); border: 1px solid rgba(245,241,232,.08);
    padding: 40px; border-radius: 4px;
  }
  .field { margin-bottom: 22px; }
  .field label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); margin-bottom: 8px; }
  .field input, .field textarea, .field select {
    width: 100%; background: var(--noir); border: 1px solid rgba(245,241,232,.1);
    color: var(--ivoire); font-family: var(--sans); font-size: 15px;
    padding: 14px 16px; border-radius: 2px; transition: border-color .3s;
  }
  .field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--or); }
  .field textarea { resize: vertical; min-height: 110px; }
  .field.erreur input, .field.erreur textarea { border-color: var(--erreur); }
  .field .err-msg { color: var(--erreur); font-size: 12px; margin-top: 6px; display: none; }
  .field.erreur .err-msg { display: block; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .form-msg { padding: 14px 16px; border-radius: 2px; font-size: 14px; margin-top: 6px; display: none; }
  .form-msg.ok { background: rgba(129,178,154,.12); border: 1px solid var(--succes); color: var(--succes); }
  .form-msg.err { background: rgba(224,122,95,.12); border: 1px solid var(--erreur); color: var(--erreur); }
  button:disabled { opacity: .6; cursor: wait; }
  .form-note { margin-top: 16px; padding: 12px 14px; background: rgba(201,169,106,.08); border-left: 2px solid var(--or); border-radius: 2px; font-size: 12.5px; color: var(--gris); }
  .form-note strong { color: var(--or); }

  /* ============ CTA ============ */
  .cta-band {
    position: relative; padding: 90px 0; text-align: center; overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(201,169,106,.15), transparent 60%), var(--noir);
  }
  .cta-band::before, .cta-band::after {
    content: ''; position: absolute; top: 50%; width: 40%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,106,.4));
  }
  .cta-band::before { left: 0; }
  .cta-band::after { right: 0; transform: scaleX(-1); }
  .cta-band h2 { font-family: var(--serif); font-size: clamp(30px,4vw,52px); font-weight: 600; line-height: 1.15; margin-bottom: 18px; }
  .cta-band h2 em { font-style: italic; color: var(--or); }
  .cta-band p { color: var(--gris); font-size: 16px; max-width: 520px; margin: 0 auto 36px; font-weight: 300; }

  /* ============ FOOTER ============ */
  footer.site { background: var(--noir-2); padding: 80px 0 36px; border-top: 1px solid rgba(201,169,106,.1); }
  .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .foot-brand .logo { margin-bottom: 22px; }
  .foot-brand p { color: var(--gris); font-size: 14px; max-width: 320px; font-weight: 300; }
  .foot-col h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--or); margin-bottom: 20px; }
  .foot-col ul { list-style: none; }
  .foot-col ul li { margin-bottom: 12px; }
  .foot-col ul a { font-size: 14px; color: var(--gris); transition: color .3s; }
  .foot-col ul a:hover { color: var(--ivoire); }
  .legal-age {
    margin: 30px 0 24px; padding: 14px 20px; border: 1px solid rgba(201,169,106,.25); border-radius: 3px;
    font-size: 12px; color: var(--gris); text-align: center; letter-spacing: .3px;
  }
  .legal-age strong { color: var(--or); }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(245,241,232,.06); font-size: 12.5px; color: var(--gris); }
  .foot-bottom .addr { display: flex; align-items: center; gap: 8px; }
  .foot-bottom .addr svg { width: 14px; height: 14px; stroke: var(--or); fill: none; stroke-width: 1.5; }

  #toTop {
    position: fixed; bottom: 28px; right: 28px; z-index: 90;
    width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    background: var(--or); color: var(--noir); border: none;
    display: grid; place-items: center; font-size: 20px;
    opacity: 0; pointer-events: none; transform: translateY(20px); transition: all .3s;
    box-shadow: 0 10px 30px -10px rgba(201,169,106,.6);
  }
  #toTop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

  /* ============ MODAL VIDEO ============ */
  .video-modal {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(5,5,6,.92); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; pointer-events: none; transition: opacity .35s ease;
  }
  .video-modal.open { opacity: 1; pointer-events: auto; }
  .video-modal .modal-inner {
    position: relative; width: 100%; max-width: 960px; aspect-ratio: 16/9;
    border: 1px solid rgba(201,169,106,.3); border-radius: 6px; overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,.9);
    transform: scale(.94); transition: transform .35s ease;
  }
  .video-modal.open .modal-inner { transform: scale(1); }
  .video-modal video { width: 100%; height: 100%; object-fit: cover; background: var(--noir); display: block; }
  .video-modal .close-btn {
    position: absolute; top: -48px; right: 0;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    background: transparent; border: 1px solid rgba(201,169,106,.4); color: var(--or);
    font-size: 22px; display: grid; place-items: center; transition: all .3s;
  }
  .video-modal .close-btn:hover { background: var(--or); color: var(--noir); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 960px) {
    nav.primary, header.site .btn-gold { display: none; }
    .burger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-card { max-width: 380px; margin: 0 auto; }
    .activities-grid, .vid-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
    #process .steps { grid-template-columns: 1fr 1fr; gap: 40px 0; }
    #process .steps::before { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 620px) {
    section { padding: 80px 0; }
    .container { padding: 0 20px; }
    .activities-grid, .vid-grid, .testi-grid { grid-template-columns: 1fr; }
    #process .steps { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .foot-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }
    .marquee-track span { font-size: 18px; }
  }

  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .marquee-track, .scroll-ind::after { animation: none; }
  }

/* Selecteur de langue */
.lang-switch { display: flex; align-items: center; gap: 8px; margin-right: 22px; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.lang-switch a { color: var(--gris); padding: 4px 6px; transition: color .3s; display: inline-flex; align-items: center; gap: 5px; }
.lang-switch a.active { font-weight: 800; }
.lang-switch a:hover { color: var(--or-clair); }
.lang-switch a.active { color: var(--or); border-bottom: 2px solid var(--or); }
.lang-switch .sep { color: var(--gris-2); }
@media (max-width: 960px) { .lang-switch { margin-right: 16px; } }
