/* ==========================================================================
   AVATAR-AFRICA — Site vitrine — Styles
   ========================================================================== */

:root {
  --cream: #FBF7EE;
  --cream-text: #2A2420;
  --navy: #16223E;
  --navy-light: #1E2E54;
  --navy-border: #37497A;
  --navy-dark: #0B1220;
  --gold: #D4AA55;
  --gold-dark: #A87C2E;
  --red: #8B1220;
  --text-light: #F3E9D2;
  --text-body: #D8CCB4;
  --text-muted: #4A4038;
  --text-muted-2: #8A7F70;
  --text-muted-3: #6A6054;
  --text-muted-gold: #B8AB93;
  --text-muted-4: #9C9080;
  --border: #D8CCB4;
  --pink: #E9C6C6;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--cream-text);
  font-family: var(--font-sans);
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::selection { background: var(--gold); color: var(--navy); }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--gold); }

img { display: block; max-width: 100%; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow--red { color: var(--red); }
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  margin: 0;
}
.section-title--light { color: var(--text-light); }
.section-title--navy { color: var(--navy); }

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 8px;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
}
.btn--outline {
  border: 1px solid var(--text-light);
  color: var(--text-light);
}
.btn--dark {
  background: var(--navy-dark);
  color: var(--text-light);
  border: 1px solid var(--navy-border);
}
.btn--dark:hover { color: var(--gold); }

/* Image placeholder slots — replace with a real <img> once photos are ready */
.img-slot {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted-2);
  background: repeating-linear-gradient(
    45deg,
    #eee2c8,
    #eee2c8 10px,
    #e3d5b0 10px,
    #e3d5b0 20px
  );
}
.img-slot--circle { border-radius: 50%; overflow: hidden; }
.img-slot--rounded { border-radius: 12px; overflow: hidden; }

/* ==========================================================================
   NAV
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(22, 34, 62, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gold-dark);
}

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { width: 46px; height: 46px; flex-shrink: 0; }
.nav-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  line-height: 1.2;
}
.nav-subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.nav-links-desktop { display: flex; align-items: center; gap: 30px; }
.nav-links-desktop a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-light);
}
.nav-cta {
  padding: 10px 22px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 8px;
}

/* Nav dropdowns (Memorandum, Médiathèque) */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-light);
  padding: 0;
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 10px;
  color: var(--gold);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 18px;
  min-width: 170px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  padding: 8px 0;
  z-index: 10;
}
.nav-links-desktop .nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--navy); color: var(--gold); }

.mobile-menu .nav-item-dropdown { display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .nav-dropdown-menu {
  display: none;
  position: static;
  margin: 4px 0 0;
  background: transparent;
  border: none;
  border-left: 1px solid var(--navy-border);
  padding-left: 14px;
}
.mobile-menu .nav-item-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; gap: 12px; }

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  width: 20px;
  height: 2px;
  background: var(--text-light);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--gold-dark);
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--text-light); }
.mobile-menu .nav-cta { text-align: center; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background: var(--navy);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--navy) 30%, rgba(43,29,20,0.55) 70%, rgba(43,29,20,0.85));
}
.hero-content { position: relative; max-width: 680px; z-index: 2; }
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1.08;
  color: #F8F1E0;
  margin: 0 0 22px;
  font-weight: 600;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   INFOLINE BAND
   ========================================================================== */

.infoline-band {
  background: var(--navy-dark);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.infoline-track {
  display: inline-block;
  padding-left: 100%;
  animation: infoline-scroll 28s linear infinite;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--gold);
}
@keyframes infoline-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */

.stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--red);
  padding: 26px 48px;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--text-light);
  font-weight: 700;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-top: 4px;
}

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */

.section { padding: 110px 48px; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p {
  font-size: 16px;
  max-width: 600px;
  margin: 18px auto 0;
  line-height: 1.7;
}

/* MISSION */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.mission-heading {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 600;
}
.mission-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mission-pillar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
}
.mission-pillar-desc {
  font-size: 13px;
  color: var(--text-muted-2);
  margin-top: 4px;
}
.mission-photo-wrap { position: relative; }
.mission-photo { width: 100%; aspect-ratio: 4/5; }
.mission-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  padding: 22px 26px;
  border: 1px solid var(--gold);
  max-width: 230px;
}
.mission-badge-year {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
}
.mission-badge-text { font-size: 12px; color: var(--text-body); margin-top: 2px; }

