/* ============================================================
   A CAP'ART — Feuille de style principale
   Studio Style Design · 2026
   Palette Vernissage : #F8F4EF · #C8334A · #3D6B8C · #E8711A
   ============================================================ */

:root {
  --fond:       #F8F4EF;   /* lin chaud — fond principal */
  --texte:      #1A1614;   /* quasi-noir chaud — texte principal */
  --rouge:      #C8334A;   /* rouge-rose — accent principal */
  --bleu:       #3D6B8C;   /* bleu ardoise — accent secondaire */
  --orange:     #E8711A;   /* orange A CAP'ART — accent tertiaire */
  --gris:       #6B5B52;   /* gris brun — texte secondaire */
  --fond-alt:   #EDE7DF;   /* lin foncé — sections alternées */
  --fond-card:  #FFFFFF;   /* blanc pur — cartes */
  --gris-clair: #C8B8AE;   /* bordures */
  --footer-bg:  #1A1614;   /* fond footer */
  --footer-txt: #C8B8AE;   /* texte footer */

  /* Aliases rétrocompatibilité (pour les pages HTML existantes) */
  --noir:       #1A1614;
  --blanc:      #F8F4EF;
  --or:         #3D6B8C;
  --rose:       #E8711A;
  --noir-doux:  #2C211D;
  --gris-fonce: #EDE7DF;
  --gris-moyen: #9A8A7E;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--fond);
  color: var(--gris);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rouge); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bleu); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,244,239,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gris-clair);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(26,22,20,0.06);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.72; }
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-brand .nav-logo { margin-bottom: 1.2rem; }
.footer-brand .nav-logo img { height: 32px; }
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--gris);
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rouge); }
.nav-cta {
  background: var(--rouge);
  color: #FFFFFF !important;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--bleu); color: #FFFFFF !important; }

/* Hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texte);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--fond);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(200,51,74,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(61,107,140,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--texte);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero h1 em { color: var(--rouge); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--gris);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--rouge);
  font-family: 'Georgia', serif;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris);
  font-family: 'Arial', sans-serif;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BOUTONS ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rouge);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--bleu);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--rouge);
  color: var(--rouge);
  background: transparent;
}
.btn-outline:hover {
  background: var(--rouge);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--gris);
  border: 1px solid var(--gris-clair);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--rouge);
  color: var(--rouge);
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--gris);
  max-width: 600px;
  line-height: 1.8;
}

/* ── GRILLES ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── CARDS ── */
.card {
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--rouge);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,51,74,0.1);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card h3 {
  color: var(--texte);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.card p { font-size: 0.9rem; color: var(--gris); line-height: 1.7; }

/* ── SECTION ALTERNÉE ── */
.section-alt { background: var(--fond-alt); }

/* ── CITATION ── */
.blockquote {
  border-left: 3px solid var(--rouge);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(200,51,74,0.04);
  border-radius: 0 4px 4px 0;
}
.blockquote p {
  font-size: 1.15rem;
  color: var(--texte);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.blockquote cite {
  font-size: 0.8rem;
  color: var(--rouge);
  font-style: normal;
  letter-spacing: 0.1em;
  font-family: 'Arial', sans-serif;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gris-clair), transparent);
  margin: 0;
  border: none;
}

/* ── CHIFFRES ── */
.stats-band {
  background: var(--fond-alt);
  padding: 3rem 2rem;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 3rem;
  color: var(--rouge);
  font-family: 'Georgia', serif;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  font-family: 'Arial', sans-serif;
  margin-top: 0.4rem;
  display: block;
}

/* ── LISTE ── */
.check-list { list-style: none; }
.check-list li {
  padding: 0.5rem 0;
  color: var(--gris);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '→';
  color: var(--rouge);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── PILIERS ── */
.pillar {
  padding: 2rem;
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--rouge);
}
.pillar-num {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--rouge);
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.pillar h3 { color: var(--texte); font-size: 1.05rem; font-weight: 400; margin-bottom: 0.5rem; }
.pillar p { color: var(--gris); font-size: 0.88rem; line-height: 1.7; }

