/* ─────────────────────────────────────────────
   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; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; margin: 0; padding: 0; 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: flex; align-items: center; gap: 4px;
}
.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); }

/* Indicateur sous-menu */
.nav-links .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,.6);
  transition: transform .2s;
}
.nav-links .menu-item-has-children.is-open > a::after { transform: rotate(180deg); }

/* Sous-menu déroulant */
.nav-links .sub-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--blue-dark);
  border-radius: var(--radius);
  padding: 6px 0;
  min-width: 210px;
  box-shadow: 0 8px 28px rgba(8,31,48,.4);
  z-index: 200;
  list-style: none; margin: 0;
}
.nav-links .sub-menu::before {
  content: '';
  position: absolute; top: -6px; left: 0; right: 0; height: 6px;
}
.nav-links li.is-open > .sub-menu,
.nav-links li:focus-within > .sub-menu { display: block; }
.nav-links .sub-menu li { list-style: none; }
.nav-links .sub-menu a {
  padding: 9px 18px;
  font-size: 13px; border-radius: 0;
  white-space: nowrap;
}
.nav-links .sub-menu a:hover { background: rgba(255,255,255,.1); }

/* 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; text-align: left;
  padding: 56px 0 64px; position: relative; overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: center;
}
.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; }
.page-intro-quote { border: none; margin: 0; padding: 0; }
.page-intro-quote p { font-size: clamp(18px, 2.2vw, 26px); font-style: italic; font-weight: 300; color: rgba(255,255,255,.9); line-height: 1.5; margin-bottom: 12px; }
.page-intro-quote cite { font-size: 14px; font-style: normal; color: rgba(255,255,255,.5); letter-spacing: .06em; }

/* ── 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 {
  aspect-ratio: 16 / 9; 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 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.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-tag--atelier    { background: #e8f5ee; color: #1a6640; }
.event-tag--concert    { background: #fdf0e8; color: #904010; }
.event-tag--theatre    { background: #f0ebfa; color: #5530a0; }
.event-tag--cinema     { background: #fde8f0; color: #9a1a55; }
.event-tag--conference { background: #e8f0fd; color: #1a4090; }
.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: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; border: 2px solid var(--blue); border-radius: var(--radius-sm); align-self: flex-start; transition: background .2s, color .2s; }
.event-card:hover .event-cta { background: var(--blue); color: #fff; }
.events-footer { text-align: center; margin-top: 44px; }

/* Prev/next navigation entre événements */
.event-nav { display: flex; justify-content: space-between; align-items: stretch; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.event-nav-btn {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--gray-900);
  padding: 14px 20px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  flex: 1; max-width: 48%;
  transition: box-shadow .2s, border-color .2s, background .2s;
}
.event-nav-btn:hover { background: var(--blue-pale); border-color: var(--blue-light); box-shadow: 0 4px 16px rgba(18,86,135,.1); }
.event-nav-btn--prev { justify-content: flex-start; }
.event-nav-btn--next { justify-content: flex-end; text-align: right; }
.event-nav-btn svg { flex-shrink: 0; color: var(--blue); }
.event-nav-btn small { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 3px; }
.event-nav-btn strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
/* ── BOUTON DÉCLENCHEUR PRODUCTEUR (sidebar) ── */
.producer-trigger {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--blue); font-size: 14px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity .15s; min-height: 44px; display: block;
  text-align: left; width: 100%;
}
.producer-trigger:hover { opacity: .75; }

