/* ═══════════════════════════════════════════════════
   LILIE AND THE FLOWERS — Charte graphique v2 2026
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy:   #1A1A1A;
  --red:    #D80524;
  --gold:   #E0B84D;
  --cream:  #F7F4ED;
  --dark:   #222222;
  --white:  #ffffff;
  --navy-80: rgba(26,26,26,.8);
  --navy-10: rgba(26,26,26,.08);
  --red-hover: #b00018;
  --font-h: 'Bebas Neue', 'Oswald', sans-serif;
  --font-b: 'Montserrat', 'Open Sans', sans-serif;
  --font-title: 'Black Ops One', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; height: 70px;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
nav.scrolled,
nav.always-dark {
  background: var(--navy);
  box-shadow: 0 3px 24px rgba(0,0,0,.3);
}
.nav-logo {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-h); font-size: 1.25rem; letter-spacing: 2px; line-height: 1;
  color: #fff; white-space: nowrap;
}
.nav-logo img {
  height: 48px; width: auto; flex-shrink: 0;
}
@media(max-width:480px) {
  .nav-logo img { height: 38px; }
  .nav-logo-text { display: none; }
  .nav-right { gap: .6rem; }
  .nav-social { width: 28px; height: 28px; }
  .nav-social svg { width: 13px; height: 13px; }
}
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.8px;
  transition: color .2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s; border-radius: 1px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-cta {
  background: var(--red); color: #fff;
  padding: .42rem 1.2rem; border-radius: 3px;
  font-weight: 700; transition: background .2s, transform .15s;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--red-hover); transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-socials { display: flex; align-items: center; gap: .5rem; }
.nav-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  padding: 0; flex-shrink: 0;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.25);
  transition: color .2s, border-color .2s;
}
.nav-social:hover { color: var(--gold); border-color: var(--gold); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: .3s;
}

@media(max-width:960px) {
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy);
    border-top: 3px solid var(--red);
    padding: 1rem 4% 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: .8rem 0; font-size: .9rem; width: 100%; display: block; }
  .nav-links a.nav-cta { display: inline-block; width: auto; margin-top: .6rem; }
  .nav-burger { display: flex; }
}

/* ─── HERO ACCUEIL ─── */
#hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('img/hero_banner.jpg');
  background-size: cover; background-position: center top;
  opacity: .75;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(26,26,26,.92) 0%,
    rgba(26,26,26,.75) 50%,
    rgba(26,26,26,.3) 100%
  );
}
.hero-stripe {
  position: absolute; top: 0; right: 0;
  width: 4px; height: 100%;
  background: var(--red);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; max-width: 820px;
  padding-top: 70px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0; animation: aFadeUp .6s .2s forwards;
}
.hero-eyebrow span { display: block; width: 28px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1; color: #fff; letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0; animation: aSlideRight .7s .4s forwards;
}
.hero-title em {
  display: block; color: var(--red);
  font-style: normal;
}
.hero-genres {
  font-size: clamp(.9rem, 2vw, 1.1rem); font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.2rem;
  opacity: 0; animation: aFadeUp .6s .75s forwards;
}
.hero-genres span { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.hero-slogan {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.72); font-style: italic;
  margin-bottom: .5rem;
  opacity: 0; animation: aFadeUp .6s .95s forwards;
}
.hero-slogan2 {
  font-size: clamp(.88rem, 1.6vw, 1rem);
  color: rgba(255,255,255,.55);
  margin-bottom: 2.5rem;
  opacity: 0; animation: aFadeUp .6s 1.1s forwards;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; animation: aFadeUp .6s 1.3s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 5%;
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.4);
  font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
  z-index: 2;
  opacity: 0; animation: aFadeIn 1s 2s forwards;
}
.hero-scroll-line {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,.4), transparent);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 9rem 5% 4rem;
  border-bottom: 4px solid var(--red);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('img/hero_banner.jpg');
  background-size: cover; background-position: center;
  opacity: .12;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .5rem;
}
.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: #fff; letter-spacing: 2px;
  line-height: 1;
}

