/* ═══════════════════════════════════════════════════════
   FPFCA — Fédération Panafricaine des Festivals
   Design system : vert, or, blanc — inspiré du logo
═══════════════════════════════════════════════════════ */

:root {
  /* Palette — Light theme inspired by FPFCA logo */
  --bg: #fdfcf8;
  --bg-2: #f5f1e8;
  --bg-3: #ebe4d3;
  --bg-cream: #faf6ed;
  --bg-green: #0f4d2a;
  --bg-green-2: #1a7a42;
  --bg-green-deep: #0a3a1f;
  --ink: #14110d;
  --ink-2: #3a3530;
  --ink-3: #7a7268;
  --text: var(--ink);
  --text-dim: var(--ink-3);
  --gold: #c9a14a;
  --gold-2: #e8c878;
  --gold-deep: #8a6c2a;
  --gold-light: #f4ead0;
  --green: #0f4d2a;
  --green-2: #1a7a42;
  --green-light: #e8f0e6;
  --green-soft: #d4e4cf;
  --terracotta: #8b3a2e;
  --terracotta-2: #a64b3a;
  --line: rgba(15, 77, 42, 0.08);
  --line-2: rgba(15, 77, 42, 0.18);
  --line-gold: rgba(201, 161, 74, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 77, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 77, 42, 0.08);
  --shadow-lg: 0 24px 60px -20px rgba(15, 77, 42, 0.18);
  --shadow-gold: 0 12px 32px -8px rgba(201, 161, 74, 0.35);

  /* Typography */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 10vw, 140px);

  /* Easing */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Decorative film strip pattern */
.film-strip {
  height: 14px;
  background-image:
    linear-gradient(90deg, var(--green) 0%, var(--green) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 14px, var(--bg) 14px, var(--bg) 22px);
  background-blend-mode: normal;
  position: relative;
}
.film-strip::before, .film-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 18px);
}
.film-strip::before { top: 2px; }
.film-strip::after { bottom: 2px; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea { font: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ═════════════════ PRELOADER ═════════════════ */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg-green);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 24px;
}
.preloader-mark span { color: var(--gold); font-style: italic; }
.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.2);
  margin-inline: auto;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  width: 0;
  animation: preload 1.6s var(--ease) forwards;
}
@keyframes preload { to { width: 100%; } }

/* ═════════════════ NAVIGATION ═════════════════ */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  background: rgba(253, 252, 248, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-wrap.is-scrolled {
  background: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); transition: transform 0.3s var(--ease); }
.brand:hover { transform: translateY(-1px); }
.brand-logo { height: 48px; width: auto; }
.brand-mark {
  color: var(--green);
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-light), var(--gold-light));
  border-radius: 50%;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--green), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: 0.3s var(--ease);
}

/* ═════════════════ BUTTONS ═════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(201, 161, 74, 0.55);
}
.btn-green {
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(15, 77, 42, 0.35);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green), var(--bg-green-deep));
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(15, 77, 42, 0.45);
}
.btn-line {
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-line:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.btn-line-gold {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.btn-line-gold:hover {
  background: var(--gold);
  color: #fff;
}
.btn-ghost {
  color: var(--green);
  padding: 10px 20px;
  border: 1px solid var(--green);
  font-size: 12px;
}
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-block { width: 100%; }

/* ═════════════════ HERO ═════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px clamp(32px, 6vw, 96px) 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  width: 100%;
  max-width: none;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(15, 77, 42, 0.55), rgba(15, 77, 42, 0.25) 40%, rgba(253, 252, 248, 0.35) 70%, rgba(253, 252, 248, 0.6) 100%),
    var(--hero-img, url('../images/award-ceremony-1.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(253, 252, 248, 0.55), transparent 60%),
    radial-gradient(ellipse at top left, rgba(15, 77, 42, 0.25), transparent 60%);
  pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(15, 77, 42, 0.18), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(201, 161, 74, 0.12), transparent 45%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(15,77,42,0.025) 2px, rgba(15,77,42,0.025) 4px);
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--bg) 92%);
  pointer-events: none;
}

/* Backdrop subtil sous le contenu texte pour la lisibilité */
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: -40px -60px -40px -40px;
  background: radial-gradient(ellipse at 30% 50%, rgba(253, 252, 248, 0.85) 0%, rgba(253, 252, 248, 0.6) 50%, transparent 80%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}
.hero-content > * { position: relative; z-index: 1; }

@media (max-width: 1024px) {
  .hero-bg {
    background-attachment: scroll;
    background-image:
      linear-gradient(180deg, rgba(253, 252, 248, 0.7) 0%, rgba(253, 252, 248, 0.55) 40%, rgba(253, 252, 248, 0.85) 100%),
      var(--hero-img, url('../images/award-ceremony-1.jpg'));
  }
  .hero-content::before {
    inset: -20px -30px;
    background: radial-gradient(ellipse at center, rgba(253, 252, 248, 0.92) 0%, rgba(253, 252, 248, 0.7) 60%, transparent 90%);
  }
}

@media (max-width: 768px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(253, 252, 248, 0.78) 0%, rgba(253, 252, 248, 0.65) 40%, rgba(253, 252, 248, 0.92) 100%),
      var(--hero-img, url('../images/award-ceremony-1.jpg'));
  }
}

.hero-content { position: relative; z-index: 2; }

