/* ══════════════════════════════════
   BRASSENS THEME — Main Stylesheet
   Espace Culturel Georges Brassens
   Convention: BEM, prefix gb_
   ══════════════════════════════════ */

:root {
  --noir: #0a0a0a;
  --noir-light: #1a1a1a;
  --blanc: #f8f8f6;
  --jaune: #ffc600;
  --gris: #888;
  --gris-light: #e5e5e3;
  --gris-dark: #333;
  --font-titre: 'Cabinet Grotesk', sans-serif;
  --font-corps: 'DM Sans', sans-serif;
  --px: clamp(20px, 4vw, 80px);
  --radius: 8px;
  --container: 1280px;
  
  /* Couleurs scolaires (bleu) */
  --scolaire-primary: #3A7CA5;
  --scolaire-dark: #2C5F7F;
  --scolaire-light: #5A9AC4;
}

/* Contexte scolaires : surcharge jaune → bleu */
body.scolaires-context {
  --jaune: var(--scolaire-primary);
}
.scolaires-context .gb_nav,
.scolaires-context .gb_footer {
  --jaune: #ffc600;
}

/* ══════════════════════════════════
   ALERT BANNER — Top-bar
   ══════════════════════════════════ */
.gb_alert {
  position: relative;
  z-index: 50;
  padding-top: 72px;
  margin-bottom: -72px;
  border-bottom: 1px solid transparent;
  animation: gb_alertSlide .3s ease;
}
@keyframes gb_alertSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.gb_alert__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--px);
  padding-left: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gb_alert__inner > .ph {
  font-size: 20px;
  flex-shrink: 0;
}
.gb_alert__body {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.gb_alert__title {
  font-family: var(--font-titre);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.gb_alert__text {
  font-size: 14px;
  line-height: 1.5;
}
.gb_alert__close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  color: inherit;
  opacity: .6;
}
.gb_alert__close:hover {
  opacity: 1;
  background: rgba(0,0,0,.08);
}

/* Variante info */
.gb_alert--info {
  background: #EFF6FF;
  border-bottom-color: #BFDBFE;
  color: #1E40AF;
}
/* Variante warning */
.gb_alert--warning {
  background: #FFFBEB;
  border-bottom-color: #FDE68A;
  color: #92400E;
}
/* Variante error */
.gb_alert--error {
  background: #FEF2F2;
  color: #991B1B;
}

/* Mobile */
@media (max-width: 480px) {
  .gb_alert__body {
    flex-direction: column;
    gap: 2px;
  }
  .gb_alert__text {
    font-size: 13px;
  }
}

/* ══════════════════════════════════
   RESET & BASE
   ══════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: var(--font-corps);
  background: var(--blanc);
  color: var(--noir);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════
   UTILITIES
   ══════════════════════════════════ */
.gb_container { max-width: var(--container); margin: 0 auto; padding: 0 var(--px); }

.gb_label {
  font-family: var(--font-corps);
  font-size: 10px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--jaune);
  display: block; margin-bottom: 16px;
}
.gb_label--dark { color: var(--gris); }

.gb_tag {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 15px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 30px;
}
.gb_tag--gris { border-color: var(--gris-light); color: var(--gris); }
.gb_tag--noir { border-color: var(--gris-light); color: var(--gris); }
.gb_tag--complet {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
  font-size: 15px;
  padding: 6px 14px;
  border: none !important;
  line-height: 25px;
}

.gb_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-corps);
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all .25s;
  cursor: pointer;
  border: none;
  position: relative;
}
.gb_btn--jaune { background: var(--jaune); color: var(--noir); }
.gb_btn--jaune:hover { background: #fff; box-shadow: 0 0 0 1px var(--noir); }
.gb_btn--ghost { background: transparent; color: var(--blanc); border: 1px solid rgba(255,255,255,.2); }
.gb_btn--ghost:hover { border-color: var(--jaune); color: var(--jaune); }
.gb_btn--ghost-dark { background: transparent; color: var(--noir); border: 1px solid var(--gris-light); }
.gb_btn--ghost-dark:hover { border-color: var(--noir); }
.gb_btn--dark { background: var(--noir); color: var(--blanc); }
.gb_btn--dark:hover { background: var(--noir-light); }

/* Bouton avec badge + flèche animée */
.gb_btn--with-badge {
  padding-right: 24px;
}
.gb_btn__arrow {
  display: inline-flex;
  animation: gb_arrowBounce 1.5s ease-in-out infinite;
  font-size: 16px;
}
@keyframes gb_arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.gb_btn__badge {
  position: absolute;
  top: -18px;
  right: -10px;
  background: var(--noir);
  color: #fff;
  font-family: var(--font-titre);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 100px;
  box-shadow: 3px 3px rgba(0,0,0,.2);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Programme button with thumbnail */
.gb_btn--prog {
  position: relative;
  overflow: visible;
  padding-right: 38px !important;
  margin-right: 10px;
}
.gb_btn__prog-thumb {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  pointer-events: none;
  transform: rotate(6deg);
  transition: .3s;
}
.gb_btn--prog:hover .gb_btn__prog-thumb {
  transform: rotate(10deg) scale(1.08);
}

/* Mobile: image plus grosse */
@media (max-width: 1024px) {
  .gb_btn__prog-thumb {
    top: -26px;
    width: 52px;
    height: 52px;
  }
}

.gb_fake-img {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.08);
  font-size: 48px;
}
.gb_fake-img--light {
  background: linear-gradient(135deg, #e8e8e6 0%, #d5d5d2 100%);
  color: rgba(0,0,0,.06);
}

/* ══════════════════════════════════
   NAV
   ══════════════════════════════════ */
.gb_nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.04);
  overflow: visible;
}
.gb_nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.gb_nav__logo {
  display: flex; align-items: center;
  position: relative;
}
.gb_nav__logo-box {
  width: 120px; height: 120px;
  position: relative;
  top: 20px;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gb_nav__logo-box::before {
  content: '';
  position: absolute;
  top: -30px; left: -10px; right: -10px; bottom: -10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  transform: rotate(-5deg);
  z-index: -1;
}
.gb_nav__logo-box img,
.gb_nav__logo-box .custom-logo {
  width: 100px; height: 100px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* Burger */
.gb_nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.gb_nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blanc);
  transition: .3s;
}
.gb_nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gb_nav__burger.is-open span:nth-child(2) { opacity: 0; }
.gb_nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav links */
.gb_nav__links {
  display: flex; gap: 32px;
  list-style: none;
}
.gb_nav__links li { position: relative; }
.gb_nav__links li a,
.gb_nav__links > li > a {
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--blanc);
  transition: all .3s ease;
  position: relative;
  padding-bottom: 4px;
}
.gb_nav__links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--jaune);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.gb_nav__links li a:hover,
.gb_nav__links li a.is-active,
.gb_nav__links li.current-menu-item > a,
.gb_nav__links li.current-menu-ancestor > a {
  color: var(--jaune);
}
.gb_nav__links li a:hover::after,
.gb_nav__links li a.is-active::after,
.gb_nav__links li.current-menu-item > a::after,
.gb_nav__links li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