/* ── MODALE PRODUCTEUR ── */
.prod-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.prod-modal[hidden] { display: none; }
.prod-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8,31,48,.55); backdrop-filter: blur(3px);
}
.prod-modal__panel {
  position: relative; z-index: 1;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(8,31,48,.22);
  width: 100%; max-width: 520px; max-height: 90vh;
  overflow-y: auto;
}
.prod-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-600); transition: background .15s, color .15s;
}
.prod-modal__close:hover { background: var(--gray-100); color: var(--gray-900); }
.prod-modal__inner { display: flex; gap: 24px; padding: 32px; align-items: flex-start; }
.prod-modal__avatar-wrap { flex-shrink: 0; }
.prod-modal__avatar {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; object-position: center;
  display: block; border: 3px solid var(--blue-light);
}
.prod-modal__avatar-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--blue-pale); border: 3px solid var(--blue-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.prod-modal__body { flex: 1; min-width: 0; }
.prod-modal__name { font-size: 20px; font-weight: 700; color: var(--gray-900); margin: 0 0 3px; }
.prod-modal__role { font-size: 11px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .09em; margin: 0 0 14px; }
.prod-modal__bio { font-size: 14px; line-height: 1.65; color: var(--gray-600); margin-bottom: 16px; }
.prod-modal__bio p { margin: 0 0 8px; }
.prod-modal__contacts { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.prod-modal__contact-link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  text-decoration: none; transition: color .15s;
}
.prod-modal__contact-link:hover { color: var(--blue); }
.prod-modal__contact-link svg { flex-shrink: 0; color: var(--blue); }
.prod-modal__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.prod-modal__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gray-200); color: var(--gray-600);
  text-decoration: none; transition: color .15s, border-color .15s, background .15s;
}
.prod-modal__social:hover { color: var(--blue); border-color: var(--blue-light); background: var(--blue-pale); }
body.prod-modal-open { overflow: hidden; }
@media (max-width: 540px) {
  .prod-modal__inner { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .prod-modal__contacts { align-items: center; }
  .prod-modal__socials { justify-content: center; }
}

.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); }
.filter-btn-past { background: var(--blue-dark); color: #fff; border-color: var(--blue-light); }
.filter-btn-past:hover { background: var(--blue-deep); color: #fff; border-color: var(--blue-light); }
.filter-btn-past.active { background: var(--blue-deep); color: #fff; border-color: var(--blue-light); box-shadow: 0 0 0 2px var(--blue-light); }
.post-type-archive-evenement .event-card-past { display: none; }

/* ── 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); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .22s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(18,86,135,0); transition: background .2s; pointer-events: none;
}
.gallery-item:hover .overlay { background: rgba(18,86,135,.25); }


/* ── 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 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; }
.sidebar-nav .btn-outline { display: inline-flex; width: 100%; border: 2px solid var(--blue); border-radius: var(--radius-sm); }
.sidebar-nav .btn-outline:hover { background: var(--blue-pale); border-color: var(--blue); }

/* ── SALLE TABS ── */
.salle-tabs-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 0 0 1px;
}
.salle-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 14px 0;
}
.salle-tabs .filter-btn { text-decoration: none; }
.salle-tabs .filter-btn.active {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-pale); 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;
  transition: transform .22s ease, box-shadow .22s ease;
}
.person-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18,86,135,.12); }
.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; transition: background .22s ease, transform .22s ease;
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.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); }
.prose--wide { max-width: none; }

/* ── CONTACT ── */
.contact-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-info-centered { max-width: 560px; margin: 0 auto; }
.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 10px; border-bottom: 1px solid var(--gray-200); margin: 0 -10px; border-radius: var(--radius-sm); transition: background .18s; cursor: default; }
.contact-block:last-child { border-bottom: none; }
.contact-block:hover { background: var(--blue-pale); border-bottom-color: transparent; }
.contact-block:hover + .contact-block { border-top: 1px solid transparent; }
.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; transition: background .18s, color .18s; }
.contact-block:hover .contact-block-icon { background: var(--blue); color: #fff; }
.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); }

/* ── INFO CARDS (contact) ── */
.info-card { background: #fff; border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1rem; border: 1px solid var(--gray-200); }
.info-card-header { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: .75rem; }
.info-card-header svg { color: #c94f6a; flex-shrink: 0; }
.info-card p { font-size: 14px; color: var(--gray-900); line-height: 1.7; margin: 0; }
.info-card p a { color: var(--blue); text-decoration: none; }
.info-card p a:hover { text-decoration: underline; }
.info-card p strong { font-weight: 600; }
.map-open-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 1rem; font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; padding: 10px 18px; border: 1.5px solid var(--blue); border-radius: var(--radius-sm); letter-spacing: .04em; transition: background .15s, color .15s; }
.map-open-link:hover { background: var(--blue); color: #fff; }


/* ── LIGHTBOX GALERIE ── */
.gallery-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.93); align-items: center;
  justify-content: center; flex-direction: column;
}
.gallery-lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 90vw; max-height: 78vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius); }
.lb-close, .lb-prev, .lb-next {
  position: fixed; background: rgba(255,255,255,.13); border: 2px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; border-radius: 50%;
  width: 52px; height: 52px; font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
  font-family: var(--font);
}
.lb-close { top: 20px; right: 20px; font-size: 18px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.5);
}
.lb-counter { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 14px; font-family: var(--font); }
.lb-caption { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 6px; max-width: 600px; text-align: center; }

/* ── CLIENTS ── */
.clients-section { background: var(--gray-100); padding: 64px 0; }
.clients-section .section-header { text-align: center; margin-bottom: 40px; }
.clients-section .section-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 8px;
}
.clients-section h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: var(--gray-900); }
.clients-logos {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: center;
}
.client-logo {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  padding: 0 32px;
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  min-width: 140px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.client-logo:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(18,86,135,.14); border-color: var(--blue-light); }
.client-logo a { display: flex; align-items: center; justify-content: center; }
.client-logo img { max-width: 120px; max-height: 72px; width: auto; height: auto; display: block; filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s; }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }
.client-logo span { font-size: 13px; font-weight: 600; color: var(--gray-600); text-align: center; }

