@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --color-blue:    #2E86C1;
  --color-green:   #82BC00;
  --color-yellow:  #F5C300;
  --color-magenta: #C0006A;
  --color-red:     #C0392B;
  --color-teal:    #00A89D;
  --color-dark:    #1a2a1a;
  --color-text:    #2c2c2c;
  --color-light:   #f8faf5;
  --color-white:   #ffffff;
  --color-grey:    #f0f2ee;
  --font-display:  'Playfair Display', serif;
  --font-body:     'Nunito', sans-serif;
  --shadow:        0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s ease;
  --header-h:      85px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-white); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === HEADER === */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1500;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--color-green);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.13); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem; height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--color-dark); transition: opacity .2s; }
.logo:hover { opacity: .82; }
.logo img { height: 68px; width: auto; max-width: 290px; object-fit: contain; }
nav ul { display: flex; list-style: none; gap: .15rem; align-items: center; }
nav ul li a {
  display: block; padding: .5rem .85rem; font-size: .82rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; color: var(--color-text);
  border-radius: 8px; transition: var(--transition); position: relative;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--color-green); border-radius: 2px; transition: var(--transition);
}
nav ul li a:hover, nav ul li a.active { color: var(--color-green); background: rgba(130,188,0,.08); }
nav ul li a:hover::after, nav ul li a.active::after { left: 12%; right: 12%; }

.burger { display: none; flex-direction: column; justify-content: center; cursor: pointer; gap: 5px; width: 36px; height: 36px; border: none; background: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 3px; background: var(--color-dark); border-radius: 3px; transition: var(--transition); transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* === HERO === */
.hero { position: relative; width: 100%; height: 580px; margin-top: var(--header-h); overflow: hidden; background: var(--color-dark); }
.hero-slides { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .65s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.35) 100%);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2.5rem;
}
/* Position verticale — margin auto pousse la box dans la bonne direction */
.hero-overlay.hero-pos-top    .hero-text-box { margin-top: 0;    margin-bottom: auto; }
.hero-overlay.hero-pos-center .hero-text-box { margin-top: auto; margin-bottom: auto; }
.hero-overlay.hero-pos-bottom .hero-text-box { margin-top: auto; margin-bottom: 1rem; }

/* Cadre verre dépoli autour du texte */
.hero-text-box {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 2.2rem 3rem;
  max-width: 780px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
}