/* Sub-menu (WP generates .sub-menu) */
.gb_nav__links .sub-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: .2s;
  margin-top: 16px;
  list-style: none;
}
.gb_nav__links .sub-menu::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.gb_nav__links li:hover > .sub-menu {
  opacity: 1; visibility: visible;
}
.gb_nav__links .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.5);
}
.gb_nav__links .sub-menu a:hover {
  color: var(--blanc);
  background: rgba(255,255,255,.04);
}

.gb_nav__cta { display: flex; gap: 10px; align-items: center; }
.gb_btn--nav { padding: 10px 24px; font-size: 11px; }

/* ══════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════ */
.gb_nav__mobile {
  display: none;
}

@media (max-width: 1024px) {
  .gb_nav__burger {
    display: flex;
  }
  
  /* Menu container */
  .gb_nav__mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--noir);
    z-index: 999;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
  }
  .gb_nav__mobile.is-open {
    right: 0;
  }
  
  /* Header with logo */
  .gb_nav__mobile-header {
    padding: 0 30px 40px;
  }
  .gb_nav__mobile-logo {
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
  }
  .gb_nav__mobile-logo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    transform: rotate(-5deg);
    z-index: -1;
  }
  .gb_nav__mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }
  
  /* Links */
  .gb_nav__mobile-links {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
  }
  .gb_nav__mobile-links ul {
    list-style: none;
  }
  .gb_nav__mobile-links li {
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .gb_nav__mobile-links a {
    display: block;
    padding: 20px 30px;
    font-family: var(--font-titre);
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: .2s;
  }
  .gb_nav__mobile-links a:hover {
    color: var(--jaune);
    padding-left: 40px;
    background: rgba(255,255,255,.02);
  }
  
  /* CTA footer */
  .gb_nav__mobile-footer {
    padding: 24px 30px 32px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: var(--noir-light);
  }
  .gb_nav__mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .gb_nav__mobile-cta .gb_btn {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-align: center;
  }
  
  /* Social links */
  .gb_nav__mobile-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
  }
  .gb_nav__mobile-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.4);
    font-size: 20px;
    transition: .2s;
  }
  .gb_nav__mobile-social a:hover {
    background: var(--jaune);
    color: var(--noir);
  }
  
  /* Hide desktop nav */
  .gb_nav__links,
  .gb_nav__cta {
    display: none !important;
  }
  
  /* Overlay */
  .gb_nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    z-index: 998;
  }
  .gb_nav__overlay.is-open {
    opacity: 1;
    pointer-events: all;
  }
  body.nav-open {
    overflow: hidden;
  }
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.gb_hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  height: min(100vh, 650px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gb_hero__mosaic-bg {
  position: absolute;
  top: -200px; bottom: -200px;
  right: -25%; left: 30%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  transform: rotate(25deg);
  gap: 10px;
}
.gb_hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, #fff 25%, rgba(255,255,255,.7) 40%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.gb_hero__mosaic-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  height: 200px;
}
.gb_hero__diamond {
  height: 200px;
  overflow: hidden;
  background: #eee;
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}
.gb_hero__diamond img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(.9);
  transition: filter .4s;
}
.gb_hero__diamond:hover img {
  filter: brightness(1) saturate(1);
}
.gb_hero__top {
  padding: 80px var(--px) 20px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
}
.gb_hero__tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 20px;
  display: block;
}
.gb_hero__title {
  font-family: var(--font-titre);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: .88;
  color: var(--noir);
  letter-spacing: -.03em;
}
.gb_hero__title em {
  font-style: normal;
  color: var(--noir);
  font-weight: 400;
}
.gb_hero__desc {
  font-size: 15px; font-weight: 300;
  color: var(--gris);
  line-height: 1.8;
  max-width: 400px;
  margin: 15px 0 30px;
}
.gb_hero__btns { display: flex; gap: 12px; align-items: flex-start; }
.gb_hero__btns .gb_btn--ghost-dark {
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,.08);
  color: var(--noir);
}
.gb_hero__btns .gb_btn--ghost-dark:hover {
  background: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.9);
}

/* Scroll CTA */
.gb_hero__scroll {
  position: absolute;
  bottom: 32px;
  left: var(--px, 40px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  color: var(--noir);
  opacity: .6;
  transition: opacity .3s;
}
.gb_hero__scroll:hover {
  opacity: 1;
}
.gb_hero__scroll-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.gb_hero__scroll-arrow {
  font-size: 20px;
  display: block;
  animation: gb_scrollBounce 1.8s ease-in-out infinite;
}
@keyframes gb_scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ══════════════════════════════════
   PROGRAMMATION
   ══════════════════════════════════ */
.gb_prog {
  background: var(--noir);
  padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 12vw, 160px);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.gb_prog__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gb_prog__count {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
}
.gb_prog__count-num {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-right: 4px;
}
.gb_prog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.gb_prog__title {
  font-family: var(--font-titre);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
}
.gb_prog__filter-toggle {
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--blanc);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gb_prog__filter-toggle:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--jaune);
}
.gb_prog__filter-toggle.is-active {
  background: var(--jaune);
  border-color: var(--jaune);
  color: var(--noir);
}
.gb_prog__filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  width: 100%;
  margin-top: 16px;
}
.gb_prog__filter {
  font-family: var(--font-corps);
  font-size: 11px; font-weight: 500;
  letter-spacing: .05em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: .2s;
  background: transparent;
}
.gb_prog__filter:hover,
.gb_prog__filter.is-active {
  border-color: var(--jaune);
  color: #fff;
}
.gb_prog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.gb_prog__more {
  text-align: center;
  margin-top: 56px;
}

/* ══════════════════════════════════
   CARD SPECTACLE
   ══════════════════════════════════ */