.hero-meta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 36px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.hero-meta-dot {
  width: 8px; height: 8px;
  background: var(--green-2);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(26, 122, 66, 0.6);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26, 122, 66, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(26, 122, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 122, 66, 0); }
}
.hero-meta-divider {
  width: 1px; height: 14px;
  background: var(--line-2);
}
.hero-meta-live {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 700;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) { animation-delay: 0.55s; }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }
.hero-title .line:nth-child(4) { animation-delay: 0.85s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-title em {
  font-style: italic;
  color: var(--ink-2);
  font-weight: 400;
}
.hero-title .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero-title .green {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}
.hero-title .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

.hero-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1s forwards;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.15s forwards;
}

/* ─── Quickstats sous les CTAs ─── */
.hero-quickstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
  max-width: 580px;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.4s forwards;
}
.hero-quickstat {
  position: relative;
  padding-inline: 18px;
}
.hero-quickstat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  width: 1px; height: 60%;
  background: var(--line);
}
.hero-quickstat:first-child { padding-left: 0; }
.hero-qs-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-qs-num sup {
  font-size: 0.55em;
  color: var(--gold);
  font-weight: 500;
  margin-left: 1px;
}
.hero-qs-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: linear-gradient(90deg, var(--bg-cream), var(--bg-2), var(--bg-cream));
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-marquee-track {
  display: flex; gap: 36px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.02em;
  color: var(--green);
  font-weight: 500;
}
.hero-marquee-track span.dot {
  color: var(--gold);
  font-size: 10px;
}
.hero-marquee-track span:not(.dot) {
  font-style: italic;
}
.hero-marquee:hover .hero-marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.hero-side {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line-2);
  max-width: 400px;
  border-radius: 18px;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1.2s var(--ease-out) 1.3s forwards;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px -20px rgba(15, 77, 42, 0.25);
}

/* ─── Poster en haut de la carte ─── */
.hero-card-poster {
  position: relative;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-poster-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 161, 74, 0.5), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(15, 77, 42, 0.6), transparent 50%),
    linear-gradient(135deg, var(--bg-green) 0%, var(--bg-green-deep) 100%);
}
.hero-card-poster-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(255,255,255,0.04) 12px, rgba(255,255,255,0.04) 13px);
}
.hero-card-poster-edition {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 1;
}
.hero-card-trophy {
  position: relative;
  z-index: 2;
  width: 80px; height: 80px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  color: #fff;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.1),
    0 0 0 12px rgba(201, 161, 74, 0.18),
    var(--shadow-gold);
  animation: trophyFloat 4s ease-in-out infinite;
}
.hero-card-trophy svg { width: 38px; height: 38px; }
@keyframes trophyFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ─── Corps ─── */
.hero-card-body {
  padding: 28px 28px 26px;
  position: relative;
}
.hero-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.hero-card-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.hero-card-flag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.hero-card-title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--green);
  letter-spacing: -0.01em;
}
.hero-card-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 20px;
  line-height: 1.55;
}

/* ─── Lauréats résumé ─── */
.hero-card-winners {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--green-light), var(--gold-light));
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.hero-winner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}
.hero-winner-prize {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-winner-film {
  color: var(--green);
  font-weight: 600;
  text-align: right;
}

.hero-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--green);
  transition: gap 0.3s var(--ease), color 0.2s;
}
.hero-card-link:hover { gap: 14px; color: var(--gold-deep); border-color: var(--gold); }
.hero-card-link svg { transition: transform 0.3s var(--ease); }
.hero-card-link:hover svg { transform: translateX(2px); }

/* ─── Indicateur de scroll en bas du hero ─── */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.7s forwards;
  z-index: 3;
}
.hero-scroll small { font-weight: 600; }
.hero-scroll-line {
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--green); }
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50%      { transform: scaleY(1); }
}

/* ═════════════════ STATS ═════════════════ */
.stats {
  padding: 80px 0;
  background:
    linear-gradient(135deg, var(--bg-green) 0%, var(--bg-green-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.15), transparent 60%);
  pointer-events: none;
}
.stats::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26, 122, 66, 0.4), transparent 60%);
  pointer-events: none;
}
.stats > * { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: left;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 24px;
}
.stat:first-child { border-left-color: var(--gold); }
.stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}
.stat-num::after {
  content: '+';
  color: var(--gold);
  font-weight: 400;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ═════════════════ SECTION COMMON ═════════════════ */
section { padding-block: var(--section-pad); position: relative; }

.section-head {
  margin-bottom: 80px;
  max-width: 800px;
}
.section-head.split {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: none;
  flex-wrap: wrap; gap: 32px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}

.section-cta { text-align: center; margin-top: 60px; }
.link-arrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { color: var(--gold-deep); }

/* ═════════════════ ABOUT ═════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.lede {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 60px;
  padding-left: 24px;
  border-left: 3px solid var(--green);
}
.pillars { display: grid; gap: 40px; }
.pillar { display: grid; grid-template-columns: 60px 1fr; gap: 24px; }
.pillar-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  border-top: 2px solid var(--green);
  padding-top: 8px;
}
.pillar h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--green);
}
.pillar p { color: var(--ink-2); font-size: 15px; }

.about-quote {
  background: linear-gradient(160deg, var(--bg-green) 0%, var(--bg-green-deep) 100%);
  border: none;
  padding: 56px 40px;
  position: relative;
  position: sticky;
  top: 120px;
  border-radius: 20px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-quote::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(201, 161, 74, 0.25), transparent 70%);
  pointer-events: none;
}
.about-quote::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
}
.quote-mark {
  font-family: var(--display);
  font-size: 120px;
  font-weight: 400;
  color: var(--gold);
  line-height: 0.8;
  position: absolute;
  top: 24px; left: 36px;
  opacity: 0.4;
}
.about-quote blockquote {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin: 60px 0 32px;
}
.quote-author { display: flex; flex-direction: column; gap: 4px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2); }
.quote-author strong { font-size: 14px; letter-spacing: 0.04em; color: #fff; }
.quote-author span { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; }

/* ═════════════════ PRESIDENT ═════════════════ */
.president {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}
.president::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15, 77, 42, 0.06), transparent 60%);
  pointer-events: none;
}
.president::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.08), transparent 60%);
  pointer-events: none;
}
.president .container { position: relative; z-index: 1; }