/* ── ÉVÉNEMENTS ── */
.event-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.8rem;
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.2s;
}
.event-card:hover {
  border-color: var(--rouge);
  box-shadow: 0 4px 16px rgba(200,51,74,0.1);
}
.event-date {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid var(--gris-clair);
}
.event-date .day {
  display: block;
  font-size: 2rem;
  color: var(--rouge);
  font-family: 'Georgia', serif;
  line-height: 1;
}
.event-date .month {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  font-family: 'Arial', sans-serif;
  margin-top: 0.3rem;
}
.event-info h3 { color: var(--texte); font-weight: 400; margin-bottom: 0.3rem; }
.event-info .location {
  font-size: 0.8rem;
  color: var(--rouge);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.5rem;
}
.event-info p { color: var(--gris); font-size: 0.9rem; line-height: 1.6; }
.event-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(200,51,74,0.08);
  border: 1px solid rgba(200,51,74,0.25);
  border-radius: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rouge);
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.8rem;
}

/* ── TEAM ── */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.2s;
}
.team-card:hover {
  border-color: var(--rouge);
  box-shadow: 0 4px 16px rgba(200,51,74,0.1);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--fond-alt);
  border: 2px solid var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  overflow: hidden;
}
.team-card h3 { color: var(--texte); font-weight: 400; margin-bottom: 0.3rem; }
.team-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rouge);
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.8rem;
}
.team-card p { color: var(--gris); font-size: 0.85rem; line-height: 1.6; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gris-clair);
  padding: 1.5rem 0;
}
.faq-question {
  color: var(--texte);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Georgia', serif;
  font-weight: 400;
}
.faq-question::after {
  content: '+';
  color: var(--rouge);
  font-size: 1.3rem;
  flex-shrink: 0;
  font-family: 'Arial', sans-serif;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-top: 1rem; }
.faq-answer p { color: var(--gris); font-size: 0.92rem; line-height: 1.8; }

/* ── BLOG ── */
.blog-card {
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: var(--rouge);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,51,74,0.1);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--fond-alt) 0%, var(--gris-clair) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rouge);
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.5rem;
}
.blog-card h3 { color: var(--texte); font-weight: 400; font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { color: var(--gris); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.blog-card-date {
  font-size: 0.72rem;
  color: var(--gris-moyen);
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.1em;
}

/* ── FORMULAIRE ── */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris);
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--texte);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(200,51,74,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--fond-card); color: var(--texte); }

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--rouge);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
/* Logo dans le footer — même badge que le nav */
.footer-brand .nav-logo {
  margin-bottom: 1.2rem;
  display: inline-flex;
  font-size: 1.1rem;
}
.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.footer-brand .tagline {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  font-family: 'Arial', sans-serif;
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--footer-txt); font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Arial', sans-serif;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: var(--footer-txt);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--rouge); }
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,184,174,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-txt);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--rouge);
  color: var(--rouge);
}
.footer-bottom {
  border-top: 1px solid rgba(200,184,174,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(200,184,174,0.6);
  font-family: 'Arial', sans-serif;
}
.footer-bottom a { color: var(--rouge); }

/* ── PAGE HEADER (sous-pages) ── */
.page-header {
  padding: 120px 2rem 4rem;
  text-align: center;
  position: relative;
  background: var(--fond);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--rouge);
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--rouge), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rouge);
  border: 2px solid var(--fond);
}
.timeline-date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rouge);
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.3rem;
}
.timeline-item h3 { color: var(--texte); font-weight: 400; margin-bottom: 0.4rem; }
.timeline-item p { color: var(--gris); font-size: 0.9rem; line-height: 1.7; }

/* ── COLIBRI RÔLES ── */
.colibri-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.2s;
}
.colibri-card:hover {
  border-color: var(--rouge);
  box-shadow: 0 4px 16px rgba(200,51,74,0.08);
}
.colibri-icon { font-size: 1.8rem; flex-shrink: 0; }
.colibri-card h3 { color: var(--texte); font-weight: 400; font-size: 1rem; margin-bottom: 0.3rem; }
.colibri-card p { color: var(--gris); font-size: 0.85rem; line-height: 1.6; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: rgba(200,51,74,0.08);
  border: 1px solid rgba(200,51,74,0.2);
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rouge);
  font-family: 'Arial', sans-serif;
}