.gb_card {
  display: block;
  cursor: pointer;
}
.gb_card__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  transition: transform .3s ease;
}
.gb_card:hover .gb_card__img { transform: translateY(-4px); }
.gb_card__img img { width: 100%; height: 100%; object-fit: cover; }
.gb_card__badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}
.gb_card__badge--complet { background: #dc2626; color: #fff; }
.gb_card__badge--soon { background: var(--jaune); color: var(--noir); }
.gb_card__badge--cat { background: rgba(0,0,0,.6); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); top: 12px; right: auto; left: 12px; }
.gb_card__tags { margin-bottom: 8px; display: flex; gap: 6px; }
.gb_card__date {
  font-size: 13px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: #ffc600;
  margin-bottom: 8px;
}
.gb_card__more-dates {
  font-size: 11px;
  font-weight: 600;
  color: #ffc600;
  opacity: .6;
  margin-left: 4px;
}
.gb_card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}
.gb_card__title {
  font-family: var(--font-titre);
  font-size: 22px; font-weight: 700;
  line-height: 1.2;
  color: #fff;
  flex: 1;
}
.gb_card__status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.gb_card__status--complet {
  background: #dc2626;
  color: white;
  border-radius: 100px;
}
.gb_card__artist {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.5);
}
.gb_card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.gb_card__time {
  font-size: 12px; color: rgba(255,255,255,.5);
}
.gb_card__cta {
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.gb_card:hover .gb_card__cta { color: rgba(255,255,255,.9); }
.gb_card__cta--disabled { color: var(--gris-light); pointer-events: none; }

.gb_separator { display: none; }

/* ══════════════════════════════════
   ABOUT / LE LIEU (fond noir)
   ══════════════════════════════════ */
.gb_about {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--noir);
}
.gb_about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.gb_about__title {
  font-family: var(--font-titre);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--blanc);
}
.gb_about__title em {
  font-style: normal;
}
.gb_about__image {
  margin: 40px 0 48px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21/9;
}
.gb_about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gb_about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.gb_about__cols p,
.gb_about__cols div p {
  font-size: 15px; font-weight: 500;
  line-height: 1.9;
  color: #f8f8f6;
}
.gb_about__quote {
  margin-top: 56px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.gb_about__quote-mark {
  font-family: var(--font-titre);
  font-size: 72px;
  line-height: .8;
  color: var(--jaune);
  flex-shrink: 0;
}
.gb_about__quote-text {
  font-family: var(--font-titre);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--blanc);
  font-style: italic;
}
.gb_about__quote-author {
  margin-top: 16px;
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,.35);
}
.gb_about__quote-author strong {
  color: rgba(255,255,255,.6);
  font-weight: 600;
}

/* ══════════════════════════════════
   INFOS PRATIQUES — Swiper
   ══════════════════════════════════ */
.gb_infos {
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.gb_infos__header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  margin-bottom: 48px;
}
.gb_infos__title {
  font-family: var(--font-titre);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--noir);
}
.gb_infos__swiper-wrap {
  padding-left: max(var(--px), calc((100vw - var(--container)) / 2 + var(--px)));
}
.gb_infos__swiper {
  overflow: visible;
}
.gb_infos__swiper .swiper-slide {
  width: 360px;
  max-width: 90vw;
  height: auto;
}
.gb_infos__card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gris-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .3s;
}
.gb_infos__card:hover {
  border-color: var(--gris);
}
.gb_infos__card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}
.gb_infos__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gb_infos__card-img .gb_fake-img--light {
  font-size: 36px;
  color: rgba(0,0,0,.08);
}
.gb_infos__card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gb_infos__card-icon {
  font-size: 24px;
  margin-bottom: 16px;
}
.gb_infos__card-title {
  font-family: var(--font-titre);
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.gb_infos__card-body p {
  font-size: 14px; font-weight: 300;
  color: rgba(10,10,10,.5);
  line-height: 1.8;
  flex: 1;
}
.gb_infos__card-body strong { font-weight: 500; color: var(--noir); }

.gb_infos__nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gb_infos__nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gris-light);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--noir);
  transition: .2s;
}
.gb_infos__nav-btn:hover {
  background: var(--noir);
  color: var(--blanc);
  border-color: var(--noir);
}
.gb_infos__nav-btn.swiper-button-disabled {
  opacity: .25;
  pointer-events: none;
}
.gb_infos__progress {
  flex: 1;
  height: 2px;
  background: var(--gris-light);
  border-radius: 2px;
  overflow: hidden;
  max-width: 200px;
}
.gb_infos__progress-bar {
  height: 100%;
  background: var(--noir);
  border-radius: 2px;
  width: 0%;
  transition: width .3s;
}

/* ══════════════════════════════════
   CTA BAND
   ══════════════════════════════════ */
.gb_cta-band {
  background: var(--jaune);
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
}
.gb_cta-band__title {
  font-family: var(--font-titre);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--noir);
  margin-bottom: 16px;
}
.gb_cta-band__desc {
  font-size: 15px; font-weight: 300;
  color: rgba(10,10,10,.5);
  margin-bottom: 32px;
}
.gb_cta-band .gb_btn--dark:hover { background: #333; }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.gb_footer {
  background: var(--noir);
  padding: clamp(48px, 6vw, 80px) 0 0;
}

/* — Top : RS | Logo | CTA — */
.gb_footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}
.gb_footer__socials {
  display: flex;
  gap: 12px;
}
.gb_footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  clip-path: url(#squircle);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  font-size: 20px;
  transition: background .25s, color .25s;
}
.gb_footer__socials a:hover {
  background: var(--jaune);
  color: var(--noir);
}
.gb_footer__logo {
  max-width: 80px;
}
.gb_footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.gb_footer__cta {
  display: flex;
  align-items: center;
}
.gb_footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  transition: all .25s;
}
.gb_footer__cta-btn i {
  font-size: 18px;
}
.gb_footer__cta-btn:hover {
  border-color: var(--jaune);
  color: var(--jaune);
}

/* — Navigation — */
.gb_footer__nav {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.gb_footer__nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
}
.gb_footer__nav-list li a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  transition: color .2s;
  text-decoration: none;
}
.gb_footer__nav-list li a:hover {
  color: var(--jaune);
}

/* — Copyright — */
.gb_footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}
.gb_footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  margin: 0;
}
.gb_footer__bottom a {
  color: rgba(255,255,255,.2);
  transition: color .2s;
  text-decoration: none;
}
.gb_footer__bottom a:hover {
  color: rgba(255,255,255,.5);
}
.gb_footer__sep {
  margin: 0 6px;
  opacity: .3;
}

/* ══════════════════════════════════
   SPECTACLE HERO
   ══════════════════════════════════ */
