/*
Theme Name:  Association Lumière
Theme URI:   https://votre-asso.fr
Author:      Association Lumière
Description: Thème WordPress sur mesure pour association loi 1901. Pages statiques, agenda, actualités, galerie photos.
Version:     1.0.0
License:     GNU General Public License v2
Text Domain: lumiere
Tags:        association, one-page, agenda, galerie, blog
*/

/* ===== VARIABLES ===== */
:root {
  --vert: #1e4535;
  --vert-clair: #2d6349;
  --vert-pale: #eef4f0;
  --or: #c8973a;
  --or-clair: #f5e9d0;
  --creme: #faf7f2;
  --texte: #1a2318;
  --texte-doux: #4a5c47;
  --blanc: #ffffff;
  --radius: 4px;
  --ombre: 0 2px 20px rgba(30,69,53,.08);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--creme); color: var(--texte); font-size: 16px; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,247,242,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30,69,53,.1);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--ombre); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.site-branding a {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--vert); text-decoration: none; display: flex; align-items: center; gap: .6rem;
}
.logo-dot { width: 10px; height: 10px; background: var(--or); border-radius: 50%; flex-shrink: 0; }
.main-navigation ul { display: flex; gap: 2rem; list-style: none; }
.main-navigation a {
  text-decoration: none; color: var(--texte-doux); font-size: .9rem; font-weight: 500;
  letter-spacing: .02em; transition: color .2s; position: relative; padding-bottom: 2px;
}
.main-navigation a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--or); transition: width .3s;
}
.main-navigation a:hover { color: var(--vert); }
.main-navigation a:hover::after { width: 100%; }
.nav-cta > a {
  background: var(--vert) !important; color: var(--blanc) !important;
  padding: .5rem 1.25rem; border-radius: var(--radius); transition: background .2s !important;
}
.nav-cta > a:hover { background: var(--vert-clair) !important; }
.nav-cta > a::after { display: none !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.burger span { width: 24px; height: 2px; background: var(--vert); transition: .3s; display: block; }

/* ===== LAYOUT COMMUN ===== */
.section-wrap { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--vert); font-size: .75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--or); }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--texte); line-height: 1.2; margin-bottom: 1.2rem; }
h2 em { color: var(--vert); font-style: italic; }
.section-intro { color: var(--texte-doux); font-size: 1.05rem; max-width: 600px; }
.voir-tout { color: var(--vert); font-size: .9rem; font-weight: 500; text-decoration: none; }
.voir-tout:hover { text-decoration: underline; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--vert);
  display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(200,151,58,.12) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  opacity: .04;
  background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);
  background-size: 20px 20px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,151,58,.2); color: var(--or-clair); border: 1px solid rgba(200,151,58,.3);
  padding: .35rem .9rem; border-radius: 100px; font-size: .8rem; font-weight: 500; margin-bottom: 1.5rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--or); }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15;
  color: var(--blanc); margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--or); font-style: italic; }
