    /* ===== VARIABLES ===== */
    :root {
      --navy:    #1a2744;
      --gold:    #c9a84c;
      --gold-lt: #e8c96a;
      --cream:   #f5f0e8;
      --white:   #ffffff;
      --dark:    #111827;
      --gray:    #6b7280;
      --light:   #f9f7f3;
      --border:  #e2d9c8;
      --shadow:  0 4px 24px rgba(26,39,68,.12);
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 400;
      color: var(--dark);
      background: var(--light);
      line-height: 1.7;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== UTILITAIRES ===== */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      color: var(--navy);
      margin-bottom: 12px;
    }
    .section-sub {
      color: var(--gray);
      font-size: 1.05rem;
      margin-bottom: 48px;
    }
    .divider {
      width: 56px; height: 3px;
      background: var(--gold);
      margin: 16px 0 20px;
    }
    .btn {
      display: inline-block;
      padding: 13px 32px;
      border-radius: 4px;
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      transition: all .25s;
      border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
    }
    .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .btn-outline {
      border-color: var(--white);
      color: var(--white);
    }
    .btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
    .btn-navy {
      background: var(--navy);
      color: var(--white);
    }
    .btn-navy:hover { background: #24357a; transform: translateY(-2px); }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(26,39,68,.97);
      backdrop-filter: blur(8px);
      border-bottom: 2px solid var(--gold);
      transition: box-shadow .3s;
    }
    #navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.3); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-brand img {
    margin-top: 36px;
    }
    .nav-emblem {
      width: 42px; height: 42px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .nav-brand-text {
      display: flex; flex-direction: column; line-height: 1.2;
    }
    .nav-brand-text strong {
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
    }
    .nav-brand-text span {
      color: var(--gold);
      font-size: .72rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex; gap: 8px; list-style: none; align-items: center;
    }
    .nav-links a {
      color: rgba(255,255,255,.8);
      font-size: .9rem;
      padding: 6px 12px;
      border-radius: 4px;
      transition: all .2s;
    }
    .nav-links a:hover { color: var(--gold); background: rgba(255,255,255,.06); }
    .nav-links .btn-gold {
      background: var(--gold); color: var(--navy);
      font-weight: 600; padding: 7px 18px;
    }
    .nav-links .btn-gold:hover { background: var(--gold-lt); }

    /* Burger */
    .burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px;
    }
    .burger span {
      width: 26px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all .3s;
    }
    .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      background: var(--navy);
      border-top: 1px solid rgba(201,168,76,.3);
      padding: 16px 24px 24px;
    }
    .mobile-menu a {
      display: block; color: rgba(255,255,255,.85);
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-size: .95rem;
    }
    .mobile-menu a:last-child { border-bottom: none; color: var(--gold); font-weight: 600; }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(26,39,68,.92) 0%, rgba(10,18,40,.85) 60%, rgba(26,39,68,.75) 100%),
        url('https://lavoixdugendarme.fr/wp-content/uploads/2024/03/DSC_0129-scaled.jpeg') center/cover no-repeat;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 680px;
      padding-top: 80px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,.15);
      border: 1px solid rgba(201,168,76,.4);
      border-radius: 30px;
      padding: 6px 16px;
      color: var(--gold);
      font-size: .8rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 3.8rem);
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero-title em {
      color: var(--gold);
      font-style: normal;
    }
    .hero-desc {
      color: rgba(255,255,255,.75);
      font-size: 1.1rem;
      margin-bottom: 40px;
      max-width: 520px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,.5);
      font-size: .8rem;
      letter-spacing: .1em;
      text-align: center;
      animation: bounce 2s infinite;
    }
    .hero-scroll::after {
      content: '▼';
      display: block; font-size: 1.2rem; margin-top: 4px;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* ===== STATS ===== */
    #stats {
      background: var(--navy);
      padding: 40px 0;
      border-bottom: 3px solid var(--gold);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 24px 16px;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: 6px; }

    /* ===== À PROPOS ===== */
    #about { padding: 100px 0; background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      border-radius: 4px;
      height: 440px;
      width: 100%;
      object-fit: cover;
      box-shadow: var(--shadow);
    }
    .about-img-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--gold);
      color: var(--navy);
      padding: 20px 24px;
      border-radius: 4px;
      text-align: center;
      font-weight: 700;
      box-shadow: var(--shadow);
    }
    .about-img-badge .year { font-family: 'Playfair Display', serif; font-size: 2rem; display: block; }
    .about-img-badge .since { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
    .about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
    .value-item {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .value-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--cream);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--gold);
    }
    .value-item h4 { font-weight: 600; margin-bottom: 2px; color: var(--navy); }
    .value-item p  { font-size: .9rem; color: var(--gray); }

    /* ===== ACTUALITÉS ===== */
    #news { padding: 100px 0; background: var(--light); }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }
    .news-card {
      background: var(--white);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .25s, box-shadow .25s;
    }
    .news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,39,68,.16); }
    .news-img {
      height: 200px; width: 100%;
      object-fit: cover;
    }
    .news-body { padding: 24px; }
    .news-tag {
      display: inline-block;
      background: var(--cream);
      color: var(--navy);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      margin-bottom: 12px;
    }
    .news-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .news-body p { font-size: .9rem; color: var(--gray); margin-bottom: 16px; }
    .news-meta { font-size: .8rem; color: var(--gold); font-weight: 600; }

    /* ===== GALERIE ===== */
    #gallery { padding: 100px 0; background: var(--navy); }
    #gallery .section-title { color: var(--white); }
    #gallery .section-sub  { color: rgba(255,255,255,.6); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 200px 200px;
      gap: 12px;
    }
    .gallery-item {
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
      position: relative;
    }
    .gallery-item:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,39,68,.7) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
      display: flex; align-items: flex-end;
      padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span { color: var(--gold); font-size: .85rem; font-weight: 600; }

    /* Lightbox */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,.92);
      align-items: center; justify-content: center;
    }
    #lightbox.active { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
    #lightbox-close {
      position: absolute; top: 24px; right: 32px;
      color: var(--white); font-size: 2rem;
      cursor: pointer; opacity: .7;
      transition: opacity .2s;
    }
    #lightbox-close:hover { opacity: 1; }

    /* ===== ADHÉSION ===== */
    #join { padding: 100px 0; background: var(--white); }
    .join-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      margin-bottom: 56px;
    }
    .join-card {
      border: 2px solid var(--border);
      border-radius: 6px;
      padding: 36px 28px;
      text-align: center;
      transition: border-color .2s, transform .2s;
      position: relative;
    }
    .join-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .join-card.featured {
      border-color: var(--gold);
      background: var(--navy);
    }
    .join-card.featured h3,
    .join-card.featured p,
    .join-card.featured li { color: var(--white) !important; }
    .featured-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--navy);
      font-size: .72rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
    }
    .join-icon { font-size: 2.4rem; margin-bottom: 16px; }
    .join-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: var(--navy); margin-bottom: 8px;
    }
    .join-price {
      font-size: 2rem; font-weight: 700;
      color: var(--gold); margin: 12px 0;
    }
    .join-price small { font-size: 1rem; color: var(--gray); font-weight: 400; }
    .join-features {
      list-style: none; margin: 20px 0 28px;
      text-align: left;
    }
    .join-features li {
      padding: 6px 0;
      color: var(--gray);
      font-size: .9rem;
    }
    .join-features li::before { content: '✓  '; color: var(--gold); font-weight: 700; }

    /* ===== CONTACT ===== */
    #contact { padding: 100px 0; background: var(--cream); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      align-items: start;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: var(--navy); margin-bottom: 24px;
    }
    .contact-detail {
      display: flex; gap: 14px; align-items: flex-start;
      margin-bottom: 20px;
    }
    .contact-detail .icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--navy); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--gold);
    }
    .contact-detail h4 { font-weight: 600; color: var(--navy); font-size: .9rem; }
    .contact-detail p  { color: var(--gray); font-size: .9rem; }

    /* Formulaire */
    .form-group { margin-bottom: 20px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    label {
      display: block; font-size: .85rem; font-weight: 600;
      color: var(--navy); margin-bottom: 6px;
    }
    input, textarea, select {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--border);
      border-radius: 4px;
      font-family: inherit;
      font-size: .95rem;
      background: var(--white);
      color: var(--dark);
      transition: border-color .2s;
      outline: none;
    }
    input:focus, textarea:focus, select:focus { border-color: var(--gold); }
    textarea { resize: vertical; min-height: 130px; }
    .form-msg {
      display: none;
      margin-top: 12px;
      padding: 12px 16px;
      border-radius: 4px;
      font-size: .9rem;
    }
    .form-msg.success { background: #d1fae5; color: #065f46; }
    .form-msg.error   { background: #fee2e2; color: #991b1b; }

    /* ===== FOOTER ===== */
    footer {
      background: #0d1629;
      color: rgba(255,255,255,.6);
      padding: 56px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns:1.3fr 1fr 1fr 1.3fr;
      gap: 45px;

    }
    .footer-brand p { font-size: .9rem; margin-top: 16px; line-height: 1.7; }
    .footer-col h4 {
      color: var(--gold);
      font-size: .8rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block; color: rgba(255,255,255,.6);
      font-size: .9rem; margin-bottom: 8px;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .82rem; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom span { color: var(--gold); }
    
    .btn-facebook-footer{

    display:inline-block;
    background:#c9a84c;          /* doré AORRC */
    color:#1a2744;               /* bleu marine */
    padding:12px 22px;
    border-radius:4px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;

}

.btn-facebook-footer:hover{

    background:#e0be63;
    color:#1a2744;

}

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .about-img-wrap { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
      .gallery-item:first-child { grid-column: span 2; }
    }
    @media (max-width: 680px) {
      .nav-links { display: none; }
      .burger { display: flex; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }

    /* ===== ANIMATIONS ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up:nth-child(2) { transition-delay: .1s; }
    .fade-up:nth-child(3) { transition-delay: .2s; }
    .fade-up:nth-child(4) { transition-delay: .3s; }

    /* ===== BACK TO TOP ===== */
    #back-top {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--gold);
      color: var(--navy);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
      opacity: 0; pointer-events: none;
      transition: opacity .3s, transform .3s;
      z-index: 900;
    }
    #back-top.visible { opacity: 1; pointer-events: auto; }
    #back-top:hover { transform: translateY(-4px); }