.gb_spec-hero {
  background: transparent;
  padding-top: 72px;
  position: relative;
  z-index: 1;
}
.gb_spec-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 50px;
  background: var(--noir);
  z-index: -1;
}
.gb_spec-hero__inner {
  padding: 0 50px;
  position: relative;
  z-index: 2;
}
.gb_spec-hero__img {
  width: 100%;
  height: clamp(350px, 45vw, 600px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  max-width: 1600px;
  margin: auto;
}
.gb_spec-hero__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.5) 35%, transparent 65%);
}
.gb_spec-hero__breadcrumb {
  position: absolute;
  top: 24px; left: 32px;
  z-index: 2;
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,.4);
}
.gb_spec-hero__breadcrumb a { transition: color .2s; }
.gb_spec-hero__breadcrumb a:hover { color: var(--blanc); }
.gb_spec-hero__breadcrumb .sep { margin: 0 4px; }
.gb_spec-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 48px) clamp(32px, 4vw, 64px);
}
.gb_spec-hero__tags {
  display: flex; gap: 8px;
  margin-bottom: 12px;
}
.gb_spec-hero__tags .gb_tag {
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
}
.gb_spec-hero__title {
  font-family: var(--font-titre);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: .95;
  color: var(--blanc);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.gb_spec-hero__artist {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
}

/* Meta in hero */
.gb_spec-hero__meta {
  display: flex;
  gap: 0;
  margin-top: 24px;
}
.gb_spec-hero__meta-item {
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.gb_spec-hero__meta-item:first-child {
  border-left: none;
  padding-left: 0;
}
.gb_spec-hero__meta-label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.gb_spec-hero__meta-value {
  font-family: var(--font-titre);
  font-size: 15px; font-weight: 700;
  color: var(--blanc);
}

/* ══════════════════════════════════
   SPECTACLE CONTENT
   ══════════════════════════════════ */
.gb_spec {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.gb_spec__main {
  opacity: 0;
  animation: gb_fadeUp .8s cubic-bezier(.16,1,.3,1) .2s forwards;
}
.gb_spec__sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  opacity: 0;
  animation: gb_fadeUp .8s cubic-bezier(.16,1,.3,1) .4s forwards;
}

@keyframes gb_fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gb_spec__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin-bottom: 40px;
}
.gb_spec__meta-item {
  padding: 0 28px;
  border-left: 1px solid var(--gris-light);
}
.gb_spec__meta-item:first-child {
  border-left: none;
  padding-left: 0;
}
.gb_spec__meta-icon {
  font-size: 20px;
  color: var(--jaune);
  margin-bottom: 8px;
  display: block;
}
.gb_spec__meta-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 4px;
  display: block;
}
.gb_spec__meta-value {
  font-family: var(--font-titre);
  font-size: 16px; font-weight: 700;
  color: var(--noir);
}

.gb_spec__desc h3 {
  font-family: var(--font-titre);
  font-size: 22px; font-weight: 700;
  margin-bottom: 16px;
  margin-top: 32px;
}
.gb_spec__desc h3:first-child { margin-top: 0; }
.gb_spec__desc p {
  font-size: 15px; font-weight: 300;
  color: rgba(10,10,10,.55);
  line-height: 1.9;
  margin-bottom: 20px;
}
.gb_spec__desc blockquote {
  border-left: 3px solid var(--jaune);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  color: rgba(10,10,10,.6);
  font-size: 16px;
  line-height: 1.8;
}

/* Media / Gallery */
.gb_spec__media {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gris-light);
}
.gb_spec__media h3 {
  font-family: var(--font-titre);
  font-size: 22px; font-weight: 700;
  margin-bottom: 20px;
}
.gb_spec__media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gb_spec__media-item {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s;
}
.gb_spec__media-item:hover { transform: scale(1.02); }
.gb_spec__media-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* ══════════════════════════════════
   SIDEBAR V4 — Split Accent
   ══════════════════════════════════ */
.gb_sb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .15);
}

/* Accent top */
.gb_sb__top {
  background: var(--jaune);
  padding: 32px;
  position: relative;
}

.gb_sb__badge {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,0,0,.08);
  color: var(--noir);
  margin-bottom: 16px;
}
.gb_sb__date-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.gb_sb__date-box {
  background: rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
}
.gb_sb__day {
  font-family: var(--font-titre);
  font-size: 56px; font-weight: 800;
  line-height: .85;
  color: var(--noir);
}
.gb_sb__month {
  font-family: var(--font-titre);
  font-size: 14px; font-weight: 700;
  color: var(--noir);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1;
}
.gb_sb__year {
  font-family: var(--font-titre);
  font-size: 11px; font-weight: 500;
  color: rgba(0,0,0,.35);
  margin-top: 3px;
}
.gb_sb__time-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(0,0,0,.35);
  text-align: right;
}
.gb_sb__time-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.gb_sb__time-item {
  text-align: right;
}
.gb_sb__time-value {
  font-family: var(--font-titre);
  font-size: 24px;
  font-weight: 700;
  color: var(--noir);
  line-height: 1;
  margin-top: 6px;
}
.gb_sb__time {
  font-family: var(--font-titre);
  font-size: 36px; font-weight: 800;
  color: var(--noir);
  line-height: 1;
  margin-top: 6px;
}

/* Body */
.gb_sb__body {
  background: #fff;
  padding: 32px 32px 22px;
}

/* Prices */
.gb_sb__prices {
  margin-bottom: 24px;
}
.gb_sb__prices-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gris);
  /* margin-bottom: 10px; */
}
.gb_sb__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gris-light);
  font-size: 14px;
}
.gb_sb__price-row:last-child { border-bottom: none; }
.gb_sb__price-row span:first-child { color: var(--noir); }
.gb_sb__price-row span:last-child {
  font-family: var(--font-titre);
  font-size: 17px; font-weight: 700;
  color: var(--noir);
}
.gb_sb__price-single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
}
.gb_sb__price-single::after {
  content: '';
  flex: 1;
  border-bottom: 2px dotted rgba(0,0,0,.12);
  margin: 0 8px;
  order: 1;
}
.gb_sb__prices-title {
  order: 0;
}
.gb_sb__price-big {
  font-family: var(--font-titre);
  font-size: 28px; font-weight: 800;
  color: var(--noir);
  white-space: nowrap;
  order: 2;
}