.hero-title { font-family: var(--font-display); font-size: clamp(1.6rem,4.5vw,3.2rem); font-weight: 900; color: white; text-shadow: 0 2px 12px rgba(0,0,0,.4); margin-bottom: .7rem; line-height: 1.2; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 1.6rem; text-shadow: 0 1px 6px rgba(0,0,0,.35); line-height: 1.5; }
.hero-nav { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: var(--transition); border: none; }
.hero-dot.active { background: white; transform: scale(1.35); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.18); backdrop-filter: blur(6px); border: 2px solid rgba(255,255,255,.35); color: white; width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { background: rgba(255,255,255,.32); }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: .85rem 2.2rem; border-radius: 50px; font-family: var(--font-body); font-weight: 800; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--color-green); color: white; box-shadow: 0 4px 20px rgba(130,188,0,.4); }
.btn-primary:hover { background: #6da000; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(130,188,0,.5); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.8); }
.btn-outline:hover { background: white; color: var(--color-dark); border-color: white; }
.btn-link { font-size: .83rem; font-weight: 800; color: var(--color-blue); text-transform: uppercase; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.btn-link:hover { color: var(--color-green); gap: 9px; }

/* === QUICK LINKS === */
.quick-links { background: white; padding: 2.2rem 2rem; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.quick-links-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.quick-btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 1.4rem 1.5rem; border-radius: var(--radius-lg); font-family: var(--font-body); font-weight: 800; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; color: white; transition: var(--transition); text-align: center; }
.quick-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quick-btn .icon { font-size: 1.5rem; flex-shrink: 0; }
.quick-btn-1 { background: linear-gradient(135deg,var(--color-blue),#1a6fa0); }
.quick-btn-2 { background: linear-gradient(135deg,var(--color-magenta),#a0005a); }
.quick-btn-3 { background: linear-gradient(135deg,var(--color-teal),#007870); }

/* === SECTIONS === */
section { padding: 4.5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 900; color: var(--color-dark); margin-bottom: .5rem; line-height: 1.2; }
.section-subtitle { font-size: 1rem; color: #666; margin-bottom: 2.8rem; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.accent-line { display: block; width: 58px; height: 4px; background: linear-gradient(to right,var(--color-green),var(--color-blue)); border-radius: 4px; margin: .7rem auto; }

/* === NEWS === */
.news-section { background: var(--color-grey); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.news-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; }
.news-card-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg,var(--color-green),var(--color-blue)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.news-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-green); margin-bottom: .4rem; }
.news-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--color-dark); margin-bottom: .5rem; line-height: 1.4; }
.news-card-excerpt { font-size: .88rem; color: #666; line-height: 1.6; margin-bottom: 1.1rem; flex: 1; }

/* === AGENDA === */
.agenda-section { background: white; }
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-card { display: flex; align-items: center; gap: 1.5rem; background: white; border: 2px solid var(--color-grey); border-left: 5px solid var(--color-green); border-radius: var(--radius); padding: 1.1rem 1.4rem; transition: var(--transition); flex-wrap: wrap; }
.event-card:hover { border-color: var(--color-green); box-shadow: var(--shadow); transform: translateX(4px); }
.event-date { min-width: 66px; text-align: center; background: linear-gradient(135deg,var(--color-green),var(--color-blue)); color: white; border-radius: 10px; padding: .55rem .4rem; }
.event-date .day { display: block; font-size: 1.7rem; font-weight: 900; font-family: var(--font-display); line-height: 1; }
.event-date .month { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.event-info { flex: 1; min-width: 180px; }
.event-title { font-family: 'Georgia', 'Times New Roman', serif; font-size: 1.25rem; font-weight: 700; color: var(--color-dark); margin-bottom: .35rem; line-height: 1.3; letter-spacing: .01em; }
.event-meta { font-size: .83rem; color: #777; }

/* === RENCONTRES === */
.rencontres-section { background: var(--color-light); }
.rencontres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.rencontres-steps { display: flex; flex-direction: column; gap: .9rem; }
.step { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.2rem; background: white; border-radius: var(--radius); box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: var(--transition); }
.step:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.step-num { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .88rem; color: white; flex-shrink: 0; }
.step:nth-child(1) .step-num { background: var(--color-blue); }
.step:nth-child(2) .step-num { background: var(--color-green); }
.step:nth-child(3) .step-num { background: var(--color-yellow); color: #333; }
.step:nth-child(4) .step-num { background: var(--color-magenta); }
.step:nth-child(5) .step-num { background: var(--color-teal); }
.step:nth-child(6) .step-num { background: var(--color-red); }
.step-text { font-size: .92rem; line-height: 1.5; }
.step-text strong { display: block; font-weight: 800; margin-bottom: .15rem; }
.rencontres-cta { background: linear-gradient(135deg,var(--color-blue),var(--color-teal)); color: white; border-radius: var(--radius-lg); padding: 2.2rem; text-align: center; }
.rencontres-cta h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .8rem; }
.rencontres-cta p { opacity: .9; margin-bottom: 1.3rem; font-size: .95rem; }

/* === GALLERY === */
.media-section { background: var(--color-grey); }
.albums-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 1.5rem; }
.album-card { border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; }
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.album-cover { width: 100%; height: 195px; object-fit: cover; }
.album-cover-placeholder { width: 100%; height: 195px; background: linear-gradient(135deg,var(--color-magenta),var(--color-blue)); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.album-info { padding: 1.1rem; }
.album-title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; margin-bottom: .25rem; }
.album-count { font-size: .82rem; color: #888; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: .9rem; }
.media-thumb { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; cursor: pointer; box-shadow: var(--shadow); transition: var(--transition); }
.media-thumb:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: white; font-size: 2rem; }
.media-thumb:hover .media-thumb-overlay { opacity: 1; }
.video-badge { position: absolute; top: 8px; right: 8px; background: var(--color-red); color: white; border-radius: 5px; padding: 2px 7px; font-size: .68rem; font-weight: 700; }

/* === LIGHTBOX === */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.93); align-items: center; justify-content: center; padding: 1rem; }
.lightbox.active { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { max-width: 92vw; max-height: 92vh; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 88vh; border-radius: 8px; }
.lightbox-content iframe { width: 80vw; height: 45vw; max-height: 88vh; border-radius: 8px; border: none; }
.lightbox-close { position: absolute; top: -14px; right: -14px; width: 38px; height: 38px; background: var(--color-red); color: white; border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-close:hover { background: #a00; transform: scale(1.1); }

/* === PAGE HEADER === */
.page-header { background: linear-gradient(135deg,var(--color-dark),#2a3a2a); color: white; padding: 5rem 2rem 3rem; margin-top: var(--header-h); text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2382BC00' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,3rem); font-weight: 900; position: relative; margin-bottom: .4rem; }
.page-header p { font-size: 1.05rem; opacity: .8; position: relative; }

/* === BREADCRUMB === */
.breadcrumb { padding: .65rem 2rem; background: var(--color-grey); font-size: .82rem; color: #777; }
.breadcrumb a { color: var(--color-blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 .45rem; }

/* === PAGE CONTENT === */
.page-content { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }
.page-content h2 { font-family: var(--font-display); color: var(--color-dark); font-size: 1.8rem; margin: 2rem 0 .8rem; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.25rem; color: var(--color-blue); margin: 1.5rem 0 .5rem; }
.page-content p { margin-bottom: 1rem; line-height: 1.8; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: .4rem; }
.page-content a { color: var(--color-blue); text-decoration: underline; }

/* === CONTACT === */
.contact-section { background: var(--color-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.4rem; color: var(--color-dark); }
.contact-item { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.1rem; }
.contact-item .icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; color: white; }
.contact-form { background: white; padding: 2.2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .8rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #555; margin-bottom: .35rem; }
input, textarea, select { width: 100%; padding: .8rem 1rem; border: 2px solid #e8e8e8; border-radius: 10px; font-family: var(--font-body); font-size: .92rem; color: var(--color-text); transition: var(--transition); background: var(--color-light); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--color-green); background: white; box-shadow: 0 0 0 3px rgba(130,188,0,.1); }
textarea { resize: vertical; min-height: 130px; }
.alert { padding: .9rem 1.2rem; border-radius: 10px; margin-bottom: 1rem; font-weight: 600; font-size: .9rem; }
.alert-success { background: #e8f5e0; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #fce4e4; color: #c62828; border: 1px solid #f5c6c6; }

/* === FOOTER === */
footer { background: var(--color-dark); color: rgba(255,255,255,.78); padding: 3.5rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo img { height: 44px; max-width: 200px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-logo span { font-family: var(--font-display); font-size: 1.05rem; color: white; font-weight: 700; }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: 9px; }
.social-link { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: white; }
.social-link:hover { background: var(--color-green); transform: translateY(-2px); }
.footer-heading { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--color-green); margin-bottom: .9rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .45rem; }
.footer-links li a { font-size: .88rem; transition: var(--transition); display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.7); }
.footer-links li a::before { content: '›'; color: var(--color-green); font-size: 1.1rem; }
.footer-links li a:hover { color: white; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.4); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .rencontres-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}
/* ── GRILLE PRÉSENTATION ACCUEIL ── */
.home-présentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  nav { position: fixed; top: var(--header-h); right: -280px; width: 270px; height: calc(100dvh - var(--header-h)); background: white; box-shadow: -6px 0 24px rgba(0,0,0,.12); transition: right .3s cubic-bezier(.25,.46,.45,.94); overflow-y: auto; padding: 1.2rem 1rem; z-index: 2000; pointer-events: auto; }
  nav.open { right: 0; }
  nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  nav ul li a { padding: .75rem 1rem; font-size: .88rem; border-radius: 10px; }
  nav ul li a::after { display: none; }
  .hero { height: 400px; }
  .hero-title { font-size: 1.7rem; }
  .hero-subtitle { font-size: .95rem; }
  .hero-text-box { padding: 1.5rem 1.4rem; border-radius: 14px; }
  .quick-links-inner { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  section { padding: 3rem 1.2rem; }
  /* Logo centré */
  .header-inner { justify-content: center; position: relative; }
  .logo { margin: 0 auto; }
  .burger { display: flex; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
  /* Présentation accueil */
  .home-présentation-grid { grid-template-columns: 1fr; gap: 2rem; }
  .home-cards-grid { grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.5rem 0; }
  .home-présentation-grid .btn { display: block; text-align: center; }
}
@media (max-width: 420px) {
  .home-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { height: 340px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 1rem; }
  .header-inner { padding: 0 1rem; }
  .quick-links { padding: 1.5rem 1rem; }
}

/* Overlay menu mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
  pointer-events: auto;
}
.nav-overlay.active { display: block; }

/* ── PAGE QUI SOMMES-NOUS ── */
@media (max-width: 768px) {
  .qsn-hero-grid    { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .qsn-stats-grid   { grid-template-columns: 1fr 1fr !important; }
  .qsn-history-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .qsn-cards-grid   { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

/* ── BOUTONS RAPIDES ACCUEIL — MOBILE ── */
@media (max-width: 768px) {
  .quick-btn { justify-content: center; }
  .quick-btn .icon { display: none; }
}