/* ─── ANIMATIONS ─── */
@keyframes aFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aSlideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes aFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s, transform .55s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SECTIONS ─── */
section { padding: 6rem 5%; }
.container { max-width: 1140px; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy  { background: var(--navy); }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1; color: var(--navy);
  letter-spacing: 2px; margin-bottom: 1rem;
}
.section-title.white { color: #fff; }
.section-divider {
  width: 56px; height: 4px;
  background: var(--red);
  margin-bottom: 2.8rem; border-radius: 2px;
}
.section-divider.gold { background: var(--gold); }
.section-lead {
  font-size: 1.05rem; color: #555;
  max-width: 640px; line-height: 1.8; margin-bottom: 2.5rem;
}
.section-lead.white { color: rgba(255,255,255,.7); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-b); font-weight: 600;
  font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: .9rem 2.2rem; border-radius: 3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-red {
  background: var(--red); color: #fff;
}
.btn-red:hover {
  background: var(--red-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216,5,36,.4);
}
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #2a2a2a; transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ─── TRUSTS ─── */
.trusts {
  background: var(--white);
  padding: 3rem 5%;
  border-bottom: 1px solid rgba(26,26,26,.08);
}
.trusts-inner { max-width: 1140px; margin: 0 auto; text-align: center; }
.trusts-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: #888;
  margin-bottom: 1.5rem; display: block;
}
.trusts-list {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: .8rem 1.5rem; list-style: none;
}
.trusts-list li {
  font-size: .85rem; font-weight: 600;
  color: var(--navy); letter-spacing: .5px;
  padding: .45rem 1.2rem;
  border: 1px solid rgba(26,26,26,.2); border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.trusts-list li:hover { border-color: var(--red); color: var(--red); }

/* ─── CONCERTS PREVIEW (home) ─── */
.concerts-preview { max-width: 1140px; }
.date-card {
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1rem;
  transition: transform .2s, box-shadow .2s;
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(26,26,26,.07);
}
.date-card:hover { transform: translateX(4px); box-shadow: 0 6px 24px rgba(26,26,26,.12); }
.date-cal {
  background: var(--navy); border-radius: 4px;
  padding: .8rem 1.2rem; text-align: center;
  min-width: 68px; flex-shrink: 0;
}
.date-day {
  font-family: var(--font-h); font-size: 2rem;
  color: #fff; line-height: 1;
}
.date-month {
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); font-weight: 700;
}
.date-year { font-size: .65rem; color: rgba(255,255,255,.5); }
.date-info { flex: 1; min-width: 160px; }
.date-title { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: .2rem; }
.date-loc { color: #777; font-size: .88rem; }
.date-badge {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: .3rem .8rem;
  border: 1px solid rgba(26,26,26,.25); border-radius: 2px;
  color: var(--navy); background: var(--navy-10); flex-shrink: 0;
}
.date-badge.private { border-color: var(--red); color: var(--red); background: rgba(216,5,36,.06); }
.date-actions { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; flex-shrink: 0; }
.date-link-btn {
  font-size: .75rem; color: var(--navy); font-weight: 700;
  padding: .28rem .75rem; border: 1px solid rgba(26,26,26,.3); border-radius: 2px;
  transition: background .2s, color .2s;
  display: inline-flex; align-items: center; gap: .3rem;
}
.date-link-btn:hover { background: var(--navy); color: #fff; }
.date-maps-btn {
  font-size: .75rem; color: #fff; background: #1a73e8;
  font-weight: 700; padding: .28rem .75rem; border-radius: 2px;
  display: inline-flex; align-items: center; gap: .3rem;
}
.date-maps-btn:hover { background: #1558b0; }
.date-affiche {
  width: 48px; height: 64px; object-fit: cover;
  border-radius: 4px; cursor: pointer; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

/* ─── FORMATS GRID ─── */
.formats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem; max-width: 1140px;
}
.format-card {
  background: var(--navy);
  border-radius: 4px; padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--red);
  transition: transform .25s, box-shadow .25s;
}
.format-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,26,26,.25); }
.format-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.format-card h3 {
  font-family: var(--font-h); font-size: 1.15rem;
  color: #fff; letter-spacing: 1.5px; margin-bottom: .5rem;
}
.format-card p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ─── MEMBRES ─── */
.membres-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; max-width: 1140px;
}
.membre-card {
  background: var(--white);
  border-radius: 4px; overflow: hidden;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--red);
}
.membre-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(26,26,26,.15); }
.membre-photo {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter .3s, transform .3s;
}
.membre-card:hover .membre-photo { filter: grayscale(0%); transform: scale(1.03); }
.membre-card-body { padding: 1.2rem 1rem 1.5rem; }
.membre-name {
  font-family: var(--font-h); font-size: 1.3rem;
  color: var(--navy); letter-spacing: 1px; margin-bottom: .2rem;
}
.membre-role {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red); margin-bottom: .4rem;
}
.membre-bio { font-size: .85rem; color: #666; line-height: 1.6; }

/* ─── GALERIE PHOTOS ─── */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem; max-width: 1140px;
}
.photos-grid .item-wide { grid-column: span 2; }
.photo-item {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 2px;
  aspect-ratio: 4/3;
}
.photo-item.item-wide { aspect-ratio: 8/3; }
.photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s, filter .3s;
  filter: brightness(.88);
}
.photo-item:hover img { transform: scale(1.05); filter: brightness(1); }
.photo-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.photo-item:hover .photo-overlay { background: rgba(26,26,26,.3); }
.photo-expand {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s;
}
.photo-item:hover .photo-expand { opacity: 1; transform: scale(1); }