/* Details (public + durée) */
.gb_sb__details {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.gb_sb__detail {
  font-size: 13px; font-weight: 400;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 6px;
}
.gb_sb__detail span { font-size: 14px; }

/* CTA */
.gb_sb__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px;
  background: var(--noir);
  color: var(--blanc);
  border-radius: 100px;
  font-family: var(--font-corps);
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none;
  transition: .3s;
}
.gb_sb__cta:hover {
  background: var(--jaune);
  color: var(--noir);
}
.gb_sb__cta--disabled {
  background: #D1D5DB;
  color: #6B7280;
  pointer-events: none;
  cursor: not-allowed;
  border: none;
}
.gb_sb__note {
  text-align: center;
  font-size: 11px;
  color: var(--gris);
  margin-top: 10px;
}
.gb_sb__note--highlight {
  background: #FFF4E5;
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 6px;
  color: #92400e;
  font-weight: 500;
  text-align: left;
  margin-bottom: 12px;
}

/* Infos pratiques */
.gb_sb__notice {
  margin-top: 16px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #78350F;
  line-height: 1.5;
}
.gb_sb__infos {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--gris-light);
  border-radius: var(--radius);
  padding: 28px;
}
.gb_sb__infos-title {
  font-family: var(--font-titre);
  font-size: 14px; font-weight: 700;
  color: var(--noir);
  margin-bottom: 14px;
}
.gb_sb__infos ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.gb_sb__infos li {
  font-size: 13px; font-weight: 300;
  color: var(--gris-dark);
  display: flex; gap: 10px; align-items: flex-start;
}
.gb_sb__infos li i { font-size: 16px; flex-shrink: 0; color: var(--gris); }
.gb_sb__infos-more {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--noir);
  padding-top: 14px;
  border-top: 1px solid var(--gris-light);
  transition: .2s;
}
.gb_sb__infos-more:hover { color: var(--jaune); }
.gb_sb__infos-more i { font-size: 12px; margin-left: 4px; }

/* ══════════════════════════════════
   SCOLAIRE CONTEXT — Overrides
   ══════════════════════════════════ */

/* Hero — same dark overlay as spectacle classique */

/* Tags */
.gb_tag--complet {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.scolaires-context .gb_tag--niveau {
  background: var(--scolaire-light);
  border-color: var(--scolaire-light);
  color: #fff;
}

/* Sidebar — blue accent */
.scolaires-context .gb_sb__top {
  background: var(--scolaire-primary);
  color: #fff;
}
.scolaires-context .gb_sb__cta {
  background: var(--scolaire-primary);
}
.scolaires-context .gb_sb__cta:hover {
  background: var(--scolaire-dark);
}
.scolaires-context .gb_sb__infos-more:hover {
  color: var(--scolaire-light);
}

/* Sidebar — scolaire booking top section */
.gb_sb__sco-dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.gb_sb__sco-date-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.gb_sb__sco-date-box {
  background: rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
  min-width: 54px;
  flex-shrink: 0;
}
.gb_sb__sco-date-day {
  font-family: var(--font-titre);
  font-size: 28px;
  font-weight: 800;
  line-height: .9;
  color: #fff;
}
.gb_sb__sco-date-month {
  font-family: var(--font-titre);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.8);
  margin-top: 3px;
}
.gb_sb__sco-date-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gb_sb__sco-date-weekday {
  font-family: var(--font-titre);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.gb_sb__sco-date-time {
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.gb_sb__sco-meta {
  display: flex;
  gap: 20px;
}
.gb_sb__sco-meta-item {
  text-align: left;
}

/* Sidebar — contact box */
.gb_sb__contact {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.gb_sb__contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #78350F;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gb_sb__contact-label i {
  font-size: 14px;
}
.gb_sb__contact-text {
  font-size: 13px;
  color: #78350F;
  line-height: 1.6;
  white-space: pre-line;
}

/* Axes pédagogiques */
.gb_spec__axes {
  background: #F0F9FF;
  border-left: 4px solid var(--scolaire-primary);
  padding: 24px 32px;
  border-radius: var(--radius);
  margin: 32px 0;
}
.gb_spec__axes-title {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--noir);
}
.gb_spec__axes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gb_spec__axes-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: 14px;
  color: var(--gris-dark);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.gb_spec__axes-item:last-child {
  border-bottom: none;
}
.gb_spec__axes-item i {
  color: var(--scolaire-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Buttons — scolaire variant */
.gb_btn--scolaire {
  border-color: var(--scolaire-light);
  color: var(--scolaire-light);
}

/* ══════════════════════════════════
   ARCHIVES PAGE
   ══════════════════════════════════ */
.gb_archives {
  padding: clamp(60px, 8vw, 100px) 0;
}
.gb_archives__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.gb_archives__title {
  font-family: var(--font-titre);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
  margin-bottom: 12px;
}
.gb_archives__subtitle {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 300;
  color: var(--gris);
}
.gb_archives__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.gb_archives__filter-btn {
  font-family: var(--font-titre);
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--gris-light);
  border-radius: 100px;
  color: var(--noir);
  text-decoration: none;
  transition: .3s;
}
.gb_archives__filter-btn:hover,
.gb_archives__filter-btn.active {
  background: var(--noir);
  color: var(--blanc);
  border-color: var(--noir);
}
.gb_archives__empty {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.gb_archives-link {
  padding: 40px 0 80px;
  text-align: center;
}
.gb_archives-link__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--gris);
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 100px;
  text-decoration: none;
  transition: .3s;
}
.gb_archives-link__btn:hover {
  color: var(--noir);
  border-color: var(--gris-light);
}

/* ══════════════════════════════════
   404 PAGE
   ══════════════════════════════════ */
.gb_404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.gb_404__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.gb_404__icon {
  font-size: clamp(80px, 12vw, 120px);
  color: var(--gris-light);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.gb_404__title {
  font-family: var(--font-titre);
  font-size: clamp(64px, 10vw, 96px);
  font-weight: 800;
  color: var(--noir);
  line-height: 1;
  margin-bottom: 16px;
}
.gb_404__text {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 32px;
}
.gb_404__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.gb_404__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--gris-light);
}
.gb_404__links a {
  font-size: 14px;
  color: var(--gris);
  text-decoration: none;
  transition: .2s;
}
.gb_404__links a:hover {
  color: var(--noir);
}

/* ══════════════════════════════════
   RESPONSIVE HOMEPAGE
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .gb_home-hero {
    min-height: 80vh;
    padding: clamp(100px, 15vw, 140px) 0 clamp(60px, 10vw, 80px);
  }
  .gb_home-hero__mosaique {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gb_home-hero__cell {
    height: 280px !important;
  }
  .gb_spectacles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gb_about {
    grid-template-columns: 1fr;
  }
  .gb_about__image {
    height: 300px;
  }
}

/* ══════════════════════════════════
   SPECTACLE PAGE — Sidebar overlap
   ══════════════════════════════════ */
.gb_spec__sidebar {
  margin-top: -200px;
  position: relative;
  z-index: 10;
}