.president-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.president-photo {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
}
.president-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-light), var(--gold-light));
}
.president-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  z-index: 2;
  pointer-events: none;
}
.president-photo-frame::after {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
  border-radius: 28px;
  pointer-events: none;
  opacity: 0.4;
}
.president-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.president-photo:hover .president-photo-frame img { transform: scale(1.04); }

.president-photo-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--bg);
  z-index: 3;
}
.president-photo-badge-mark {
  font-size: 28px;
  line-height: 1;
}
.president-photo-badge-text {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}
.president-photo-badge-text strong {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.president-content {
  position: relative;
}
.president-content .section-title { margin-bottom: 32px; }
.president-quote-mark {
  font-family: var(--display);
  font-size: 120px;
  font-weight: 400;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 8px;
  opacity: 0.5;
}
.president-lead {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 24px;
  font-style: italic;
}
.president-content p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 600px;
}
.president-content p strong { color: var(--green); font-weight: 600; }

.president-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.president-signature-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 2px;
  flex-shrink: 0;
}
.president-signature strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--green);
  margin-bottom: 4px;
}
.president-signature span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 1024px) {
  .president-grid { grid-template-columns: 1fr; gap: 60px; }
  .president-photo { max-width: 360px; }
  .president-photo-badge { bottom: -16px; right: -16px; padding: 14px 18px; }
}

/* ═════════════════ FESTIVALS ═════════════════ */
.festivals { background: var(--bg-2); }

.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter {
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: all 0.3s var(--ease);
  background: var(--bg);
}
.filter:hover { border-color: var(--green); color: var(--green); }
.filter.active { background: var(--green); color: #fff; border-color: var(--green); }

.festival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.festival-card {
  border: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s var(--ease), border-color 0.3s, box-shadow 0.5s var(--ease);
  box-shadow: var(--shadow-sm);
}
.festival-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.festival-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.festival-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0,0,0,0.04) 30px, rgba(0,0,0,0.04) 60px);
  mix-blend-mode: overlay;
}
.festival-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}
.festival-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  z-index: 2;
  border-radius: 4px;
}
.festival-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  display: flex; justify-content: flex-end;
  z-index: 2;
}
.festival-year {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  opacity: 0.85;
  line-height: 1;
}
.festival-body { padding: 28px; }
.festival-meta {
  display: flex; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.festival-body h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--green);
}
.festival-body p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 20px;
  line-height: 1.6;
}
.festival-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.festival-link:hover { color: var(--green); }

/* ═════════════════ PALMARES ═════════════════ */
.palmares {
  background:
    linear-gradient(180deg, var(--bg-green) 0%, var(--bg-green-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.palmares::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.18), transparent 60%);
  pointer-events: none;
}
.palmares::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26, 122, 66, 0.4), transparent 60%);
  pointer-events: none;
}
.palmares .container { position: relative; z-index: 1; }
.palmares .eyebrow { color: var(--gold); }
.palmares .section-title { color: #fff; }
.palmares .section-title em { color: var(--gold); }

.palmares-intro {
  max-width: 700px;
  margin-bottom: 60px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.palmares-categories {
  display: grid;
  gap: 48px;
}
.palmares-cat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s var(--ease);
}
.palmares-cat:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 161, 74, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.palmares-cat-header {
  background: linear-gradient(135deg, rgba(201, 161, 74, 0.2), rgba(201, 161, 74, 0.05));
  padding: 22px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.palmares-cat-header::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  border-radius: 2px;
}
.palmares-cat-header h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-2);
  letter-spacing: 0.01em;
}
.palmares-table {
  width: 100%;
  border-collapse: collapse;
}
.palmares-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.palmares-table td {
  padding: 16px 28px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}