.hero-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; font-weight: 300; margin-bottom: 2.5rem; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primaire {
  background: var(--or); color: var(--texte); padding: .8rem 1.8rem;
  border-radius: var(--radius); font-weight: 500; text-decoration: none;
  font-size: .95rem; transition: transform .2s, box-shadow .2s; display: inline-block;
}
.btn-primaire:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,151,58,.4); }
.btn-outline {
  background: transparent; color: var(--blanc); padding: .8rem 1.8rem;
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius);
  font-weight: 500; text-decoration: none; font-size: .95rem;
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.12);
}
.stat-nb { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--or); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }
.hero-visuel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 2.5rem; backdrop-filter: blur(4px);
}
.event-preview-title {
  font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1.5rem;
}
.mini-event {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.mini-event:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.mini-date {
  background: rgba(200,151,58,.2); border: 1px solid rgba(200,151,58,.3);
  border-radius: 8px; padding: .4rem .7rem; text-align: center; flex-shrink: 0; min-width: 48px;
}
.mini-date-jour { font-size: 1.2rem; font-weight: 700; color: var(--or); line-height: 1; display: block; }
.mini-date-mois { font-size: .65rem; color: var(--or); text-transform: uppercase; letter-spacing: .05em; display: block; }
.mini-event-titre { font-size: .9rem; font-weight: 500; color: var(--blanc); margin-bottom: .2rem; }
.mini-event-lieu { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ===== BANDEAU ===== */
.bandeau {
  background: var(--or-clair); border-top: 1px solid rgba(200,151,58,.3);
  border-bottom: 1px solid rgba(200,151,58,.3); padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.bandeau p { font-size: .85rem; color: var(--texte); }
.bandeau strong { color: var(--vert); }
.bandeau a { color: var(--vert); font-weight: 500; font-size: .85rem; }

/* ===== ASSOCIATION ===== */
.section-blanc { background: var(--blanc); }
.section-creme { background: var(--creme); }
.asso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.asso-img {
  background: var(--vert-pale); border-radius: 12px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.asso-img img { width: 100%; height: 100%; object-fit: cover; }
.asso-img-placeholder {
  width: 80%; height: 80%; background: linear-gradient(135deg,var(--vert) 0%,var(--vert-clair) 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(255,255,255,.15); font-style: italic;
}
.asso-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--or); color: var(--texte); padding: .6rem 1rem;
  border-radius: var(--radius); font-size: .85rem; font-weight: 500;
}
.valeurs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.valeur-item {
  display: flex; gap: .75rem; align-items: flex-start;
  background: var(--vert-pale); border-radius: 8px; padding: 1rem 1.2rem;
}
.valeur-icon {
  width: 32px; height: 32px; background: var(--vert); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.valeur-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.valeur-titre { font-weight: 500; font-size: .9rem; color: var(--texte); margin-bottom: .2rem; }
.valeur-desc { font-size: .8rem; color: var(--texte-doux); }
.team { margin-top: 4rem; }
.team h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 2rem; color: var(--texte); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.member-card {
  background: var(--creme); border-radius: 10px; padding: 1.5rem; text-align: center;
  border: 1px solid rgba(30,69,53,.07);
}
.member-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 1rem; overflow: hidden;
}
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-avatar-initials {
  width: 64px; height: 64px; border-radius: 50%; background: var(--vert);
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: rgba(255,255,255,.8); font-weight: 700;
}
.member-nom { font-weight: 500; font-size: .95rem; color: var(--texte); }
.member-role { font-size: .8rem; color: var(--vert); margin-top: .2rem; }

/* ===== AGENDA ===== */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.event-card {
  background: var(--blanc); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(30,69,53,.08); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; text-decoration: none;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(30,69,53,.12); }
.event-card-top {
  background: var(--vert); padding: 1.5rem 1.5rem 1rem;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.event-date-badge {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: .5rem .8rem; text-align: center;
}
.event-date-badge .jour { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--blanc); line-height: 1; display: block; }
.event-date-badge .mois { font-size: .7rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; display: block; }
.event-cat {
  font-size: .7rem; color: var(--or); background: rgba(200,151,58,.2);
  border: 1px solid rgba(200,151,58,.3); padding: .25rem .65rem; border-radius: 100px;
  font-weight: 500; text-transform: uppercase; letter-spacing: .04em; align-self: flex-start;
}
.event-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.event-titre { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--texte); margin-bottom: .5rem; }
.event-desc { font-size: .85rem; color: var(--texte-doux); margin-bottom: 1rem; flex: 1; }
.event-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--texte-doux); flex-wrap: wrap; }
.event-meta span { display: flex; align-items: center; gap: .3rem; }
.event-meta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ===== ACTUALITÉS ===== */
.articles-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-top: 3rem; }
.article-featured { background: var(--creme); border-radius: 12px; overflow: hidden; border: 1px solid rgba(30,69,53,.08); }
.article-featured a { text-decoration: none; }
.article-img { background: var(--vert); height: 220px; position: relative; overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,transparent 40%,rgba(0,0,0,.5) 100%);
}
.article-img-cat {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 1;
  background: var(--or); color: var(--texte);
  font-size: .7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .05em; padding: .3rem .7rem; border-radius: 100px;
}
.article-body { padding: 1.5rem; }
.article-date { font-size: .78rem; color: var(--texte-doux); margin-bottom: .6rem; }
.article-titre { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--texte); margin-bottom: .6rem; line-height: 1.35; }
.article-excerpt { font-size: .88rem; color: var(--texte-doux); margin-bottom: 1rem; }
.lire-plus { color: var(--vert); font-size: .85rem; font-weight: 500; text-decoration: none; }
.lire-plus:hover { text-decoration: underline; }
.articles-side { display: flex; flex-direction: column; gap: 1rem; }
.article-mini {
  background: var(--creme); border-radius: 10px; padding: 1.2rem;
  border: 1px solid rgba(30,69,53,.08); display: flex; gap: 1rem; align-items: flex-start;
  text-decoration: none; transition: box-shadow .2s;
}
.article-mini:hover { box-shadow: var(--ombre); }
.article-mini-num {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  color: rgba(30,69,53,.12); line-height: 1; flex-shrink: 0; width: 2rem;
}
.article-mini-titre { font-weight: 500; font-size: .9rem; color: var(--texte); margin-bottom: .3rem; line-height: 1.4; }
.article-mini-date { font-size: .75rem; color: var(--texte-doux); }

/* ===== GALERIE ===== */
.galerie-filtres { display: flex; gap: .5rem; flex-wrap: wrap; }
.filtre-btn {
  padding: .4rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 500;
  border: 1px solid rgba(30,69,53,.2); background: transparent; color: var(--texte-doux);
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.filtre-btn.actif, .filtre-btn:hover { background: var(--vert); color: var(--blanc); border-color: var(--vert); }
.galerie-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 180px; gap: 10px; margin-top: 2rem;
}
.photo-item {
  border-radius: 8px; overflow: hidden; cursor: pointer;
  position: relative; background: var(--vert-pale);
  transition: transform .25s, box-shadow .25s;
}
.photo-item:hover { transform: scale(1.02); box-shadow: 0 10px 28px rgba(30,69,53,.18); z-index: 1; }
.photo-item.large { grid-column: span 2; grid-row: span 2; }
.photo-item.tall { grid-row: span 2; }
.photo-item.wide { grid-column: span 2; }
.photo-inner { width: 100%; height: 100%; }
.photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(15,35,24,.85) 0%,transparent 55%);
  opacity: 0; transition: opacity .25s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-legende { color: var(--blanc); font-size: .82rem; font-weight: 500; }