/* ══════════════════════════════════
   RESPONSIVE SPECTACLE PAGE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .gb_spec {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 20px;
  }
  .gb_spec__sidebar {
    max-width: 100%;
    order: 1;
    margin-top: 0;
    z-index: auto;
  }
  .gb_spec__main {
    order: 2;
    padding-top: 40px;
  }
  .gb_sb {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════
   RESPONSIVE CONTACT PAGE
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .gb_contact__grid {
    grid-template-columns: 1fr;
  }
  .gb_contact__card {
    grid-column: span 1;
  }
  .gb_contact__card--wide {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════
   RESPONSIVE INFOS PAGE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .gb_infos__layout {
    grid-template-columns: 1fr;
  }
  .gb_infos__sidebar {
    position: static;
    max-height: none;
  }
}

/* ══════════════════════════════════
   RESPONSIVE GLOBAL
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .gb_footer__top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .gb_footer__socials {
    justify-content: center;
  }
  .gb_prog__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .gb_prog__filters {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gb_prog__filters::-webkit-scrollbar {
    display: none;
  }
}

/* ══════════════════════════════════
   PAIEMENT — Inline dropdown panel
   ══════════════════════════════════ */
.gb_sb__pay-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 22px;
  padding: 0;
  padding-top: 22px;
  background: none;
  border: none;
  border-top: 1px solid #EEE;
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 500;
  color: var(--gris);
  cursor: pointer;
  transition: color .2s;
}
.gb_sb__pay-toggle:hover { color: var(--noir); }
.gb_sb__pay-toggle .ph {
  font-size: 14px;
  transition: transform .3s ease;
}
.gb_sb__pay-toggle[aria-expanded="true"] .ph {
  transform: rotate(180deg);
}
.gb_sb__pay-panel {
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease;
  opacity: 0;
}
.gb_sb__pay-panel:not([hidden]) {
  opacity: 1;
}
.gb_sb__pay-panel[hidden] {
  display: block !important;
  max-height: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.gb_sb__pay-section {
  padding-top: 16px;
}
.gb_sb__pay-section:first-child {
  margin-top: 22px;
  border-top: 1px solid #EEE;
}
.gb_sb__pay-section + .gb_sb__pay-section {
  margin-top: 12px;
}
.gb_sb__pay-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gris-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gb_sb__pay-label .ph { font-size: 14px; }
.gb_sb__pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gb_sb__pay-badge {
  height: 26px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  object-fit: contain;
}

/* ══════════════════════════════════
   RELATED SPECTACLES
   ══════════════════════════════════ */
.gb_related {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--noir);
  color: var(--blanc);
}
.gb_related__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.gb_related__title {
  font-family: var(--font-titre);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
}
.gb_related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gb_related__card {
  display: block;
  cursor: pointer;
  transition: transform .25s;
}
.gb_related__card:hover { transform: translateY(-4px); }
.gb_related__card-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}
.gb_related__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gb_related__card:hover .gb_related__card-img img { transform: scale(1.04); }
.gb_related__card-date {
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(248, 248, 246, 0.6); margin-bottom: 6px;
}
.gb_related__card-title {
  font-family: var(--font-titre);
  font-size: 18px; font-weight: 700;
  margin-bottom: 2px;
}
.gb_related__card-artist {
  font-size: 14px; font-weight: 300; color: rgba(248, 248, 246, 0.6);
}

/* ══════════════════════════════════
   ARCHIVE HERO
   ══════════════════════════════════ */
.gb_archive-hero {
  background: var(--noir);
  padding: 200px 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.gb_archive-hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 65%;
  background-image: var(--hero-bg, url('https://www.centreculturelbrassens.fr/s/img/emotionheader22588852.jpg'));
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(.3);
}
.gb_archive-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--noir) 40%, rgba(10,10,10,.6) 70%, rgba(10,10,10,.3) 100%);
}
.gb_archive-hero .gb_container { position: relative; z-index: 1; }
.gb_archive-hero__title {
  font-family: var(--font-titre);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: .95;
  color: var(--blanc);
}

/* ══════════════════════════════════
   PAGE HERO (infos pratiques, contact)
   ══════════════════════════════════ */
.gb_page-hero {
  background: var(--noir);
  padding: 200px 0 clamp(48px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.gb_page-hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 65%;
  background-image: var(--hero-bg, url('https://www.centreculturelbrassens.fr/s/img/emotionheader22588852.jpg'));
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(.3);
}
.gb_page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--noir) 40%, rgba(10,10,10,.6) 70%, rgba(10,10,10,.3) 100%);
}
.gb_page-hero .gb_container { position: relative; z-index: 1; }
.gb_page-hero .gb_label { color: var(--jaune); }
.gb_page-hero__title {
  font-family: var(--font-titre);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: .95;
  color: var(--blanc);
}

/* ══════════════════════════════════
   INFOS PRATIQUES PAGE (gb_ip) — Gutenberg content
   ══════════════════════════════════ */