.palmares-table tr:last-child td { border-bottom: none; }
.palmares-table tr:hover td { background: rgba(201, 161, 74, 0.06); }
.palmares-prize {
  font-family: var(--display);
  font-weight: 500;
  color: var(--gold);
  font-size: 14px;
  white-space: nowrap;
}
.palmares-film { font-weight: 600; color: #fff; }
.palmares-country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ═════════════════ EVENTS / TIMELINE ═════════════════ */
.timeline {
  position: relative;
  display: grid; gap: 8px;
}
.timeline::before {
  content: ''; position: absolute;
  left: 100px; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 60px;
  padding: 32px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute;
  left: 92px; top: 54px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--green), 0 4px 12px rgba(201, 161, 74, 0.4);
  z-index: 2;
  transition: transform 0.3s var(--ease);
}
.timeline-item:hover::before { transform: scale(1.2); }
.timeline-date {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.timeline-date .day {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--green);
}
.timeline-date .month {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.timeline-date .year {
  font-size: 11px;
  color: var(--ink-3);
}
.timeline-body { padding-top: 4px; }
.timeline-type {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-light);
  border: 1px solid var(--line-2);
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-radius: 4px;
}
.timeline-body h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--ink);
}
.timeline-body p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 640px;
}
.timeline-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ═════════════════ NEWS ═════════════════ */
.news { background: var(--bg-2); }

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.news-card {
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-card-feature {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1fr auto;
}
.news-img {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.news-card-feature .news-img { min-height: 380px; }
.news-cat {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-gold);
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
}
.news-body { padding: 24px; }
.news-card-feature .news-body { padding: 32px; }
.news-meta {
  display: flex; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.news-body h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
}
.news-card-feature .news-body h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.news-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.news-link {
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.news-link:hover { border-bottom-color: var(--green); }

/* ═════════════════ PRÉSENCE CONTINENTALE ═════════════════ */
.map-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15, 77, 42, 0.06), transparent 60%);
  pointer-events: none;
}
.map-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.08), transparent 60%);
  pointer-events: none;
}
.map-section .container { position: relative; z-index: 1; }

.regions-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 40px;
  margin-bottom: 60px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.regions-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
  border-radius: 16px 16px 0 0;
}

.legend-stat {
  border-left: 3px solid var(--green);
  padding-left: 18px;
  position: relative;
}
.legend-stat::before {
  content: '';
  position: absolute;
  left: -3px; top: 0;
  width: 3px; height: 30%;
  background: var(--gold);
}
.legend-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 300;
  background: linear-gradient(135deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.legend-stat span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.region-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.region-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.region-card:hover::before { height: 100%; }

.region-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 4px 10px;
  background: var(--gold-light);
  border-radius: 4px;
  margin-bottom: 16px;
  font-weight: 600;
}

.region-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.region-card-country {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.region-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.region-card-list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.region-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Carte siège mise en avant */
.region-card-hq {
  background: linear-gradient(160deg, var(--bg-green) 0%, var(--bg-green-deep) 100%);
  border: 1px solid var(--gold);
  color: #fff;
  grid-column: span 1;
  position: relative;
}
.region-card-hq::before { background: var(--gold); height: 100%; }
.region-card-hq:hover {
  border-color: var(--gold-2);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(15, 77, 42, 0.4);
}
.region-card-hq h3 { color: #fff; }
.region-card-hq .region-card-country { color: rgba(255,255,255,0.65); }
.region-card-hq .region-card-list li { color: rgba(255,255,255,0.85); }
.region-card-hq .region-card-list li::before { background: var(--gold); }

.region-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--bg-green);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.region-card-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}
@media (max-width: 600px) {
  .regions-grid { grid-template-columns: 1fr; }
  .regions-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .legend-stat strong { font-size: 36px; }
}

/* ═════════════════ PARTNERS ═════════════════ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.partner-cell {
  aspect-ratio: 3/2;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  border: 1px solid var(--line);
  margin: -1px;
  background: var(--bg);
  transition: all 0.4s var(--ease);
  position: relative;
  text-align: center;
  padding: 16px;
}
.partner-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.partner-cell > * { position: relative; z-index: 1; }
.partner-cell:hover {
  color: var(--green);
  z-index: 2;
}
.partner-cell:hover::before { opacity: 1; }
a.partner-cell { text-decoration: none; }

/* ═════════════════ GALLERY (home) ═════════════════ */
.gallery-home {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding: 5rem 0;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}
.gallery-filter {
  padding: 7px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.gallery-filter:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: zoom-in;
  margin: 0;
  padding: 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(15,14,12,0.9), transparent);
  color: #fff;
  padding: 2.5rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-caption-text { font-size: 0.85rem; font-weight: 500; }