/* ── ALBUMS GALERIE ── */
.albums-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.album-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;
}
.album-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18,86,135,.14); }
.album-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-light), #c3dff0);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.album-count-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: 5px 10px; text-align: center; min-width: 50px;
}
.album-count-badge strong { display: block; font-size: 18px; font-weight: 800; color: #fff; line-height: 1; }
.album-count-badge span { font-size: 10px; text-transform: uppercase; color: rgba(255,255,255,.8); font-weight: 600; letter-spacing: .04em; }
.album-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.album-title { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.album-extra { font-size: 12px; color: var(--gray-400); margin-bottom: 14px; flex: 1; }
.album-cta { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 5px; margin-top: auto; }
.albums-footer { text-align: center; margin-top: 44px; }

/* ── 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; }

/* ── GALLERY PHOTO GRID (single album) ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
/* Tuiles photo galerie — zoom image uniquement (pas le conteneur) */
.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;
  cursor: pointer; position: relative;
}
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .22s ease; }
.gallery-photo:hover img { transform: scale(1.04); }

/* ── LIGHTBOX ── */
.ccv-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  align-items: center; justify-content: center;
}
.ccv-lightbox.is-open { display: flex; }
.ccv-lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,31,48,.92); cursor: pointer;
}
.ccv-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 36px; cursor: pointer; z-index: 1; line-height: 1;
  opacity: .7; transition: opacity .15s;
}
.ccv-lightbox-close:hover { opacity: 1; }
.ccv-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.25);
  color: #fff; font-size: 32px; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, border-color .18s;
}
.ccv-lightbox-nav:hover { background: rgba(255,255,255,.3); border-color: rgba(255,255,255,.5); }
.ccv-lightbox-prev { left: 20px; }
.ccv-lightbox-next { right: 20px; }
.ccv-lightbox-inner {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ccv-lightbox-inner img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  transition: opacity .15s ease;
}
#ccv-lightbox-caption {
  color: rgba(255,255,255,.7); font-size: 14px; text-align: center; margin: 0;
}

/* ── NAV HORIZONTALE DE SECTION (À propos, etc.) ── */
.section-subnav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.section-subnav .btn { border-radius: 30px; padding: 8px 18px; }

/* ── GALERIE CPT ── */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-album-card {
  text-decoration: none; color: inherit;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform .2s, box-shadow .2s;
  background: #fff;
}
.gallery-album-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18,86,135,.14); }
.gallery-album-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.gallery-album-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-album-card:hover .gallery-album-thumb img { transform: scale(1.04); }
.gallery-album-nophoto { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:var(--gray-400); font-size:13px; }
.gallery-album-tags {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 30px;
}
.gallery-album-info { padding: 16px 18px; }
.gallery-album-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.gallery-album-date { font-size: 13px; color: var(--gray-600); }
.gallery-placeholder { color: rgba(255,255,255,.3); font-size: 13px; }

/* Tuile Voir tout */
.gallery-item-seeall { background: rgba(255,255,255,.08); border: 2px dashed rgba(255,255,255,.25); text-decoration: none; }
.gallery-item-seeall .seeall-content { text-align: center; color: rgba(255,255,255,.7); z-index: 1; position: relative; transition: color .2s; }
.gallery-item-seeall:hover .seeall-content { color: #fff; }
.seeall-icon { display: block; font-size: 32px; line-height: 1; margin-bottom: 6px; font-weight: 300; }
.seeall-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ── 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); }
  .gallery-albums-grid { grid-template-columns: repeat(2, 1fr); }
  .albums-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .album-content .wp-block-gallery { grid-template-columns: repeat(2, 1fr) !important; }
}

@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; }
  .nav-links .sub-menu {
    position: static; box-shadow: none;
    background: rgba(0,0,0,.18); border-radius: 0;
    padding: 0; min-width: 0;
  }
  .nav-links .sub-menu a { padding: 9px 24px 9px 36px; font-size: 14px; }
  .nav-links .menu-item-has-children > a { justify-content: space-between; }
  .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); }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .clients-logos { gap: 16px; }
  .client-logo { min-width: 110px; padding: 14px 18px; }
  .person-grid { grid-template-columns: 1fr; }
.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); }
  .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; }
  .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; }
  .albums-grid { grid-template-columns: 1fr; }
  .gallery-albums-grid { grid-template-columns: 1fr; }
  .album-content .wp-block-gallery { grid-template-columns: 1fr !important; }
  .features-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .salle-quickstats-grid { grid-template-columns: 1fr 1fr; }
}