.gb_ip__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
}
.gb_ip__sidebar {
  position: sticky;
  top: 146px;
  align-self: start;
}
.gb_ip__nav {
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative;
  margin-top: 18px;
}
.gb_ip__nav::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 18px 220px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -17px;
  left: 0;
}
.gb_ip__nav-title {
  font-family: var(--font-titre);
  font-size: 13px; font-weight: 700;
  color: var(--noir);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 30px 30px 10px;
}
.gb_ip__nav-link {
  display: block;
  font-size: 14px; font-weight: 400;
  color: var(--gris);
  padding: 10px 0;
  border-bottom: 1px solid var(--gris-light);
  transition: .2s;
  text-decoration: none;
  padding-left: 25px;
  margin-right: 20px;
  border-left: 5px solid white;
}
.gb_ip__nav-link:last-child { border-bottom: none; }
.gb_ip__nav-link:hover {
  color: var(--noir);
  border-left: 5px solid var(--jaune);
}
/* Socials under TOC */
.gb_ip__socials {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gb_ip__socials-title {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gris);
}
.gb_ip__socials-links {
  display: flex;
  gap: 10px;
}
.gb_ip__socials-links a {
  width: 36px; height: 36px;
  clip-path: url(#squircle);
  background: var(--noir);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all .2s;
}
.gb_ip__socials-links a:hover {
  background: var(--jaune);
  color: var(--noir);
}

.gb_ip__nav-link.is-active {
  color: var(--noir);
  font-weight: 700;
  border-left: 3px solid var(--jaune);
}
.gb_ip__gutenberg {
  max-width: 800px;
}
.gb_ip__gutenberg h2 {
  font-family: var(--font-titre);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin: 48px 0 16px;
  color: var(--noir);
  scroll-margin-top: 100px;
}
.gb_ip__gutenberg h2:first-child { margin-top: 0; }
.gb_ip__gutenberg h3 {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--noir);
}
.gb_ip__gutenberg p {
  font-size: 15px; font-weight: 300;
  color: rgba(10,10,10,.55);
  line-height: 1.9;
  margin-bottom: 12px;
}
.gb_ip__gutenberg strong { font-weight: 500; color: var(--noir); }
.gb_ip__gutenberg ul, .gb_ip__gutenberg ol {
  font-size: 15px; font-weight: 300;
  color: rgba(10,10,10,.55);
  line-height: 1.9;
  margin: 0 0 16px 20px;
}
.gb_ip__gutenberg li { margin-bottom: 6px; }
.gb_ip__gutenberg a { color: var(--noir); transition: .2s; }
.gb_ip__gutenberg a:hover { color: var(--jaune); }
.gb_ip__gutenberg img {
  border-radius: var(--radius);
  margin: 0;
}
.gb_ip__gutenberg .wp-block-image {
  margin: 0;
}
.gb_ip__gutenberg .wp-block-image img {
  width: 100%; height: auto;
}
.gb_ip__gutenberg .wp-block-separator {
  border: none;
  border-top: 1px solid var(--gris-light);
  margin: 48px 0;
}
.gb_ip__gutenberg > .wp-block-group {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  margin: 0;
  margin-bottom: 30px;
}
.gb_ip__gutenberg > .wp-block-group:last-child {
  margin-bottom: 0;
}
.gb_ip__gutenberg > .wp-block-group:first-child {
  margin-top: 0;
  padding: 0;
}
.gb_ip__gutenberg .wp-block-group .wp-block-group {
  padding: 50px;
}
.gb_ip__gutenberg .wp-block-columns {
  gap: 32px;
}
.gb_ip__gutenberg blockquote,
.gb_ip__gutenberg .wp-block-quote {
  border-left: 3px solid var(--jaune);
  padding: 16px 24px;
  margin: 24px 0;
  font-style: italic;
  color: rgba(10,10,10,.6);
}

/* ══════════════════════════════════
   CONTACT PAGE — V4 MAP FIRST
   ══════════════════════════════════ */

/* Map hero */
/* SPLIT HERO CONTACT */
/* Carte + Infos */
.gb_ct-body {
  padding: 0 0 clamp(48px, 6vw, 80px);
  background: var(--blanc);
}
.gb_ct-body__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Infos contact */
.gb_ct-body__info {
  padding: 50px;
  background: #fff;
  border-radius: var(--radius);
  margin-top: 30px;
}
.gb_ct-body__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.gb_ct-body__block {
  display: flex;
  gap: 15px;
  align-items: center;
}
.gb_ct-body__block-icon {
  width: 38px;
  height: 38px;
  background: var(--noir);
  color: var(--jaune);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  justify-self: center;
  clip-path: url(#squircle);
}
.gb_ct-body__block-value {
  font-family: var(--font-titre);
  font-size: clamp(18px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--noir);
  display: block;
  text-decoration: none;
  transition: color .2s;
}
a.gb_ct-body__block-value:hover {
  color: var(--jaune);
}
.gb_ct-body__block-sub {
  font-size: 13px;
  color: var(--gris);
  margin-top: 0;
  line-height: 1.5;
}.gb_ct-body__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Carte (remonte sur le hero) */
.gb_ct-body__map-wrap {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.gb_ct-body__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gris-light);
  background: var(--gris-light);
}
.gb_ct-body__map #gb-contact-map {
  width: 100%;
  height: 380px;
}

/* Form + Team */
.gb_ct-content {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
  background: var(--blanc);
}
.gb_ct-content__grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.gb_ct-form {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
}
.gb_ct-form__title {
  font-family: var(--font-titre);
  font-size: 24px; font-weight: 800;
  margin-bottom: 8px;
}
.gb_ct-form__sub { font-size: 14px; color: var(--gris); margin-bottom: 28px; }
.gb_ct-form .wpcf7, .gb_ct-form form { text-align: left; }

/* Team */
.gb_ct-team__title {
  font-family: var(--font-titre);
  font-size: 24px; font-weight: 800;
  margin-bottom: 24px;
}
.gb_ct-person {
  padding: 16px 0;
  border-bottom: 1px solid var(--gris-light);
}
.gb_ct-person:last-child { border-bottom: none; }
.gb_ct-person__av {
  display: none;
}
.gb_ct-person__name { font-size: 15px; font-weight: 600; }
.gb_ct-person__role { font-size: 13px; color: var(--gris); }
.gb_ct-person__email {
  font-size: 13px; color: var(--gris); text-decoration: none; transition: .2s;
}
.gb_ct-person__email:hover { color: var(--jaune); }

/* Leaflet overrides */
.leaflet-control-attribution { font-size: 10px !important; opacity: .5; }
.gb_ct-marker {
  background: var(--noir);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--jaune);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  font-size: 18px; color: var(--jaune);
}
.gb_ct-marker::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--noir);
}

/* CF7 Form styling */
.gb_ct-form__body {
  background: #fff;
  border: 1px solid var(--gris-light);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
}

/* 2-col grid for name/email */
.gb_form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gb_form-field {
  margin-bottom: 24px;
}
.gb_form-field br,
.wpcf7-form br {
  display: none;
}
.gb_form-field label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 8px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--gris-light);
  border-radius: var(--radius);
  font-family: var(--font-corps);
  font-size: 15px;
  background: var(--blanc);
  color: var(--noir);
  transition: all .25s;
  appearance: none;
  -webkit-appearance: none;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--jaune);
  box-shadow: 0 0 0 3px rgba(0,255,162,.1);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--gris);
  font-weight: 300;
}
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}

/* Submit */
.gb_form-submit {
  text-align: center;
  margin-top: 8px;
}
.wpcf7 input[type="submit"] {
  background: var(--noir);
  color: var(--blanc);
  border: none;
  padding: 18px 48px;
  border-radius: 100px;
  font-family: var(--font-corps);
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--jaune);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,255,162,.25);
}