/* AWARDS */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy-border);
}
.award-card { background: var(--navy-light); padding: 38px 32px; }
.award-star { color: var(--gold); font-size: 22px; margin-bottom: 18px; }
.award-title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.award-desc { font-size: 14px; color: var(--text-muted-4); line-height: 1.6; }

.laureates-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #F8F1E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}
.laureates-grid {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.laureate { text-align: center; width: 150px; }
.laureate-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  padding: 4px;
}
.laureate-name { font-size: 14.5px; color: var(--text-light); font-weight: 700; }
.laureate-category { font-size: 12px; color: var(--gold); margin-top: 3px; }

/* EVENEMENTS */

.gala-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 0;
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.gala-photo { aspect-ratio: 4/3; min-width: 0; }
.gala-details {
  background: var(--navy);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gala-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: var(--red);
  margin-bottom: 6px;
}
.gala-tagline {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 28px;
}
.gala-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.gala-info-label { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted-2); }
.gala-info-value { font-size: 15px; color: var(--text-light); margin-top: 4px; }
.gala-prices { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.gala-price {
  padding: 8px 16px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  font-size: 12.5px;
  color: var(--text-body);
}

/* ACTUALITES */

.news-card { border: 1px solid var(--border); background: #fff; }
.news-image { aspect-ratio: 16/10; }
.news-body { padding: 26px; }
.news-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
}
.news-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-excerpt { font-size: 14px; color: var(--text-muted-3); line-height: 1.6; }

/* GALERIE */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item { aspect-ratio: 1/1; }

/* PARTENAIRES */

.section--partners {
  padding: 80px 48px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-muted-2);
  font-weight: 700;
  margin-bottom: 36px;
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.partner-logo { width: 130px; height: 60px; opacity: 0.85; }

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-heading {
  font-family: var(--font-serif);
  font-size: 34px;
  color: #F8F1E0;
  margin: 0 0 24px;
  font-weight: 600;
}
.contact-text { font-size: 15px; color: var(--text-muted-gold); line-height: 1.8; margin: 0 0 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-label { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted-2); }
.contact-value { font-size: 15px; color: var(--text-light); margin-top: 4px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px 16px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  color: var(--text-light);
  font-size: 14px;
  font-family: var(--font-sans);
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.form-feedback {
  font-size: 13px;
  color: var(--gold);
  display: none;
}
.form-feedback.visible { display: block; }

/* FOOTER */

.site-footer {
  padding: 40px 48px;
  background: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 32px; height: 32px; }
.footer-copy { font-size: 12.5px; color: var(--text-muted-2); }
.footer-social { display: flex; gap: 24px; }
.footer-social a { font-size: 13px; color: var(--text-muted-gold); }

/* ==========================================================================
   PAGE BANNER (pages secondaires)
   ========================================================================== */

.page-banner {
  padding: 64px 48px;
  background: var(--navy);
  border-bottom: 1px solid var(--gold-dark);
  text-align: center;
}
.page-banner-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-banner h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: #F8F1E0;
  font-weight: 600;
  margin: 0 0 14px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted-gold);
}
.breadcrumb a { color: var(--text-muted-gold); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--navy-border); }

/* ==========================================================================
   ARTICLE CONTENT (à propos, mot du président, memorandum)
   ========================================================================== */

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.article-photo { width: 100%; aspect-ratio: 4/5; }
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 20px;
}
.article-body--dark h2 { color: #F8F1E0; }
.article-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.article-body--dark p { color: var(--text-body); }
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.85;
}
.article-body--dark ol { color: var(--text-body); }
.article-body ol ol { margin-top: 8px; margin-bottom: 0; }
.article-body li { margin-bottom: 8px; }
.article-block { max-width: 900px; margin: 0 auto 64px; text-align: center; }
.article-block h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 16px;
}
.article-block p { font-size: 15.5px; line-height: 1.8; color: var(--text-muted); }
.article-subblock { max-width: 820px; margin: 0 auto 56px; }
.article-subblock h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px;
}
.article-subblock-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--red);
  display: block;
  margin: 24px 0 8px;
}
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.signoff {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-body);
  margin-top: 24px;
}

/* ==========================================================================
   EQUIPE
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 14px;
}
.team-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
}
.team-role { font-size: 12.5px; color: var(--gold); margin-top: 3px; }

/* ==========================================================================
   ACTUALITES / MEDIATHEQUE
   ========================================================================== */

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.media-card { border: 1px solid var(--border); background: #fff; }
.media-thumb { aspect-ratio: 16/10; }
.media-body { padding: 22px; }
.media-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
  border: 1px solid var(--red);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.media-title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.35;
}
.video-thumb { aspect-ratio: 16/9; position: relative; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted-2);
}