.photo-cat-tag {
  display: inline-block; background: var(--or); color: var(--texte);
  font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  padding: .2rem .5rem; border-radius: 100px; margin-bottom: .35rem; align-self: flex-start;
}
.galerie-note { text-align: center; color: var(--texte-doux); font-size: .85rem; margin-top: 1.5rem; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,20,15,.92);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  max-width: 800px; width: 90%; background: var(--blanc); border-radius: 12px;
  overflow: hidden; transform: scale(.95); transition: transform .3s;
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--vert); }
.lightbox-img img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-info { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.lightbox-titre { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--texte); }
.lightbox-meta { font-size: .8rem; color: var(--texte-doux); margin-top: .2rem; }
.lightbox-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--creme);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lightbox-close svg { width: 16px; height: 16px; stroke: var(--texte); fill: none; stroke-width: 2; stroke-linecap: round; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-nav svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===== CONTACT ===== */
.section-vert { background: var(--vert); }
.section-vert .section-label { color: rgba(255,255,255,.6); }
.section-vert .section-label::before { background: var(--or); }
.section-vert h2 { color: var(--blanc); }
.section-vert .section-intro { color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; }
.contact-infos { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--or); fill: none; stroke-width: 1.5; }
.contact-info-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.contact-info-val { color: rgba(255,255,255,.9); font-size: .95rem; }
.wpcf7-form .form-group { margin-bottom: 1.2rem; }
.wpcf7-form label { display: block; font-size: .8rem; color: rgba(255,255,255,.65); margin-bottom: .4rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%; padding: .75rem 1rem; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius);
  color: var(--blanc); font-family: inherit; font-size: .9rem;
  transition: border-color .2s, background .2s; outline: none;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(255,255,255,.3); }
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--or); background: rgba(255,255,255,.12); }
.wpcf7-form textarea { resize: vertical; min-height: 120px; }
.wpcf7-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wpcf7-form input[type="submit"] {
  width: 100%; background: var(--or); color: var(--texte); padding: .9rem;
  border: none; border-radius: var(--radius); font-family: inherit; font-weight: 500;
  font-size: .95rem; cursor: pointer; transition: opacity .2s, transform .2s;
}
.wpcf7-form input[type="submit"]:hover { opacity: .9; transform: translateY(-1px); }

/* ===== PAGE / ARTICLE ===== */
.page-hero {
  background: var(--vert); padding: 120px 0 60px; text-align: center;
}
.page-hero h1 { color: var(--blanc); font-size: clamp(1.8rem,4vw,3rem); margin-bottom: .5rem; }
.page-hero .breadcrumb { color: rgba(255,255,255,.6); font-size: .85rem; }
.content-area { max-width: 800px; margin: 0 auto; padding: 60px 2rem; }
.content-area h2, .content-area h3 { color: var(--vert); margin: 2rem 0 1rem; }
.content-area p { margin-bottom: 1.2rem; color: var(--texte-doux); }
.content-area img { border-radius: 8px; margin: 1.5rem 0; }
.post-header { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(30,69,53,.1); }
.post-meta { font-size: .85rem; color: var(--texte-doux); margin-top: .5rem; }
.post-thumbnail { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.post-thumbnail img { width: 100%; height: 300px; object-fit: cover; }
.archive-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; padding: 60px 2rem; max-width: 1200px; margin: 0 auto; }

/* ===== FOOTER ===== */
.site-footer { background: #0f2318; color: rgba(255,255,255,.6); padding: 3rem 0 1.5rem; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .site-branding a { color: rgba(255,255,255,.9); font-size: 1.2rem; }
.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 260px; margin-top: 1rem; }
.footer-col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--or); }
.footer-bottom {
  padding: 1.5rem 0 0; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; flex-wrap: wrap; gap: .5rem;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  background: var(--vert); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; z-index: 99; border: none;
  box-shadow: 0 4px 14px rgba(30,69,53,.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-navigation ul { display: none; }
  .burger { display: flex; }
  .main-navigation ul.open {
    display: flex; flex-direction: column; position: absolute; top: 68px;
    left: 0; right: 0; background: var(--blanc); padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(30,69,53,.1); gap: 1rem; box-shadow: var(--ombre);
  }
  .hero-inner, .asso-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visuel { display: none; }
  .events-grid, .articles-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid { grid-template-columns: repeat(2,1fr); }
  .photo-item.large, .photo-item.wide { grid-column: span 2; }
  .archive-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .valeurs { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
}