/* Validation */
.wpcf7-not-valid { border-color: #dc2626 !important; }
.wpcf7-not-valid-tip { font-size: 12px; color: #dc2626; margin-top: 6px; }
.wpcf7-response-output {
  text-align: center;
  font-size: 14px;
  margin-top: 24px !important;
  padding: 16px !important;
  border-radius: var(--radius) !important;
}

@media (max-width: 768px) {
  .gb_form-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .gb_hero__title { font-size: clamp(36px, 5vw, 56px); }
  .gb_prog__grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 900px) {
  .gb_spec { grid-template-columns: 1fr; gap: 40px; }
  .gb_spec__sidebar { position: static; }
  .gb_spec-hero__inner { padding: 0 20px; }
  .gb_spec-hero__img { height: 300px; }
  .gb_related__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --px: 16px; }

  /* Nav */
  .gb_nav__links { 
    display: none; 
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .gb_nav__links.is-open { display: flex; }
  .gb_nav__links li a {
    font-size: 16px;
    color: rgba(255,255,255,.6);
  }
  .gb_nav__links .sub-menu {
    position: static;
    transform: none;
    opacity: 1; visibility: visible;
    margin-top: 8px;
    background: transparent;
    border: none;
  }
  .gb_nav__burger { display: flex; }
  .gb_nav__logo-box {
    width: 80px; height: 80px;
    top: 16px;
  }
  .gb_nav__logo-box::before {
    top: -20px; left: -6px; right: -6px; bottom: -6px;
  }
  .gb_nav__logo-box img,
  .gb_nav__logo-box .custom-logo {
    width: 65px; height: 65px;
  }
  .gb_nav__cta { display: none; }

  /* Hero */
  .gb_hero__top { padding: 100px var(--px) 24px; }
  .gb_hero__title { font-size: clamp(32px, 9vw, 48px); }

  /* Prog */
  .gb_prog__header { flex-direction: column; align-items: flex-start; }
  .gb_prog__grid { grid-template-columns: 1fr; gap: 24px; }
  .gb_prog__filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .gb_prog__filter { white-space: nowrap; }

  /* About */
  .gb_about__cols { grid-template-columns: 1fr; }
  .gb_about__quote { flex-direction: column; gap: 16px; }
  .gb_about__quote-mark { font-size: 48px; }

  /* Infos */
  .gb_infos__swiper .swiper-slide { width: 280px; }
  .gb_infos__nav { margin-top: 24px; }

  /* CTA */
  .gb_cta-band__title { font-size: clamp(28px, 7vw, 40px); }

  /* Footer */
  .gb_footer__nav-list { gap: 8px 24px; }
  .gb_footer__bottom { flex-direction: column; text-align: center; }

  /* Contact page */
  .gb_ct-body__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gb_ct-body__map-wrap {
    margin-top: -80px;
  }
  .gb_ct-body__map #gb-contact-map {
    height: 280px;
  }
  .gb_ct-body__info {
    padding-top: 36px;
  }
  .gb_ct-content__grid {
    grid-template-columns: 1fr;
  }

  /* Infos page */
  .gb_ip__grid { grid-template-columns: 1fr; }
  .gb_ip__sidebar { position: static; margin-bottom: 32px; }
  .gb_ip__gutenberg { max-width: 100%; }
  .gb_ip__gutenberg .wp-block-group .wp-block-group { padding: 15px; }

  /* Contact */
  .gb_ct-map__overlay { flex-direction: column; align-items: flex-start; }
  .gb_ct-quick__grid { grid-template-columns: 1fr 1fr; }
  .gb_ct-content__grid { grid-template-columns: 1fr; }
  .gb_ct2-map__wrap { height: 260px; }
  .gb_ct2-map__card { position: static; max-width: none; box-shadow: none; border-top: 1px solid var(--gris-light); border-radius: 0; }
}

@media (max-width: 400px) {
  .gb_hero__btns { flex-direction: column; }
  .gb_hero__btns .gb_btn { width: 100%; text-align: center; }
  .gb_footer__nav-list { flex-direction: column; align-items: center; gap: 8px; }
}

/* ═══════════════════════════════════════════
   PAGE SCOLAIRES
   ════════════════════════════════════════ */

/* Hero scolaires — dégradé bleu (même pattern que le noir) */
.gb_archive-hero--scolaires::after {
  background: linear-gradient(to right, #0c2d42 40%, rgba(58, 124, 165, .6) 70%, rgba(58, 124, 165, .3) 100%);
}

/* Section spectacles scolaires — fond légèrement teinté bleu */
.gb_prog--scolaires {
  /* background: linear-gradient(180deg, rgba(58,124,165,.06) 0%, transparent 100%); */
  position: relative;
}

/* Section dispositif */
.gb_sco-dispositif {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #2c5f7f;
}
.gb_sco-dispositif .gb_label--dark {
  color: rgba(255,255,255,.5);
}
.gb_sco-dispositif .gb_about__title {
  margin-top: 12px;
  margin-bottom: 48px;
  color: #fff;
}

/* Avantages */
.gb_sco-avantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.gb_sco-avantage {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.gb_sco-avantage__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  clip-path: url(#squircle);
}
.gb_sco-avantage__title {
  font-family: var(--font-titre);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.gb_sco-avantage__desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0;
}

/* Infos pratiques */
.gb_sco-infos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--noir);
  border-radius: var(--radius);
  padding: 48px;
}
.gb_sco-infos__title {
  font-family: var(--font-titre);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gb_sco-infos__text {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0 0 16px;
}
.gb_sco-infos__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gb_sco-infos__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.gb_sco-infos__list li i {
  flex-shrink: 0;
  color: var(--scolaire-light);
  font-size: 17px;
  margin-top: 1px;
}
.gb_sco-infos__list li strong {
  color: #fff;
}
.gb_sco-infos__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.gb_sco-infos__contact i {
  color: var(--scolaire-light);
  font-size: 17px;
}
.gb_sco-infos__contact a {
  color: var(--scolaire-light);
  text-decoration: none;
  font-weight: 600;
}
.gb_sco-infos__contact a:hover { text-decoration: underline; }
.gb_sco-infos__downloads {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  margin-top: 8px;
}
.gb_sco-infos__dl-title {
  font-family: var(--font-titre);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gb_sco-infos__dl-title i {
  font-size: 18px;
  color: var(--scolaire-light);
}
.gb_sco-infos__dl-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* CTA band — bleu scolaire */
.scolaires-context .gb_cta-band {
  background: var(--scolaire-dark);
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.scolaires-context .gb_cta-band__title,
.scolaires-context .gb_cta-band__desc {
  color: #fff;
}

/* Responsive */
@media (max-width: 860px) {
  .gb_sco-avantages { grid-template-columns: 1fr; }
  .gb_sco-infos { grid-template-columns: 1fr; padding: 32px 24px; gap: 36px; }
}
@media (max-width: 600px) {
  .gb_sco-avantage { flex-direction: column; }
  .gb_sco-avantage__icon { width: 44px; height: 44px; font-size: 18px; }
}