.gallery-caption-album { font-size: 0.72rem; opacity: 0.7; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-zoom-icon {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-zoom-icon svg { width: 18px; height: 18px; color: #fff; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}

/* ═════════════════ LIGHTBOX ═════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-active { opacity: 1; visibility: visible; }
.lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; color: #fff; font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next { right: 20px; }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox-content {
  position: relative; z-index: 5;
  max-width: 90vw; max-height: 85vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-img {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain; border-radius: 8px;
  opacity: 0; transform: scale(0.95);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.lightbox.is-active .lightbox-img.is-loaded { opacity: 1; transform: scale(1); }
.lightbox-info {
  margin-top: 16px;
  display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.8); font-size: 0.88rem;
}
.lightbox-caption { font-weight: 500; }
.lightbox-album { opacity: 0.5; font-size: 0.78rem; }
.lightbox-counter { margin-left: auto; opacity: 0.5; font-size: 0.78rem; }
@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-info { flex-direction: column; gap: 4px; text-align: center; }
}
.partner-logo {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease);
}
.partner-cell:hover .partner-logo {
  filter: grayscale(0);
  opacity: 1;
}

/* ═════════════════ TESTIMONIAL ═════════════════ */
.testimonial {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20, 90, 50, 0.06), transparent 60%);
  pointer-events: none;
}
.testimonial-inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.testimonial-quote svg { color: var(--gold); margin-bottom: 32px; opacity: 0.6; }
.testimonial-quote p {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 40px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 6px; }
.testimonial-author strong { font-size: 14px; letter-spacing: 0.04em; color: var(--ink); }
.testimonial-author span { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }

/* ═════════════════ CONTACT ═════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 24px 0 40px;
  max-width: 420px;
}
.contact-meta { display: grid; gap: 24px; margin-bottom: 40px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--green);
  color: var(--green);
  flex-shrink: 0;
  font-size: 18px;
  border-radius: 8px;
  background: var(--green-light);
}
.contact-row strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.contact-row a, .contact-row span { color: var(--ink); font-size: 16px; }
.contact-row a:hover { color: var(--green); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: all 0.3s;
}
.socials a:hover { border-color: var(--green); color: #fff; background: var(--green); transform: translateY(-2px); }

.contact-form {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-cream) 100%);
  border: 1px solid var(--line-2);
  padding: 48px;
  display: grid; gap: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  border-radius: 6px;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(20, 90, 50, 0.1); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { font-size: 13px; padding-top: 8px; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--terracotta-2); }

/* ═════════════════ PUBLIC PAGES ═════════════════ */
body.public-page {
  background:
    radial-gradient(circle at top right, rgba(201, 161, 74, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
}
.nav-links a.active { color: var(--gold); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 9.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 200, 120, 0.18), transparent 34%),
    radial-gradient(circle at 82% 100%, rgba(26, 122, 66, 0.22), transparent 36%),
    linear-gradient(135deg, var(--bg-green-deep) 0%, var(--bg-green) 52%, #0d5f34 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 200, 120, 0.55), transparent);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero .eyebrow {
  color: var(--gold-2);
  margin-bottom: 1rem;
}
.page-hero .section-title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.page-hero .section-title em {
  color: var(--gold-2);
}
.page-hero-lead {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--gold-2);
  text-decoration: none;
}
.breadcrumb a:hover { color: #fff; }
.page-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}
.page-toolbar {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.page-back-link:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateX(-2px);
}
.empty-state {
  text-align: center;
  padding: 4.5rem 1.5rem;
  border: 1px dashed var(--line-2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-dim);
  font-size: 1rem;
}

/* -- Filters -- */
.page-filters { margin-bottom: 0; }
.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
}
.filter-group:last-child { margin-bottom: 0; }
.filter-label {
  min-width: 88px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
a.gallery-filter { text-decoration: none; }

/* -- Card Grid -- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* -- Festival Cards -- */
.fest-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease);
}
.fest-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-lg);
}
.fest-card-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2);
}
.fest-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.fest-card:hover .fest-card-img img { transform: scale(1.06); }
.fest-card-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.fest-card-img .fest-card-badge { position: absolute; top: 12px; left: 12px; }
.fest-card-badge--upcoming { background: rgba(30,120,70,0.15); color: #1e7846; }
.fest-card-badge--ongoing { background: rgba(200,140,30,0.15); color: var(--gold); }
.fest-card-badge--past { background: rgba(100,100,100,0.12); color: #666; }
.fest-card-badge--cancelled { background: rgba(180,50,50,0.12); color: #b43232; }
.fest-card-body { padding: 1.35rem 1.5rem 1.55rem; flex: 1; display: flex; flex-direction: column; }
.fest-card-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}
.fest-card-meta {
  display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.6rem;
}
.fest-card-excerpt { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; margin-bottom: 0.8rem; flex: 1; }
.fest-card-region {
  font-size: 0.72rem; color: var(--gold); font-weight: 500;
  border: 1px solid rgba(201,161,74,0.3); padding: 3px 10px; border-radius: 100px;
  align-self: flex-start;
}

/* -- Event Cards -- */
.event-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease);
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-lg);
}
.event-card:not(:has(.event-card-img)) .event-card-body {
  padding-top: 1.6rem;
  background:
    linear-gradient(180deg, rgba(232, 240, 230, 0.9), rgba(255, 255, 255, 0.95));
}
.event-card:not(:has(.event-card-img)) .event-card-body::before {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green-2));
}
.event-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-card-body { padding: 1.35rem 1.5rem 1.55rem; }
.event-card-type {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  background: rgba(201,161,74,0.12); color: var(--gold); margin-bottom: 0.5rem;
}
.event-card-title {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}
.event-card-festival { font-size: 0.78rem; color: var(--gold); margin-top: 0.5rem; display: block; }
.event-card-capacity { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.3rem; display: block; }

