﻿  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/lato-regular.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/lato-bold.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/playfairdisplay-bold.woff2') format('woff2');
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  img, video { max-width: 100%; height: auto; }
  iframe { max-width: 100%; }

  :root {
    --green:      #5A8C3A;
    --green-light:#8BBF5A;
    --green-pale: #EEF5E6;
    --blue:       #2E6FA3;
    --blue-light: #6AAFD6;
    --blue-pale:  #E5F2FA;
    --yellow:     #D4A017;
    --yellow-light:#F0C842;
    --yellow-pale: #FDF6DE;
    --cream:      #F9F7F0;
    --white:      #FFFFFF;
    --bark:       #3D2F1A;
    --bark-mid:   #7A6347;
    --bark-light: #C4A97A;
    --border-g:   rgba(90,140,58,0.2);
    --border-b:   rgba(46,111,163,0.2);
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--bark); min-height: 100vh; overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 70px;
    background: var(--white);
    border-bottom: 3px solid var(--green);
    box-shadow: 0 2px 12px rgba(61,47,26,0.08);
  }
  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; cursor: pointer; }
  .nav-logo-mark {
    width: 25px !important; height: 25px !important; border-radius: 50%;
    background: var(--green); display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 14px; color: #fff;
    border: 3px solid var(--yellow); flex-shrink: 0; overflow: hidden;
  }
  .nav-logo-mark img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
  img.nav-logo-mark { width: 25px !important; height: 25px !important; object-fit: cover; }
  .nav-logo > img { width: 40px !important; height: auto !important; }
  .nav-logo-text { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--green); line-height: 1.2; }
  .nav-logo-sub  { font-size: 11px; letter-spacing: .06em; color: var(--bark-mid); }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    font-size: 14px; font-weight: 700; color: var(--bark-mid); text-decoration: none; cursor: pointer;
    padding-bottom: 3px; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
  }
  .nav-links a:hover { color: var(--green); border-color: var(--green-light); }
  .nav-links a.active { color: var(--green); border-color: var(--green); }
  .nav-cta {
    background: var(--yellow); color: var(--bark);
    font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
    border: none; padding: 10px 22px; border-radius: 24px; cursor: pointer;
    box-shadow: 0 2px 8px rgba(212,160,23,.3); transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--yellow-light); transform: translateY(-1px); }

  /* PAGES */
  .page { display: none; padding-top: 70px; min-height: 100vh; }
  .page.active { display: block; animation: fadeIn .35s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  /* HERO */
  .hero {
    position: relative; background: var(--green-pale);
    padding: 80px 8% 0; overflow: hidden;
    min-height: calc(100vh - 70px); display: flex; align-items: center;
  }
  .hero-sun {
    position: absolute; top: 50px; right: 7%;
    width: 160px; height: 160px;
    opacity: .75;
  }
  .hero-sun-inner { display: none; }
  .hero-content { position: relative; z-index: 1; max-width: 640px; padding-bottom: 200px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 2px solid var(--green-light);
    border-radius: 20px; padding: 6px 16px;
    font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--green); margin-bottom: 28px;
  }
  .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 68px); font-weight: 700; line-height: 1.12;
    color: var(--bark); margin-bottom: 24px;
  }
  .hero h1 em { color: var(--green); font-style: normal; }
  .hero-desc { font-size: 18px; line-height: 1.75; color: var(--bark-mid); max-width: 500px; margin-bottom: 40px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-green {
    font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700;
    background: var(--green); color: #fff; border: none;
    padding: 14px 32px; border-radius: 28px; cursor: pointer;
    box-shadow: 0 4px 14px rgba(90,140,58,.35); transition: background .2s, transform .15s;
  }
  .btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
  .btn-white {
    font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700;
    background: var(--white); color: var(--green);
    border: 2px solid var(--green-light); padding: 14px 32px; border-radius: 28px; cursor: pointer;
    transition: background .2s, border-color .2s;
  }
  .btn-white:hover { background: var(--green-pale); border-color: var(--green); }
  .hero-hills { position: absolute; bottom: 0; left: 0; right: 0; height: 220px; }
  .hero-stats {
    position: absolute; bottom: 44px; left: 8%; z-index: 2;
    display: flex; gap: 14px; flex-wrap: wrap;
  }
  .stat-box {
    background: var(--white); border: 2px solid var(--border-g);
    border-radius: 16px; padding: 14px 22px; text-align: center;
    box-shadow: 0 4px 14px rgba(90,140,58,.1);
  }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--green); line-height: 1; }
  .stat-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bark-mid); margin-top: 4px; }

  /* SECTIONS COMMUNES */
  .section      { padding: 80px 8%; }
  .bg-white     { background: var(--white); }
  .bg-green     { background: var(--green-pale); }
  .bg-blue      { background: var(--blue-pale); }
  .bg-yellow    { background: var(--yellow-pale); }

  .pill {
    display: inline-flex; align-items: center;
    border-radius: 20px; padding: 5px 14px;
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .pill-g { background: var(--green); color: #fff; }
  .pill-b { background: var(--blue);  color: #fff; }
  .pill-y { background: var(--yellow); color: var(--bark); }

  .stitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px); font-weight: 700;
    color: var(--bark); line-height: 1.15; margin-bottom: 18px;
  }
  .stitle .g { color: var(--green); }
  .stitle .b { color: var(--blue); }
  .stitle .y { color: var(--yellow); }
  .stitle a { text-decoration: none; }
  .sintro { font-size: 17px; line-height: 1.75; color: var(--bark-mid); max-width: 560px; margin-bottom: 48px; }

  /* CLUBS */
  .clubs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
  .club-card {
    background: var(--white); border: 2px solid var(--border-g); border-radius: 16px;
    padding: 26px 20px; transition: border-color .25s, transform .25s, box-shadow .25s;
    text-decoration: none; display: block; text-align: center;
  }
  .club-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 8px 22px rgba(90,140,58,.15); }
  .club-icon {
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .club-icon img { width: 100%; height: 100%; object-fit: contain; }
  .club-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--bark); margin-bottom: 5px; }
  .club-meta { font-size: 12px; color: var(--bark-mid); }

  /* NEWS */
  .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
  .news-card {
    background: var(--white); border: 2px solid var(--border-b); border-radius: 20px; overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s; cursor: pointer;
  }
  .news-card:hover { border-color: var(--blue-light); transform: translateY(-4px); box-shadow: 0 8px 22px rgba(46,111,163,.12); }
  .news-img { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
  .news-img.g { background: var(--green-pale); }
  .news-img.b { background: var(--blue-pale); }
  .news-img.y { background: var(--yellow-pale); }
  .news-body { padding: 20px; }
  .news-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 9px; }
  .news-tag.g { color: var(--green); }
  .news-tag.b { color: var(--blue); }
  .news-tag.y { color: var(--yellow); }
  .news-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--bark); margin-bottom: 9px; line-height: 1.2; }
  #page-infos .news-title { font-size: 22px; margin-bottom: 12px; }
  #page-infos .news-img { height: 65px; }
  .news-excerpt { font-size: 13px; color: var(--bark-mid); line-height: 1.65; }
  .news-date { font-size: 11px; color: var(--bark-light); margin-top: 13px; }

  /* ABOUT */
  .about-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: center; }
  .about-frame {
    background: var(--white); border: 3px solid var(--green-light);
    border-radius: 24px; padding: 40px;
    display: flex; align-items: center; justify-content: center; position: relative;
  }
  .about-frame svg { width: 100%; max-width: 270px; }
  .about-sticker {
    position: absolute; bottom: -18px; right: -18px;
    background: var(--yellow); border: 3px solid var(--white);
    border-radius: 50%; width: 88px; height: 88px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; box-shadow: 0 4px 14px rgba(212,160,23,.3);
  }
  .about-sticker .big { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--bark); line-height: 1; }
  .about-sticker .sm  { font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--bark-mid); }
  .values { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
  .val { display: flex; gap: 14px; align-items: flex-start; }
  .val-dot { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 13px; }
  .val-dot.g { background: var(--green-pale); color: var(--green); border: 2px solid var(--green-light); }
  .val-dot.b { background: var(--blue-pale);  color: var(--blue);  border: 2px solid var(--blue-light); }
  .val-dot.y { background: var(--yellow-pale);color: var(--yellow);border: 2px solid var(--yellow-light); }
  .val h4 { font-size: 15px; font-weight: 700; color: var(--bark); margin-bottom: 3px; }
  .val p  { font-size: 13px; color: var(--bark-mid); line-height: 1.6; }

  /* SECTIONS PAGE */
  .sections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
  .sc-card {
    background: var(--white); border: 2px solid var(--border-g);
    border-radius: 20px; padding: 30px 26px; position: relative; overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
  }
  .sc-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 8px 22px rgba(90,140,58,.14); }
  .sc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--green-light)); }
  .sc-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--green-pale); line-height: 1; margin-bottom: 6px; }
  .sc-logo {
    display: block; height: 64px; max-width: 100%; width: auto;
    object-fit: contain; margin: 4px 0 18px;
  }
  .sc-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--bark); margin-bottom: 10px; }
  .sc-desc { font-size: 13px; color: var(--bark-mid); line-height: 1.65; }

  /* CONTACT */
  .contact-layout { display: flex; justify-content: center; }
  .contact-box { background: var(--green-pale); border: 2px solid var(--green-light); border-radius: 20px; padding: 34px; max-width: 480px; width: 100%; }
  .c-item { margin-bottom: 26px; }
  .c-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
  .c-value { font-size: 15px; line-height: 1.5; color: var(--bark); }

  /* RIBBON */
  .ribbon {
    background: var(--blue); color: #fff; padding: 14px 8%;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .ribbon-text { font-size: 15px; font-weight: 700; }
  .ribbon-btn {
    background: var(--white); color: var(--blue);
    font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700;
    border: none; padding: 8px 20px; border-radius: 20px; cursor: pointer; transition: opacity .2s;
  }
  .ribbon-btn:hover { opacity: .85; }

  /* FOOTER */
  footer { background: var(--green); color: rgba(255,255,255,.9); padding: 54px 8% 34px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr; gap: 52px; margin-bottom: 38px; }
  .footer-logo-area { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .footer-logo-mark {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--yellow); display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--bark);
    border: 3px solid rgba(255,255,255,.25);
  }
  .footer-logo-text { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; line-height: 1.2; }
  .footer-logo-sub  { font-size: 11px; opacity: .7; }
  .footer-desc { font-size: 14px; line-height: 1.7; opacity: .75; max-width: 300px; }
  .footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; opacity: .6; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col li a, .footer-col li span { font-size: 14px; opacity: .8; text-decoration: none; cursor: pointer; transition: opacity .2s; }
  .footer-col li a:hover { opacity: 1; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .footer-copy { font-size: 13px; opacity: .55; }
  .footer-fst { background: var(--yellow); color: var(--bark); font-size: 12px; font-weight: 700; letter-spacing: .08em; border-radius: 12px; padding: 5px 14px; }

  /* CARTES INFOS (liens) */
  a.news-card { display: block; text-decoration: none; color: inherit; }
  a.sc-card { display: block; text-decoration: none; color: inherit; }

  /* COMITÉ — sous-page */
  .committee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
  .committee-card {
    background: var(--white); border: 2px solid var(--border-g); border-radius: 16px;
    padding: 24px 18px; text-align: center;
    transition: border-color .25s, transform .25s, box-shadow .25s;
  }
  .committee-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(90,140,58,.12); }
  .committee-photo {
    width: 140px; height: 140px; margin: 0 auto 16px;
    border-radius: 50%; background: var(--green-pale); border: 3px solid var(--green-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700;
    overflow: hidden;
  }
  .committee-photo img { width: 100%; height: 100%; object-fit: cover; }
  .committee-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--bark); margin-bottom: 6px; }
  .committee-role { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); line-height: 1.4; }
  .committee-email { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--blue); text-decoration: none; word-break: break-word; }
  .committee-email:hover { text-decoration: underline; }

  /* GLAÇONS — sous-page */
  .glacons-photo {
    width: 100%; max-width: 760px;
    margin: 0 auto 36px;
    background: var(--blue-pale); border: 3px solid var(--blue-light); border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
    overflow: hidden;
  }
  .glacons-photo img { width: 100%; height: auto; display: block; }
  .glacons-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .glacons-fixed img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
  .slider-empty { display: flex; align-items: center; justify-content: center; color: var(--bark-mid); font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; }
  /* Galerie Glaçons — thème bleu (glace) + cadre bleu autour des bulles */
  .glacons-galerie .slider-titre { color: var(--blue); }
  .glacons-galerie .slider-wrap { background: var(--blue-pale); border: 3px solid var(--blue-light); box-shadow: 0 6px 20px rgba(46,111,163,.14); }
  /* Boutons Glaçons en bleu */
  .glacons-actions .btn-green { background: var(--blue); }
  .glacons-actions .btn-green:hover { background: var(--blue-light); }
  .glacons-actions .btn-white { color: var(--blue); border-color: var(--blue-light); }
  .glacons-actions .btn-white:hover { background: var(--blue-pale); border-color: var(--blue); }
  /* Réduit l'espace sous les boutons avant la galerie */
  #page-glacons .bg-white { padding-bottom: 18px; }

  /* Hamburger — caché sur desktop */
  .nav-hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 4px; color: var(--bark);
    font-size: 26px; line-height: 1;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
  }

  /* Typographie fluide */
  body { font-size: clamp(0.95rem, 2.5vw, 1.05rem); }
  h1   { font-size: clamp(1.6rem, 5vw, 2.8rem); }
  h2   { font-size: clamp(1.3rem, 4vw, 2rem); }
  h3   { font-size: clamp(1.1rem, 3vw, 1.5rem); }

  @media (max-width: 768px) {
    /* Hamburger */
    .nav-hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex !important;
      flex-direction: column;
      position: absolute; top: 70px; left: 0; right: 0;
      background: var(--white); padding: 8px 20px 16px;
      box-shadow: 0 6px 18px rgba(0,0,0,.12);
      gap: 0; list-style: none; z-index: 99;
    }
    .nav-links.open li a {
      display: block; padding: 13px 0;
      font-size: 16px; border-bottom: 1px solid var(--green-pale);
    }
    .nav-links.open li:last-child a { border-bottom: none; }

    /* Grilles → 1 colonne */
    .about-layout, .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .news-grid { grid-template-columns: 1fr; }
    .clubs-grid { grid-template-columns: repeat(2, 1fr); }
    .sections-grid { grid-template-columns: 1fr; }

    /* Hero */
    .hero-content { padding-bottom: 120px; }
    .hero-stats { flex-wrap: wrap; gap: 10px; bottom: 16px; left: 4%; right: 4%; }
    .hero-sun { display: none; }
    .hero-desc { max-width: 100%; font-size: 16px; }

    /* Section padding */
    .section { padding: 48px 20px; }

    /* Boutons hero en pleine largeur */
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-green,
    .hero-actions .btn-white { width: 100%; justify-content: center; }

    /* Boutons glaçons en pleine largeur */
    .glacons-actions { flex-direction: column; align-items: stretch; }
    .glacons-actions .btn-green,
    .glacons-actions .btn-white { width: 100%; justify-content: center; }

    /* Boutons de téléchargement du programme empilés et espacés */
    .download-cta { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
    .download-cta .btn-green { width: 100%; justify-content: center; }
  }

  /* UTILITAIRES — extraits des styles inline */
  .nav-logo-texts { line-height: 1.2; }
  .hero-logo-wrap { margin-bottom: 28px; }
  .stitle-logo { height: 64px; vertical-align: middle; margin-right: 4px; }
  .text-block { max-width: 820px; }
  .action-group { display: flex; gap: 14px; flex-wrap: wrap; }
  .pdf-frame {
    background: var(--white);
    border: 3px solid var(--green-light);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 6px 20px rgba(90,140,58,.12);
    overflow: hidden;
  }
  .download-cta { text-align: center; margin-top: 32px; }
  a.btn-green, a.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .btn-back { margin-bottom: 32px; font-size: 14px; padding: 10px 22px; }
  .role-note { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--bark-mid); }
  .committee-badge { display: inline-block; margin-top: 7px; padding: 2px 9px; background: var(--green); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 20px; }
  .contact-email { color: var(--green); text-decoration: none; }
  .c-item:last-child { margin-bottom: 0; }
  /* CLASSES EXTRAITES DES STYLES INLINE */

  /* Logos */
  .logo-nav  { width: 60px; height: auto; border-radius: 0; flex-shrink: 0; }
  .logo-hero { width: 110px; height: auto; border-radius: 0; }

  /* Typographie */
  .texte-corps { font-size: 16px; line-height: 1.8; color: var(--bark-mid); margin-bottom: 18px; }
  .texte-corps-bas { margin-bottom: 32px; }
  .lien-bleu-gras { color: var(--blue); font-weight: 700; cursor: pointer; text-decoration: underline; }

  /* Carte Google Maps */
  .carte-encadree { border-radius: 20px; overflow: hidden; border: 2px solid var(--green-light); box-shadow: 0 6px 20px rgba(90,140,58,.12); }
  .action-centree { text-align: center; margin-top: 22px; }
  .iframe-propre  { border: 0; display: block; }

  /* Galerie — sliders */
  .section-galerie { padding-top: 40px; padding-bottom: 40px; }
  .stitle-galerie  { font-size: clamp(20px, 3vw, 28px); margin-bottom: 28px; }
  .galerie-dual    { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1040px; margin: 0 auto; }
  .slider-block    { display: flex; flex-direction: column; }
  .slider-titre    { font-family: 'Playfair Display', serif; font-size: clamp(13px, 1.8vw, 17px); color: var(--bark); margin: 0 0 10px; text-align: center; }
  .slider-wrap     { position: relative; border-radius: 12px; overflow: hidden; background: var(--green-light); aspect-ratio: 4 / 3; }
  .slider-track    { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); will-change: transform; }
  .slider-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; user-select: none; }
  .slider-btn      { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.78); border: none; border-radius: 50%; width: 38px; height: 38px; font-size: 24px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--bark); transition: background .2s; z-index: 2; }
  .slider-btn:hover { background: rgba(255,255,255,.97); }
  .slider-prev     { left: 10px; }
  .slider-next     { right: 10px; }
  .slider-dots     { position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
  .slider-dot      { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; border: none; padding: 0; transition: background .25s; }
  .slider-dot.active { background: #fff; }
  @media (max-width: 640px) { .galerie-dual { grid-template-columns: 1fr; } }

  /* Contact */
  .c-item-dernier { margin-bottom: 0; }
  .c-valeur-gras  { font-weight: 700; }
  .contact-emplacement { display: grid; grid-template-columns: minmax(300px, 440px) 1fr; gap: 28px; align-items: stretch; }
  .contact-emplacement .contact-box { max-width: none; display: flex; flex-direction: column; justify-content: center; }
  .contact-emplacement .carte-encadree { min-height: 360px; }
  .contact-emplacement .iframe-propre { height: 100%; min-height: 360px; }
  @media (max-width: 820px) {
    .contact-emplacement { grid-template-columns: 1fr; }
    .contact-emplacement .carte-encadree { min-height: 320px; }
  }

  /* Footer compact */
  .footer-compact { padding: 18px 8%; }
  .footer-centree { border-top: none; padding-top: 0; justify-content: center; }

  /* === ANIMATIONS === */

  /* 1. Apparition au scroll */
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease-out, transform .6s ease-out;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* 2. Thématique tir — impact unique sur la cible du hero */
  .hero-sun circle:last-of-type {
    transform-origin: 80px 80px;
    animation: impact 1.6s cubic-bezier(.22, 1, .36, 1);
  }
  @keyframes impact {
    0%   { opacity: 0;   transform: scale(4); }
    35%  { opacity: 1;   transform: scale(.85); }
    55%  { transform: scale(1.15); }
    75%  { transform: scale(.95); }
    100% { opacity: 1;   transform: scale(1); }
  }

  /* 3. Compteurs animés (logique de comptage en JS, voir script.js) — aucun CSS requis */

  /* 4. Accessibilité : on désactive tout effet non essentiel */
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-sun circle:last-of-type { animation: none; }
  }