/* ── INFO-BOX (pages event) ── */
.info-box {
  background: var(--fond-card);
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  padding: 2rem;
}
.info-box h3 {
  color: var(--texte);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gris-clair);
}

/* ── EVENTS — FEATURED (affiche banner) ── */
.event-featured {
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  overflow: hidden;
  background: var(--fond-card);
  transition: box-shadow 0.3s;
}
.event-featured:hover {
  box-shadow: 0 8px 32px rgba(200,51,74,0.12);
}
.event-affiche {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.event-affiche img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.event-featured:hover .event-affiche img { transform: scale(1.02); }
.event-affiche-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.88) 0%, rgba(26,22,20,0.4) 60%, transparent 100%);
  padding: 2rem 1.5rem 1.2rem;
}
.event-affiche-title h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
}
.event-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: start;
}
.event-body-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.event-body-cta { text-align: right; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablette (≤ 900px) ── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 90px 1.5rem 3rem; }
  .page-header { padding: 90px 1.5rem 3rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.06em; }
}

/* ── Mobile (≤ 650px) ── */
@media (max-width: 650px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(248,244,239,0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gris-clair);
    box-shadow: 0 4px 16px rgba(26,22,20,0.1);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  section { padding: 3rem 1.2rem; }
  .hero { padding: 80px 1.2rem 2.5rem; min-height: auto; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .page-header { padding: 80px 1.2rem 2.5rem; }
  .section-title { font-size: clamp(1.3rem, 5vw, 2rem); }
  .section-intro { font-size: 0.95rem; }
  .hero-stats { gap: 1.5rem; }
  .event-card { grid-template-columns: 1fr; }
  .event-date { border-right: none; border-bottom: 1px solid var(--gris-clair); padding-bottom: 1rem; }
  .stats-grid { gap: 2rem; }
  .event-body { grid-template-columns: 1fr; }
  .event-body-cta { text-align: left; }
  .colibri-card { flex-direction: column; gap: 0.8rem; }
  .blockquote { padding: 1rem 1.2rem; }
  .container { padding: 0 0.2rem; }
  footer { padding: 2.5rem 1.2rem 1.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.75rem; }
  .info-box { padding: 1.2rem; }
  .timeline { padding-left: 1.2rem; }
  .grid-2.profil-layout { grid-template-columns: 1fr; }
}

/* ── Très petit (≤ 380px) ── */
@media (max-width: 380px) {
  .nav { padding: 0 1rem; }
  .nav-logo img { height: 32px; }
  section { padding: 2.5rem 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ── PWA install banner ── */
.pwa-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--fond-card);
  border-top: 2px solid var(--rouge);
  padding: 1rem 1.2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pwa-banner.visible { display: flex; }
.pwa-banner-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #1a1713;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.pwa-banner-logo img { height: 28px; width: auto; }
.pwa-banner-text { flex: 1; min-width: 160px; }
.pwa-banner-text strong { display: block; font-size: 0.88rem; color: var(--texte); margin-bottom: 0.15rem; }
.pwa-banner-text span { font-size: 0.75rem; color: var(--gris); font-family: Arial, sans-serif; }
.pwa-banner-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.pwa-install-btn {
  background: var(--rouge); color: #fff;
  border: none; border-radius: 20px;
  padding: 0.45rem 1.1rem; font-size: 0.8rem;
  font-weight: 500; cursor: pointer; font-family: inherit;
  transition: background .2s;
}
.pwa-install-btn:hover { background: #a8293d; }
.pwa-dismiss-btn {
  background: none; border: 1px solid var(--gris-clair);
  border-radius: 20px; padding: 0.45rem 0.9rem;
  font-size: 0.78rem; color: var(--gris);
  cursor: pointer; font-family: inherit;
  transition: border-color .2s;
}
.pwa-dismiss-btn:hover { border-color: var(--rouge); color: var(--rouge); }