/* -- News Cards (page) -- */
.news-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.news-page-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease);
}
.news-card-link:hover .news-page-card {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-lg);
}
.news-page-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2); }
.news-page-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.news-card-link:hover .news-page-card-img img { transform: scale(1.06); }
.news-page-card-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  background: var(--cat-color, #c9a14a); color: #fff;
}
.news-page-card-body { padding: 1.2rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.news-page-card-body h3 {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}
.news-page-card-body p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; flex: 1; }
.news-page-card-footer {
  display: flex; gap: 6px; font-size: 0.78rem; color: var(--text-dim); margin-top: 0.8rem; padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

/* -- Article Page -- */
.article-page { max-width: 860px; margin-left: auto; margin-right: auto; }
.article-page .container { max-width: 860px; }
.article-header {
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.article-header h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.article-cat {
  display: inline-block; padding: 4px 14px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  background: var(--cat-color, #c9a14a); color: #fff; margin-bottom: 1rem;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; color: var(--text-dim); }
.article-cover { margin-bottom: 2rem; border-radius: 14px; overflow: hidden; }
.article-cover img { width: 100%; display: block; }
.prose { font-size: 1rem; line-height: 1.75; color: var(--text); }
.prose p { margin-bottom: 1.2rem; }
.prose h2, .prose h3 { margin-top: 2rem; margin-bottom: 0.8rem; }
.prose img { max-width: 100%; border-radius: 10px; margin: 1.5rem 0; }
.prose blockquote {
  border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--bg-2); border-radius: 0 10px 10px 0; font-style: italic;
}
.related-articles { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.related-articles h3 { margin-bottom: 1.5rem; }

/* -- Detail Pages (festival) -- */
.detail-banner {
  height: clamp(240px, 38vw, 420px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.detail-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,14,12,0.18), rgba(15,14,12,0.78));
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3rem;
  align-items: start;
}
.detail-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0.6rem 0 0.5rem;
}
.detail-subtitle { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.detail-body { margin-bottom: 2rem; }
.detail-section { margin-top: 2.5rem; }
.detail-section h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.detail-poster {
  width: 100%; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 1.5rem;
}
.detail-info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.detail-info-card h4 { margin-bottom: 1rem; font-size: 0.95rem; }
.detail-dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; font-size: 0.88rem; }
.detail-dl dt { font-weight: 600; color: var(--text-dim); }
.detail-dl dd { margin: 0; }
.detail-contact-link {
  display: block; margin-top: 0.6rem; font-size: 0.85rem; color: var(--gold); text-decoration: none;
}
.detail-contact-link:hover { text-decoration: underline; }
.detail-video { margin-top: 2rem; }
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mini-events { display: flex; flex-direction: column; gap: 12px; }
.mini-event-card {
  padding: 1rem 1.2rem; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-2);
}
.mini-event-type {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; display: block;
}
.mini-event-card h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }

/* -- Palmares Page -- */
.palmares-category {
  margin-bottom: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}
.palmares-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.palmares-icon {
  color: var(--gold);
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-light);
}
.palmares-table { display: flex; flex-direction: column; gap: 10px; }
.palmares-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--bg-cream), #fff);
  border: 1px solid var(--line);
  align-items: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.palmares-row:hover {
  transform: translateX(4px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-sm);
}
.palmares-prize-name { font-weight: 600; font-size: 0.9rem; }
.palmares-details { display: flex; flex-direction: column; gap: 2px; }
.palmares-film { font-weight: 500; font-size: 0.88rem; font-style: italic; }
.palmares-person { font-size: 0.82rem; color: var(--text-dim); }
.palmares-country { font-size: 0.82rem; color: var(--gold); font-weight: 500; text-align: right; }

/* -- Album Grid (mediatheque) -- */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.album-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease);
}
.album-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-lg);
}
.album-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2); }
.album-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.album-card:hover .album-card-img img { transform: scale(1.06); }
.album-card-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-dim);
}
.album-card-count {
  position: absolute; bottom: 10px; right: 10px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 0.75rem; font-weight: 500;
  backdrop-filter: blur(6px);
}
.album-card-body { padding: 1rem 1.2rem; }
.album-card-body h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.album-card-body p { font-size: 0.82rem; color: var(--text-dim); }