.empty-state {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 24px;
  border: 1px dashed var(--navy-border);
  color: var(--text-muted-gold);
  font-size: 14px;
  line-height: 1.7;
}

/* ==========================================================================
   ENROLEMENT (formulaire)
   ========================================================================== */

.enrol-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.enrol-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.enrol-row--2 { grid-template-columns: 1fr 1fr; }
.enrol-form input,
.enrol-form textarea {
  padding: 15px 16px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  color: var(--text-light);
  font-size: 14px;
  font-family: var(--font-sans);
  width: 100%;
}
.enrol-form textarea { resize: vertical; }
.enrol-form button {
  align-self: center;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ==========================================================================
   HERO V2 (photo + widget + cartes stats flottantes)
   ========================================================================== */

.hero-v2 {
  position: relative;
  min-height: 620px;
  padding: 110px 48px 130px;
  overflow: hidden;
  background: var(--navy);
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-v2-bg .img-slot {
  background: repeating-linear-gradient(45deg, #1c2c4d, #1c2c4d 10px, #16233d 10px, #16233d 20px);
  color: var(--text-muted-gold);
}
.hero-v2-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, var(--navy) 25%, rgba(27,42,78,0.55) 60%, rgba(11,18,32,0.35));
}
.hero-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.hero-v2-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-v2-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.12;
  color: #F8F1E0;
  font-weight: 600;
  margin: 0 0 20px;
}
.hero-v2-title em { color: var(--gold); font-style: italic; }
.hero-v2-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-widget {
  background: rgba(40, 55, 95, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 28px 26px;
}
.hero-widget-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.hero-widget h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: #F8F1E0;
  font-weight: 600;
  margin: 0 0 10px;
}
.hero-widget p {
  font-size: 13.5px;
  color: var(--text-muted-gold);
  line-height: 1.6;
  margin: 0 0 14px;
}
.hero-widget a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.stats-cards {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: -64px auto 0;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: rgba(40, 55, 95, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 16px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(11, 18, 32, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.stat-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.stat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.stat-card:nth-child(1) .stat-card-icon { background: rgba(126, 154, 217, 0.18); color: #9DB6E8; }
.stat-card:nth-child(2) .stat-card-icon { background: rgba(201, 169, 97, 0.18); color: var(--gold); }
.stat-card:nth-child(3) .stat-card-icon { background: rgba(155, 126, 217, 0.18); color: #C1AAE8; }
.stat-card:nth-child(4) .stat-card-icon { background: rgba(217, 126, 145, 0.18); color: #E8A3B4; }
.stat-card-value {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1;
}
.stat-card-label {
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--text-muted-gold);
  margin-top: 5px;
}

/* ==========================================================================
   CATEGORY GRID (Awards, v2)
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.category-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.category-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.category-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.category-desc { font-size: 13px; color: var(--text-muted-4); line-height: 1.5; }
.category-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   GALA BANNER (v2)
   ========================================================================== */

.gala-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.gala-banner .img-slot { position: absolute; inset: 0; }
.gala-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,18,32,0.92) 10%, rgba(11,18,32,0.35) 55%, rgba(11,18,32,0.1));
}
.gala-banner-content { position: relative; z-index: 2; padding: 40px; max-width: 640px; }
.gala-banner-content h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: #F8F1E0;
  font-weight: 600;
  margin: 0 0 14px;
}
.gala-banner-content p { font-size: 15px; color: var(--text-body); line-height: 1.6; margin: 0 0 20px; }
.gala-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 24px; }
.gala-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-light); }
.gala-meta-icon { color: var(--gold); }

/* ==========================================================================
   EDITIONS TIMELINE
   ========================================================================== */

.timeline-wrap { padding: 40px 0 10px; overflow-x: auto; }
.timeline-track {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 5% 10px;
  min-width: 100%;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--navy-border);
}
.timeline-item { text-align: center; flex-shrink: 0; width: 84px; }
.timeline-year {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-muted-2);
  font-weight: 600;
  margin-bottom: 14px;
}
.timeline-item--active .timeline-year { color: var(--gold); font-size: 16px; }
.timeline-photo {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--navy-border);
}
.timeline-item--active .timeline-photo { width: 80px; height: 80px; border-color: var(--gold); }