@media(max-width:768px) {
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .photos-grid .item-wide { grid-column: span 2; }
}
@media(max-width:480px) {
  .photos-grid { grid-template-columns: 1fr; }
  .photos-grid .item-wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.95);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 3px; }
.lb-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-size: 2.2rem; color: #fff; cursor: pointer;
  background: none; border: none; opacity: .7; transition: opacity .2s;
  line-height: 1;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 1.8rem; color: #fff; cursor: pointer;
  background: rgba(216,5,36,.5); border: none;
  padding: .8rem 1.1rem; border-radius: 2px;
  transition: background .2s;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: var(--red); }

/* ─── VIDEOS YOUTUBE ─── */
.videos-featured { max-width: 1140px; margin-bottom: 1.5rem; }
.video-embed {
  position: relative; padding-bottom: 56.25%;
  border-radius: 4px; overflow: hidden;
  background: #000;
  box-shadow: 0 8px 40px rgba(26,26,26,.2);
}
.video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none;
}
.video-title {
  font-family: var(--font-h); font-size: 1.1rem;
  color: var(--navy); letter-spacing: 1px;
  margin-top: .6rem;
}
.videos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem; max-width: 1140px;
}
.video-card-yt { background: var(--white); border-radius: 4px; overflow: hidden; }
.video-card-yt .video-embed { border-radius: 0; }
.video-card-yt .video-info { padding: .8rem 1rem; }
.video-card-yt .video-info .video-title { font-size: .95rem; margin-top: 0; }
.video-card-yt .video-info .video-loc { font-size: .8rem; color: #888; }

/* ─── RÉPERTOIRE ─── */
.repertoire-cats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 1140px;
}
.rep-cat {
  background: var(--white); border-radius: 4px;
  border-top: 4px solid var(--red);
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 16px rgba(26,26,26,.07);
}
.rep-cat.funk  { border-top-color: var(--gold); }
.rep-cat.disco { border-top-color: var(--navy); }
.rep-cat.fr    { border-top-color: #555; }
.rep-cat-icon { font-size: 2rem; margin-bottom: .8rem; }
.rep-cat h3 {
  font-family: var(--font-h); font-size: 1.4rem;
  color: var(--navy); letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem; border-bottom: 1px solid rgba(26,26,26,.1);
}
.rep-list { list-style: none; }
.rep-list li {
  font-size: .88rem; color: var(--dark);
  padding: .4rem 0; border-bottom: 1px solid rgba(26,26,26,.05);
  display: flex; align-items: baseline; gap: .5rem;
}
.rep-list li::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--red); flex-shrink: 0;
  margin-top: .4rem;
}
.rep-cat.funk  .rep-list li::before { background: var(--gold); }
.rep-cat.disco .rep-list li::before { background: var(--navy); }
.rep-cat.fr    .rep-list li::before { background: #555; }
.rep-artist { font-weight: 700; color: var(--navy); }
.rep-song    { color: #666; font-style: italic; font-size: .83rem; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem;
  max-width: 1140px;
}
.contact-info h2 { color: #fff; }
.contact-available {
  margin-top: 2rem;
}
.contact-available h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.contact-available ul { list-style: none; }
.contact-available li {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .92rem; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: .7rem;
}
.contact-available li::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--red); flex-shrink: 0;
}
.contact-socials { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.contact-social-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: .6rem 1.2rem; border-radius: 3px;
  transition: opacity .2s, transform .15s;
}
.contact-social-btn:hover { opacity: .85; transform: translateY(-1px); }
.contact-social-btn.instagram { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color: #fff; }
.contact-social-btn.facebook  { background: #1877f2; color: #fff; }
.contact-social-btn.email     { background: var(--red); color: #fff; }

.contact-form {
  background: var(--white); border-radius: 4px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.contact-form h3 {
  font-family: var(--font-h); font-size: 1.5rem;
  color: var(--navy); letter-spacing: 1.5px; margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #888; margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream); border: 1px solid rgba(26,26,26,.15);
  border-radius: 3px; padding: .75rem 1rem;
  font-family: var(--font-b); font-size: .95rem; color: var(--dark);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-checkboxes { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.form-check {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; cursor: pointer;
  padding: .35rem .8rem;
  border: 1px solid rgba(26,26,26,.2); border-radius: 2px;
  transition: border-color .2s, background .2s;
}
.form-check:hover { border-color: var(--red); }
.form-check input { width: auto; }
.form-success {
  background: rgba(0,160,60,.1); border: 1px solid rgba(0,160,60,.3);
  border-radius: 3px; padding: 1rem; color: #006620;
  font-size: .9rem; margin-bottom: 1rem; display: none;
}
.form-error {
  background: rgba(216,5,36,.08); border: 1px solid rgba(216,5,36,.3);
  border-radius: 3px; padding: 1rem; color: var(--red);
  font-size: .9rem; margin-bottom: 1rem; display: none;
}

@media(max-width:768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ─── ABOUT (groupe.html) ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; max-width: 1140px;
}
.about-text p { color: #555; line-height: 1.85; margin-bottom: 1.2rem; font-size: 1rem; }
.about-text p strong { color: var(--navy); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--navy); border-radius: 4px; padding: 2rem 1.5rem;
  text-align: center; border-bottom: 3px solid var(--red);
}
.stat-num {
  font-family: var(--font-h); font-size: 3rem; color: #fff;
  line-height: 1; margin-bottom: .3rem;
}
.stat-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold);
}

@media(max-width:768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── CTA BAND (strip) ─── */
.cta-strip {
  background: var(--red); padding: 4rem 5%;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff; letter-spacing: 2px; margin-bottom: 1rem;
}
.cta-strip p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 2rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 5rem 5% 2rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-h); font-size: 1.8rem; letter-spacing: 3px;
  color: #fff; display: block; margin-bottom: .8rem;
}
.footer-genres {
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .88rem; color: rgba(255,255,255,.5);
  line-height: 1.75; margin-bottom: 1.2rem;
}
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-newsletter { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); max-width: 360px; }
.footer-newsletter h4 {
  font-family: var(--font-h); font-size: 1rem;
  color: #fff; letter-spacing: 2.5px; margin-bottom: .6rem;
}
.footer-newsletter-text { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input[type=email] {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px; padding: .6rem .9rem;
  font-family: var(--font-b); font-size: .88rem; color: #fff;
  transition: border-color .2s;
}
.newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input[type=email]:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  background: var(--red); color: #fff; border: none; border-radius: 3px;
  padding: 0 1.2rem; font-family: var(--font-b); font-weight: 700; font-size: .82rem;
  letter-spacing: .5px; cursor: pointer; transition: background .2s;
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--red-hover); }
.newsletter-consent {
  display: flex; align-items: flex-start; gap: .5rem; cursor: pointer;
  margin-top: .7rem; font-size: .74rem; line-height: 1.5; color: rgba(255,255,255,.45);
}
.newsletter-consent input { width: auto; margin-top: .2rem; flex-shrink: 0; }
.newsletter-msg { font-size: .82rem; margin-top: .7rem; display: none; }
.newsletter-msg.success { color: #6fcf97; display: block; }
.newsletter-msg.error { color: #ff8080; display: block; }
@media(max-width:480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { padding: .65rem; }
}

.footer-col h4 {
  font-family: var(--font-h); font-size: 1rem;
  color: #fff; letter-spacing: 2.5px; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .7rem; }
.footer-col a {
  color: rgba(255,255,255,.5); font-size: .85rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  text-align: center; font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: var(--gold); }

@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── RESPONSIVE COMMUN ─── */
@media(max-width:640px) {
  section { padding: 4rem 5%; }
  .hero-title { font-size: clamp(3.5rem, 16vw, 6rem); }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .membres-grid { grid-template-columns: 1fr 1fr; }
  .repertoire-cats { grid-template-columns: 1fr; }
}
@media(max-width:400px) {
  .formats-grid { grid-template-columns: 1fr; }
  .membres-grid { grid-template-columns: 1fr; }
}

/* ─── FOOTER LOGO IMG ─── */
.footer-logo-img {
  height: 80px; width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: .9;
}

/* ─── LIGHTBOX AFFICHE ─── */
#lightbox-affiche {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.95);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
#lightbox-affiche.open { display: flex; }
#lightbox-affiche img {
  max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 3px;
}
