/* ─────────────────────────────────────────────
   CCV — Feuille de styles principale
   ───────────────────────────────────────────── */

:root {
  --blue:       #125687;
  --blue-dark:  #0d3d5e;
  --blue-deep:  #081f30;
  --blue-mid:   #1a6aa0;
  --blue-light: #d4e8f5;
  --blue-pale:  #f0f7fc;
  --white:      #ffffff;
  --gray-100:   #f5f6f7;
  --gray-200:   #e8eaed;
  --gray-400:   #9aa3ad;
  --gray-600:   #5a6370;
  --gray-900:   #1a1f25;
  --font: 'Plus Jakarta Sans', 'Aptos', 'Calibri', sans-serif;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── UTILS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  text-decoration: none; transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn-white:hover { background: var(--blue-light); border-color: var(--blue-light); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-pale); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-deep); color: rgba(255,255,255,.7);
  font-size: 13px; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; justify-content: flex-end; gap: 24px; align-items: center; }
.topbar a { color: rgba(255,255,255,.7); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.topbar a:hover { color: #fff; }

/* ── NAV ── */
nav.site-nav {
  background: var(--blue); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(8,31,48,.35);
}
.nav-inner { display: flex; align-items: center; height: 68px; position: relative; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { color: #fff; line-height: 1.2; }
.nav-logo-text strong { display: block; font-size: 16px; font-weight: 700; }
.nav-logo-text span { font-size: 12px; opacity: .75; font-weight: 400; }
.nav-links { display: flex; align-items: center; }
.nav-links ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; position: relative; }
.nav-links a {
  color: rgba(255,255,255,.88); text-decoration: none;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; transition: all .15s; display: block;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a { color: #fff; background: rgba(255,255,255,.16); }

/* ── BARRE SECONDAIRE (optionnelle) ── */
.secondary-nav {
  background: var(--blue-dark); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0;
}
.secondary-nav ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.secondary-nav li { list-style: none; }
.secondary-nav a {
  display: block; color: rgba(255,255,255,.65); text-decoration: none;
  padding: 8px 16px; font-size: 13px; font-weight: 500; transition: all .15s;
  border-right: 1px solid rgba(255,255,255,.08);
}
.secondary-nav a:hover,
.secondary-nav .current-menu-item > a { color: #fff; background: rgba(255,255,255,.08); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: #fff; flex-direction: column; gap: 5px;
  margin-left: 12px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px; transition: all .2s;
}

/* ── HERO (accueil) ── */
.hero {
  background: var(--blue-deep);
  min-height: 560px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-content {
  padding: 72px 0 72px 0;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  padding-left: max(32px, calc((100vw - 1160px) / 2 + 32px));
  padding-right: 48px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue-light); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--blue-light); }
.hero h1 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  line-height: 1.1; color: #fff; margin-bottom: 20px; text-wrap: pretty;
}
.hero h1 em { color: var(--blue-light); font-style: normal; }
.hero-desc { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { position: relative; overflow: hidden; }
.hero-image::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
  background: linear-gradient(to right, var(--blue-deep) 0%, rgba(8,31,48,.1) 40%, transparent 100%);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; display: block; }

/* ── PAGE HERO (sous-pages) ── */
.page-hero {
  background: var(--blue-deep); color: #fff;
  padding: 56px 0 64px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -120px; top: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(26,106,160,.35) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.page-hero .hero-eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 14px; max-width: 800px;
}
.page-hero .lede { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.78); max-width: 680px; }

/* ── ACTION CARDS (accueil) ── */
.action-cards { background: var(--white); box-shadow: 0 8px 40px rgba(18,86,135,.12); position: relative; z-index: 3; }
.action-cards-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; border-left: 1px solid var(--gray-200); }
.action-card {
  padding: 40px 36px; border-right: 1px solid var(--gray-200);
  border-bottom: 3px solid transparent; transition: all .22s ease;
  cursor: pointer; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.action-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transition: transform .22s ease; transform-origin: left;
}
.action-card:hover { background: var(--blue-pale); }
.action-card:hover::after { transform: scaleX(1); }
.action-card.featured { background: var(--blue); color: #fff; border-bottom-color: var(--blue-mid); }
.action-card.featured::after { background: #fff; }
.action-card.featured:hover { background: var(--blue-mid); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.card-icon svg { width: 26px; height: 26px; }
.action-card:not(.featured) .card-icon { background: var(--blue-pale); color: var(--blue); }
.action-card.featured .card-icon { background: rgba(255,255,255,.18); color: #fff; }
.action-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.action-card p { font-size: 14px; line-height: 1.65; flex: 1; }
.action-card:not(.featured) p { color: var(--gray-600); }
.action-card.featured p { color: rgba(255,255,255,.78); }
.card-arrow { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; margin-top: 24px; transition: gap .15s; }
.action-card:not(.featured) .card-arrow { color: var(--blue); }
.action-card.featured .card-arrow { color: rgba(255,255,255,.9); }
.action-card:hover .card-arrow { gap: 10px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { display: inline-block; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; line-height: 1.2; }
.section-header p { color: var(--gray-600); font-size: 16px; margin-top: 10px; }

/* ── ÉVÉNEMENTS ── */
.events-section { padding: 80px 0; background: var(--gray-100); }
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.events-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.event-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); transition: all .22s ease;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18,86,135,.14); }
.event-img {
  height: 160px; background: linear-gradient(135deg, var(--blue-light), #c3dff0);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 13px; font-weight: 500;
}
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-date-badge {
  position: absolute; top: 10px; left: 10px;
  background: #fff; border-radius: var(--radius-sm);
  padding: 5px 10px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.12); min-width: 44px;
}
.event-date-badge strong { display: block; font-size: 18px; font-weight: 800; color: var(--blue); line-height: 1; }
.event-date-badge span { font-size: 10px; text-transform: uppercase; color: var(--gray-600); font-weight: 600; }
.event-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.event-tag {
  display: inline-block; background: var(--blue-pale); color: var(--blue);
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 30px;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em;
}
.event-title { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.event-time { font-size: 12px; color: var(--gray-400); margin-bottom: 14px; flex: 1; }
.event-cta { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 5px; }
.events-footer { text-align: center; margin-top: 44px; }
.events-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 7px 18px; border-radius: 30px; font-size: 13px; font-weight: 600;
  border: 2px solid var(--gray-200); background: #fff; color: var(--gray-600);
  cursor: pointer; transition: all .15s; font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

/* ── LOCATION ── */
.location-section { padding: 80px 0; background: #fff; }
.location-header { max-width: 880px; margin: 0 auto 48px; }
.location-header h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; line-height: 1.2; margin: 6px 0 14px; }
.location-header .lead { color: var(--gray-600); font-size: 17px; line-height: 1.7; margin-bottom: 28px; }
.location-images-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; height: 360px; margin-bottom: 36px; }
.loc-img {
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500;
  position: relative;
}
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-img:nth-child(1) { background: linear-gradient(160deg, #1a4a6e, #0d3050); }
.loc-img:nth-child(2) { background: linear-gradient(135deg, #1e5a82, #12446a); }
.loc-img:nth-child(3) { background: linear-gradient(135deg, #2566a0, #1a4e7c); }
.loc-img-label { position: absolute; bottom: 12px; left: 12px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 600; background: rgba(8,31,48,.5); padding: 4px 10px; border-radius: var(--radius-sm); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 8px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--gray-900);
  padding: 10px 14px; background: var(--blue-pale); border-radius: var(--radius-sm);
}
.feature-icon { color: var(--blue); font-size: 16px; flex-shrink: 0; }
.location-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }

/* ── GALLERY STRIP ── */
.gallery-section { padding: 64px 0; background: var(--blue-deep); }
.gallery-section .section-header h2 { color: #fff; }
.gallery-section .section-eyebrow { color: var(--blue-light); }
.gallery-section .section-header p { color: rgba(255,255,255,.6); }
.gallery-strip { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: 300px; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer; transition: opacity .2s;
  background: rgba(255,255,255,.06);
}
.gallery-item:hover { opacity: .85; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(18,86,135,0); transition: background .2s;
}
.gallery-item:hover .overlay { background: rgba(18,86,135,.3); }
.gallery-footer { text-align: center; margin-top: 28px; }

/* ── FOOTER ── */
footer.site-footer { background: var(--blue-deep); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 40px; width: auto; }
.footer-logo-text { color: #fff; line-height: 1.2; }
.footer-logo-text strong { display: block; font-size: 15px; font-weight: 700; }
.footer-logo-text span { font-size: 11px; opacity: .6; }
.footer-desc { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; transition: all .15s;
}
.social-btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.footer-col h4 { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-col ul.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-col ul.footer-menu li { list-style: none; }
.footer-col ul.footer-menu li a { display: block; color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-col ul.footer-menu li a:hover { color: rgba(255,255,255,.9); }
.footer-col address { font-style: normal; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.9; }
.footer-col address a { margin-bottom: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: 20px; }

/* ── SOUS-PAGES ── */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--gray-100); }
.content-section.dark { background: var(--blue-deep); color: rgba(255,255,255,.85); }

.prose { max-width: 760px; }
.prose h2 { font-size: 28px; font-weight: 800; line-height: 1.2; margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; font-weight: 700; line-height: 1.3; margin: 28px 0 10px; color: var(--blue); }
.prose p { font-size: 16px; line-height: 1.75; color: var(--gray-900); margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { font-size: 16px; line-height: 1.75; margin-bottom: 6px; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--blue-mid); }
.prose strong { font-weight: 700; color: var(--gray-900); }
.prose hr { border: none; border-top: 1px solid var(--gray-200); margin: 36px 0; }

.with-sidebar { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.sidebar-nav { position: sticky; top: 96px; }
.sidebar-nav h4 {
  font-size: 11px; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--gray-200);
}
.sidebar-nav a {
  display: block; padding: 9px 12px; color: var(--gray-600);
  text-decoration: none; font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm); margin-bottom: 2px; transition: all .15s;
  border-left: 2px solid transparent;
}
.sidebar-nav a:hover { background: var(--blue-pale); color: var(--blue); }
.sidebar-nav a.active,
.sidebar-nav .current-menu-item > a { background: var(--blue-pale); color: var(--blue); border-left-color: var(--blue); font-weight: 700; }

/* ── SALLES ── */
.salles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.salle-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); text-decoration: none; color: inherit;
  transition: all .25s ease; display: flex; flex-direction: column;
  border: 1px solid var(--gray-200);
}
.salle-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(18,86,135,.18); border-color: var(--blue-light); }
.salle-img {
  height: 220px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a4a6e, #0d3050);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 13px;
}
.salle-img img { width: 100%; height: 100%; object-fit: cover; }
.salle-capacity {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.95); color: var(--blue);
  padding: 6px 12px; border-radius: 30px; font-size: 12px; font-weight: 700; letter-spacing: .03em;
}
.salle-body { padding: 24px 28px; }
.salle-body h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.salle-body p { color: var(--gray-600); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.salle-meta { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--gray-200); font-size: 12px; color: var(--gray-600); }
.salle-meta strong { color: var(--gray-900); font-weight: 700; display: block; font-size: 14px; }
.salle-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--blue); margin-top: 16px; transition: gap .15s; }
.salle-card:hover .salle-arrow { gap: 10px; }

/* Salle detail */
.salle-detail-hero {
  height: 420px; background: linear-gradient(160deg, #1a4a6e, #0d3050);
  position: relative; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.salle-detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.salle-detail-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,31,48,.85) 0%, rgba(8,31,48,.3) 50%, transparent 100%);
}
.salle-detail-hero .container { position: relative; z-index: 2; padding-bottom: 36px; }
.salle-detail-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.1; margin-bottom: 8px; }
.salle-detail-hero .subtitle { font-size: 17px; color: rgba(255,255,255,.85); max-width: 600px; }