/* ==========================================================================
   TEAM CAROUSEL
   ========================================================================== */

.team-carousel-wrap { position: relative; }
.team-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.team-carousel::-webkit-scrollbar { display: none; }
.team-carousel-card {
  position: relative;
  flex: 0 0 200px;
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
}
.team-carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 16px;
  background: linear-gradient(0deg, rgba(11,18,32,0.9), rgba(11,18,32,0));
}
.team-carousel-name { font-family: var(--font-serif); font-size: 14.5px; color: #fff; font-weight: 600; }
.team-carousel-role { font-size: 11.5px; color: var(--gold); margin-top: 2px; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.carousel-btn--prev { left: -8px; }
.carousel-btn--next { right: -8px; }

/* ==========================================================================
   GALERIE + ACTUALITES (split)
   ========================================================================== */

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mosaic-grid .gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.news-list { display: flex; flex-direction: column; gap: 18px; }
.news-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.news-row-thumb { width: 84px; height: 64px; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
.news-row-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}
.news-row-date { font-size: 12px; color: var(--text-muted-2); }

/* ==========================================================================
   PARTNERS STRIP
   ========================================================================== */

.partners-strip-wrap { position: relative; }
.partners-strip {
  display: flex;
  align-items: center;
  gap: 56px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 4px;
}
.partners-strip::-webkit-scrollbar { display: none; }
.partners-strip .partner-logo { flex-shrink: 0; }

/* ==========================================================================
   FOOTER V2
   ========================================================================== */

.footer-v2 {
  background: var(--navy-dark);
  padding: 64px 48px 0;
}
.footer-v2-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-v2-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-v2 p { font-size: 13px; color: var(--text-muted-2); line-height: 1.7; }
.footer-v2-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-v2-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-gold);
  font-size: 13px;
}
.footer-v2-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-v2 h4 {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 700;
  margin: 0 0 18px;
}
.footer-v2-links { display: flex; flex-direction: column; gap: 12px; }
.footer-v2-links a { font-size: 13.5px; color: var(--text-muted-2); }
.footer-v2-links a:hover { color: var(--gold); }
.footer-v2-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.footer-v2-contact-item { font-size: 13.5px; color: var(--text-muted-2); display: flex; gap: 8px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  color: var(--text-light);
  font-size: 13px;
  font-family: var(--font-sans);
}
.newsletter-form button {
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.footer-v2-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 22px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted-2);
}
.footer-v2-bottom a { color: var(--text-muted-2); margin-left: 20px; }
.footer-v2-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .nav-links-desktop { display: none !important; }
  .hamburger-btn { display: flex !important; }
  .site-nav { padding: 14px 20px !important; }
  .section { padding: 64px 24px !important; }
  .section--partners { padding: 64px 24px !important; }
  .hero { padding: 56px 24px !important; }
  .hero-title { font-size: 36px !important; }
  .grid-2, .grid-3, .contact-grid, .gala-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .mission-badge { position: static !important; margin-top: 16px !important; max-width: none !important; }
  .site-footer { flex-direction: column !important; text-align: center !important; }
  .article-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .media-grid { grid-template-columns: 1fr !important; }
  .enrol-row, .enrol-row--2 { grid-template-columns: 1fr !important; }
  .page-banner { padding: 48px 24px !important; }

  .hero-v2 { padding: 88px 20px 150px !important; }
  .hero-v2-inner { grid-template-columns: 1fr !important; }
  .hero-v2-title { font-size: 32px !important; }
  .stats-cards { grid-template-columns: 1fr 1fr !important; padding: 0 20px !important; margin-top: -90px !important; }
  .category-grid { grid-template-columns: 1fr 1fr !important; }
  .gala-banner-content { padding: 28px 20px !important; }
  .split-grid { grid-template-columns: 1fr !important; }
  .footer-v2-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-v2 { padding: 48px 20px 0 !important; }
}

@media (max-width: 600px) {
  .stats-cards { grid-template-columns: 1fr !important; }
  .stat-card { background: var(--navy-light) !important; backdrop-filter: none !important; }
  .category-grid { grid-template-columns: 1fr !important; }
  .footer-v2-grid { grid-template-columns: 1fr !important; }
  .mosaic-grid .gallery-item:first-child { grid-column: span 2 !important; }
  .mission-pillars { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 28px !important; }
  .stat-item { min-width: 44% !important; border-left: none !important; margin-bottom: 16px; }
}