/* -- Pagination -- */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3.5rem;
}
.pagination a, .pagination span {
  min-width: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s var(--ease);
}
.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-1px);
}
.pagination .current {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* -- Responsive (pages) -- */
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { order: -1; }
  .detail-poster { max-width: 300px; }
  .palmares-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .palmares-country { text-align: left; }
}
@media (max-width: 600px) {
  .page-hero { padding: 6.5rem 0 2.5rem; }
  .page-toolbar { padding: 1rem; }
  .filter-label { width: 100%; margin-bottom: 0.2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .article-header h1 { font-size: 1.5rem; }
  .detail-title { font-size: 1.5rem; }
  .detail-banner { height: 220px; }
}

/* ═════════════════ FOOTER ═════════════════ */
.footer {
  background: linear-gradient(180deg, var(--bg-green) 0%, var(--bg-green-deep) 100%);
  color: #fff;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-2), var(--gold));
}
.footer::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.1), transparent 60%);
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer .brand { color: #fff; }
.footer .brand-name { color: var(--gold); }
.footer .brand-tag { color: rgba(255,255,255,0.5); }
.footer .brand-mark { color: var(--gold); }
.footer-pitch {
  margin-top: 24px;
  font-family: var(--display);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col li a {
  color: rgba(255,255,255,0.7); font-size: 14px;
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--gold); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }

.newsletter {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  overflow: hidden;
}
.newsletter input {
  flex: 1; background: transparent; border: 0;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px; outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter button {
  padding: 0 20px;
  background: var(--gold);
  color: var(--bg-green);
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s;
}
.newsletter button:hover { background: var(--gold-2); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: var(--gold); }

/* ═════════════════ WHATSAPP FLOAT ═════════════════ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: transform 0.3s var(--ease);
  animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes waBounce {
  0%, 90%, 100% { transform: translateY(0); }
  95% { transform: translateY(-4px); }
}

/* ═════════════════ RESPONSIVE ═════════════════ */

/* ─── Tablette large (≤ 1280px) ─── */
@media (max-width: 1280px) {
  :root {
    --section-pad: clamp(60px, 8vw, 110px);
  }
  .hero { padding: 130px clamp(24px, 5vw, 64px) 50px; }
  .news-grid { gap: 20px; }
}

/* ─── Tablette (≤ 1024px) ─── */
@media (max-width: 1024px) {
  :root {
    --section-pad: clamp(56px, 7vw, 90px);
    --pad-x: clamp(20px, 3.5vw, 40px);
  }

  /* Navigation */
  .nav-inner { gap: 16px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 13px; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 120px var(--pad-x) 100px;
    min-height: auto;
    gap: 40px;
  }
  .hero-side {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .hero-card { max-width: 100%; width: 100%; }
  .hero-title { font-size: clamp(40px, 8vw, 72px); }
  .hero-quickstats { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
  .hero-marquee { padding: 18px 0; }
  .hero-marquee-track { font-size: 18px; gap: 28px; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats { padding: 50px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-quote { position: static; padding: 40px 32px; }
  .lede { font-size: 18px; padding-left: 18px; }
  .pillar { grid-template-columns: 50px 1fr; gap: 18px; }
  .pillar-num { font-size: 28px; }

  /* Festivals */
  .festival-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .festival-body { padding: 22px; }
  .festival-body h3 { font-size: 24px; }

  /* President */
  .president-grid { grid-template-columns: 1fr; gap: 50px; }
  .president-photo { max-width: 320px; margin-inline: auto; }
  .president-content { text-align: center; }
  .president-quote-mark { display: none; }
  .president-content p { margin-inline: auto; }
  .president-signature { margin-inline: auto; }

  /* Palmares */
  .palmares-table { font-size: 14px; }
  .palmares-table th, .palmares-table td { padding: 14px 20px; }

  /* Timeline */
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 36px; }
  .timeline-item::before { left: 75px; }
  .timeline-date .day { font-size: 40px; }

  /* News */
  .news-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .news-card-feature { grid-row: span 1; grid-column: span 2; }
  .news-card-feature .news-img { min-height: 280px; }

  /* Régions */
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 24px; }

  /* Partenaires */
  .partners-grid { grid-template-columns: repeat(4, 1fr); }

  /* Testimonial */
  .testimonial-quote p { font-size: clamp(20px, 3vw, 32px); }
  .testimonial-quote svg { width: 48px; height: 48px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form { padding: 36px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 50px; }
  .footer { padding-top: 60px; }

  /* WhatsApp float */
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* ─── Mobile (≤ 768px) ─── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  :root {
    --section-pad: clamp(48px, 12vw, 72px);
    --pad-x: 18px;
  }

  /* Navigation mobile */
  .nav-wrap { padding: 14px 0; }
  .nav-wrap.is-scrolled { padding: 10px 0; }
  .nav-inner { padding-inline: var(--pad-x); }
  .brand-name { font-size: 18px; }
  .brand-tag { font-size: 9px; }
  .brand-mark { width: 38px; height: 38px; }

  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { max-height: calc(100vh - 64px); padding: 12px 0; overflow-y: auto; }
  .nav-links a {
    padding: 14px var(--pad-x);
    border-top: 1px solid var(--line);
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav-cta .btn-ghost { display: none; }

  /* Hero */
  .hero { padding: 100px var(--pad-x) 80px; gap: 30px; }
  .hero-meta {
    font-size: 10px;
    padding: 8px 14px 8px 10px;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
    gap: 8px;
  }
  .hero-meta-live { font-size: 9px; padding: 2px 7px; }
  .hero-title {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1;
    margin-bottom: 22px;
  }
  .hero-lead { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { gap: 10px; margin-bottom: 36px; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-quickstats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
    padding: 20px 0;
    margin-bottom: 36px;
  }
  .hero-quickstat { padding-inline: 14px; }
  .hero-quickstat:nth-child(2)::after { display: none; }
  .hero-quickstat:first-child { padding-left: 14px; }
  .hero-qs-num { font-size: 26px; }
  .hero-qs-label { font-size: 9px; letter-spacing: 0.16em; }

  .hero-card-poster { height: 140px; }
  .hero-card-trophy { width: 64px; height: 64px; }
  .hero-card-trophy svg { width: 30px; height: 30px; }
  .hero-card-poster-edition { font-size: 42px; }
  .hero-card-body { padding: 22px; }
  .hero-card-title { font-size: 24px; }
  .hero-card-desc { font-size: 13px; }

  .hero-marquee { display: none; }
  .btn { padding: 13px 22px; font-size: 12px; }

  /* Section heads */
  .section-head { margin-bottom: 50px; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-title { font-size: clamp(28px, 7vw, 42px); line-height: 1.05; }
  .eyebrow { font-size: 11px; margin-bottom: 14px; }

  /* Stats */
  .stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat { padding-left: 16px; }
  .stat-num { font-size: 36px; margin-bottom: 8px; }
  .stat-label { font-size: 10px; letter-spacing: 0.16em; }

  /* About */
  .lede { font-size: 17px; margin-bottom: 36px; }
  .pillars { gap: 28px; }
  .pillar { grid-template-columns: 44px 1fr; gap: 16px; }
  .pillar-num { font-size: 24px; padding-top: 6px; }
  .pillar h3 { font-size: 19px; }
  .pillar p { font-size: 14px; }

  .about-quote { padding: 32px 24px; border-radius: 14px; }
  .quote-mark { font-size: 80px; top: 12px; left: 24px; }
  .about-quote blockquote { font-size: 17px; margin: 40px 0 24px; line-height: 1.45; }

  /* President */
  .president { padding-block: clamp(60px, 14vw, 100px); }
  .president-grid { gap: 40px; }
  .president-photo { max-width: 280px; }
  .president-photo-frame::after { top: -10px; left: -10px; right: -10px; bottom: -10px; border-radius: 22px; }
  .president-photo-badge {
    bottom: -14px; right: -14px;
    padding: 12px 16px;
    border-radius: 10px;
    gap: 10px;
  }
  .president-photo-badge-mark { font-size: 22px; }
  .president-photo-badge-text { font-size: 9px; }
  .president-photo-badge-text strong { font-size: 12px; }
  .president-lead { font-size: 17px; margin-bottom: 18px; }
  .president-content p { font-size: 15px; line-height: 1.7; }
  .president-signature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 24px;
  }

  /* Festivals */
  .festival-grid { grid-template-columns: 1fr; gap: 18px; }
  .festival-body { padding: 20px; }
  .festival-body h3 { font-size: 22px; }
  .festival-body p { font-size: 13px; }
  .festival-img { aspect-ratio: 16/10; }
  .festival-year { font-size: 42px; }
  .filters { width: 100%; overflow-x: auto; padding-bottom: 6px; gap: 6px; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .filter { white-space: nowrap; flex-shrink: 0; font-size: 11px; padding: 7px 14px; }

  /* Palmarès — table en cartes */
  .palmares { padding-block: clamp(56px, 14vw, 90px); }
  .palmares-cat { border-radius: 12px; }
  .palmares-cat-header { padding: 16px 20px; }
  .palmares-cat-header h3 { font-size: 17px; }
  .palmares-table thead { display: none; }
  .palmares-table, .palmares-table tbody, .palmares-table tr, .palmares-table td { display: block; }
  .palmares-table tr {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .palmares-table tr:last-child { border-bottom: none; }
  .palmares-table td { padding: 4px 0; border: none; font-size: 14px; }
  .palmares-prize {
    font-size: 11px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .palmares-film { font-size: 16px !important; }

  /* Timeline */
  .timeline::before { left: 56px; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 24px; padding: 24px 0; }
  .timeline-item::before { left: 51px; top: 44px; width: 13px; height: 13px; }
  .timeline-date .day { font-size: 32px; }
  .timeline-date .month { font-size: 10px; }
  .timeline-body h3 { font-size: 20px; }
  .timeline-body p { font-size: 14px; }
  .timeline-meta { font-size: 11px; }

  /* News */
  .news-grid { grid-template-columns: 1fr; gap: 16px; }
  .news-card-feature { grid-column: span 1; }
  .news-card-feature .news-img { min-height: 220px; }
  .news-card-feature .news-body { padding: 24px; }
  .news-card-feature .news-body h3 { font-size: 22px; }
  .news-img { min-height: 180px; }
  .news-body { padding: 20px; }
  .news-body h3 { font-size: 17px; }

  /* Régions */
  .regions-grid { grid-template-columns: 1fr; gap: 16px; }
  .regions-stats { padding: 20px 18px; gap: 18px; }
  .legend-stat { padding-left: 14px; }
  .legend-stat strong { font-size: 32px; }
  .legend-stat span { font-size: 10px; }
  .region-card { padding: 22px 20px; }
  .region-card h3 { font-size: 24px; }

  /* Partenaires */
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-cell { aspect-ratio: 2/1; font-size: 14px; padding: 12px; }

  /* Testimonial */
  .testimonial-quote svg { width: 40px; height: 40px; margin-bottom: 24px; }
  .testimonial-quote p { font-size: 18px; margin-bottom: 28px; }

  /* Contact */
  .contact-form { padding: 28px 22px; border-radius: 14px; }
  .contact-form h3 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-form input, .contact-form textarea { padding: 12px 14px; font-size: 14px; }

  .contact-info p { font-size: 14px; margin: 18px 0 28px; }
  .contact-meta { gap: 18px; margin-bottom: 28px; }
  .contact-icon { width: 36px; height: 36px; font-size: 16px; }
  .contact-row a, .contact-row span { font-size: 14px; }
  .socials a { width: 40px; height: 40px; }

  /* Footer */
  .footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-brand .brand { justify-content: flex-start; }
  .footer-pitch { max-width: none; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; font-size: 11px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  /* WhatsApp float */
  .wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 18px; height: 18px; }

  /* Preloader */
  .preloader-mark { font-size: 44px; }
}

/* ─── Mobile petit (≤ 480px) ─── */
@media (max-width: 480px) {
  :root { --pad-x: 14px; }
  .hero { padding: 90px var(--pad-x) 24px; }
  .hero-title { font-size: clamp(30px, 9.5vw, 38px); }
  .hero-lead { font-size: 14px; }
  .section-title { font-size: clamp(24px, 7vw, 34px); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 30px; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .partner-cell { font-size: 13px; }

  .president-photo { max-width: 240px; }
  .president-photo-badge { bottom: -10px; right: -10px; padding: 10px 14px; }
  .president-photo-badge-text { font-size: 8px; }

  .palmares-cat-header h3 { font-size: 15px; }
  .palmares-table tr { padding: 14px 16px; }

  .contact-form { padding: 22px 18px; }
  .timeline-date .day { font-size: 28px; }

  .btn { font-size: 11px; padding: 12px 18px; }
}

/* ─── Désactive les animations lourdes sur tablette/mobile pour la perf ─── */
@media (max-width: 1024px) {
  .hero-bg { background-attachment: scroll !important; }
}

/* ─── Accessibilité : respecte le souhait de réduction d'animations ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═════════════════ REVEAL ON SCROLL ═════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