.salle-quickstats { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.salle-quickstats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.qstat { display: flex; gap: 14px; align-items: center; }
.qstat-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--blue-pale); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.qstat-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.qstat-value { font-size: 15px; font-weight: 700; color: var(--gray-900); }

.equipment-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin-top: 20px; }
.equipment-list li { list-style: none; display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.55; }
.equipment-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; font-size: 14px; margin-top: 2px; }

/* ── ADMINISTRATION ── */
.person-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.person-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px 26px;
  display: flex; gap: 18px; align-items: flex-start;
}
.person-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-body h4 { font-size: 17px; font-weight: 800; margin-bottom: 2px; }
.person-role { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.person-body p { font-size: 14px; line-height: 1.65; color: var(--gray-600); }

/* ── CONTACT ── */
.contact-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-form { background: #fff; padding: 36px; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,.05); border: 1px solid var(--gray-200); }
.ccdv-card { background: #fff; border-radius: 8px; padding: 1.75rem; margin-bottom: 1.5rem; border: 1px solid #e0e0e0; }
.ccdv-card-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin: 0 0 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #e0e0e0; }
.ccdv-form-group { margin-bottom: 1.5rem; }
.ccdv-form-group:last-child { margin-bottom: 0; }
.ccdv-contact-form label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--gray-900); }
.ccdv-contact-form input,
.ccdv-contact-form select,
.ccdv-contact-form textarea {
  width: 100%; padding: 0.75rem; font-family: var(--font); font-size: 14px;
  border: 1px solid #d0d0d0; border-radius: 4px; background: #fff; color: var(--gray-900);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ccdv-contact-form input:focus,
.ccdv-contact-form select:focus,
.ccdv-contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 2px rgba(18,86,135,.1); }
.ccdv-contact-form textarea { resize: vertical; min-height: 90px; }
.ccdv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ccdv-submit-card { background: var(--blue); padding: 1.75rem; border-radius: 8px; margin-top: 2rem; }
.ccdv-submit-card button {
  width: 100%; padding: 1rem; background: #fcfdff; color: var(--blue);
  border: none; border-radius: 4px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
  transition: background 0.15s; font-family: var(--font);
}
.ccdv-submit-card button:hover { background: #f0f2f5; }
.ccdv-required { color: #d32f2f; }
.ccdv-message { padding: 1rem; border-radius: 6px; margin-top: 1rem; font-size: 13px; text-align: center; display: none; }
.ccdv-message.success { background: #e8f5e9; border: 1px solid #4caf50; color: #1b5e20; display: block; }
.ccdv-message.error { background: #ffebee; border: 1px solid #f44336; color: #b71c1c; display: block; }
.contact-info { padding-top: 8px; }
.contact-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-info .lead { color: var(--gray-600); font-size: 15px; margin-bottom: 28px; }
.contact-block { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
.contact-block:last-child { border-bottom: none; }
.contact-block-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--blue-pale); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-block h5 { font-size: 13px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-block p, .contact-block a { font-size: 15px; color: var(--gray-900); text-decoration: none; line-height: 1.55; }
.contact-block a:hover { color: var(--blue); }

/* ── GALERIE ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-photo {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #1a4a6e, #0d3050);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 12px;
  cursor: pointer; transition: transform .22s ease; position: relative;
}
.gallery-photo:hover { transform: scale(1.02); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-photo.video::after {
  content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--blue);
  font-size: 20px; display: flex; align-items: center; justify-content: center; padding-left: 4px;
}

/* ── VISIONNEUSE PHOTO (lightbox vertical) ── */
#ccv-viewer {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(6,20,34,.92); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
#ccv-viewer.is-open { opacity: 1; pointer-events: auto; }

.ccv-viewer-stage {
  position: relative; width: 100%; max-width: 860px; flex: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0 20px;
}
.ccv-viewer-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.ccv-viewer-img {
  max-width: 100%; max-height: 78vh;
  border-radius: 6px; box-shadow: 0 24px 64px rgba(0,0,0,.6);
  display: block; object-fit: contain;
}

/* Boutons navigation haut / bas */
.ccv-viewer-nav {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.ccv-viewer-nav svg { width: 24px; height: 24px; pointer-events: none; }
.ccv-viewer-nav:hover { background: rgba(255,255,255,.24); transform: scale(1.08); }
.ccv-viewer-nav:disabled { opacity: .25; cursor: default; transform: none; }

/* Bouton fermer */
.ccv-viewer-close {
  position: absolute; top: 18px; right: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.ccv-viewer-close:hover { background: rgba(255,255,255,.25); }

/* Compteur */
.ccv-viewer-counter {
  position: absolute; bottom: 20px;
  font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: .05em;
}

/* Animations verticales */
@keyframes slideExitUp   { from { transform:translateY(0); opacity:1; } to { transform:translateY(-60px); opacity:0; } }
@keyframes slideExitDown { from { transform:translateY(0); opacity:1; } to { transform:translateY(60px);  opacity:0; } }
@keyframes slideEnterDown{ from { transform:translateY(60px);  opacity:0; } to { transform:translateY(0); opacity:1; } }
@keyframes slideEnterUp  { from { transform:translateY(-60px); opacity:0; } to { transform:translateY(0); opacity:1; } }

.ccv-viewer-wrap.slide-exit-up   { animation: slideExitUp   .22s ease forwards; }
.ccv-viewer-wrap.slide-exit-down { animation: slideExitDown .22s ease forwards; }
.ccv-viewer-wrap.slide-enter-down{ animation: slideEnterDown .22s ease forwards; }
.ccv-viewer-wrap.slide-enter-up  { animation: slideEnterUp  .22s ease forwards; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--blue); padding: 56px 0; color: #fff; }
.cta-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-banner h3 { font-size: 26px; font-weight: 800; line-height: 1.25; max-width: 600px; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 15px; margin-top: 4px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── MAP ── */
.map-section { line-height: 0; background: var(--gray-100); }
.map-section iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ── RESPONSIVE ── */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: #fff; flex-direction: column; gap: 5px; margin-left: 12px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: all .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--blue); padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(8,31,48,.4); z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 24px; border-radius: 0; font-size: 15px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-content { padding: 48px 24px !important; }
  .action-cards-inner { grid-template-columns: 1fr; }
  .action-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .contact-split { grid-template-columns: 1fr; }
  .salles-grid { grid-template-columns: 1fr; }
  .salle-quickstats-grid { grid-template-columns: repeat(2, 1fr); }
  .person-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .gallery-item:nth-child(1) { grid-row: span 1; min-height: 160px; }
  .gallery-item { min-height: 120px; }
  .with-sidebar { grid-template-columns: 1fr; }
  .sidebar-nav { position: static; }
  .location-images-row { grid-template-columns: 1fr; height: auto; }
  .loc-img { height: 200px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
  .ccdv-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .salle-quickstats-grid { grid-template-columns: 1fr 1fr; }
}
