/*
Theme Name: Collectif Ronce
Theme URI: https://collectifronce.fr
Author: Collectif Ronce — Brunelle Dalbavie, Jérémy Piningre, Aëla Maï Cabel
Description: Thème artistique pour le collectif Ronce, Limousin. Esthétique risographie, typographie post-binaire.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ronce
*/

/* ─── Import typo web ──────────────────────────────────────
   Space Grotesk (sans-serif corps de texte)
   + BBB fonts chargées via @font-face dans functions.php
   ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&display=swap');

/* ─── Polices Bye Bye Binary ─────────────────────────────
   Pour activer une police BBB :
   1. Téléchargez une police sur https://genderfluid.space
   2. Uploadez le fichier .woff2 dans Médiathèque WordPress
   3. Copiez l'URL du fichier uploadé
   4. Remplacez l'URL ci-dessous et décommentez les lignes

@font-face {
  font-family: 'BBB';
  src: url('COLLEZ-ICI-URL-DU-FICHIER-WOFF2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

   5. Puis changez dans :root ci-dessous :
      --titre: 'BBB', 'Space Grotesk', sans-serif;
   ─────────────────────────────────────────────────────── */


/* ─── Variables risographie ────────────────────────────── */
:root {
  /* Palette */
  --indigo:       #1a1464;
  --indigo-clair: #2e2096;
  --indigo-pale:  #d8d4f0;
  --orange:       #c85a1e;
  --orange-pale:  #f5dece;
  --ocre:         #b08040;
  --terre:        #7a5c3c;
  --vert-mousse:  #4a6040;
  --creme:        #f7f3ec;
  --blanc:        #ffffff;
  --noir:         #1a1a1a;
  --gris:         #6b6b6b;
  --bordure:      #e0dbd2;

  /* Typo */
  --titre:  'BBBOpenSans', 'Space Grotesk', sans-serif;
  --corps:  'Space Grotesk', system-ui, sans-serif;

  /* Espacements */
  --nav-h:  64px;
  --max-w:  1200px;
  --gap:    clamp(20px, 4vw, 60px);
}

/* ─── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--corps);
  background: var(--creme);
  color: var(--noir);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── Grain texture (effet risographie) ─────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ─── Navigation ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  z-index: 100;
  mix-blend-mode: normal;
}

.site-logo {
  font-family: var(--titre);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--creme);
}
.site-logo em {
  font-style: normal;
  color: var(--orange);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-pale);
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item { color: var(--creme); }
.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after { width: 100%; }

/* Sous-menu artistes */
.nav-menu .menu-item-has-children { position: relative; }
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--indigo);
  padding: 12px 0;
  min-width: 200px;
  border-top: 2px solid var(--orange);
}
.nav-menu .menu-item-has-children:hover .sub-menu { display: block; }
.nav-menu .sub-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.75rem;
}
.nav-menu .sub-menu a:hover { background: var(--indigo-clair); }
.nav-menu .sub-menu a::after { display: none; }

/* ─── Main ──────────────────────────────────────────────── */
.site-main { margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h)); }

/* ─── Hero page d'accueil ───────────────────────────────── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-texte {
  background: var(--indigo);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 6vw, 80px);
  position: relative;
}



.hero-surtitre {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-titre {
  font-family: var(--titre);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--creme);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero-titre span {
  display: block;
  color: var(--orange);
  font-size: 0.48em;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 14px;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--indigo-pale);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-membres {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-membre-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creme);
  border: 1px solid rgba(247,243,236,0.3);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.2s;
}
.hero-membre-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--indigo-pale);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(0.7);
  transition: transform 0.8s ease;
}
.hero-image:hover img { transform: scale(1.03); }

/* Overlay couleur risographie sur l'image hero */


/* ─── Section travaux collectif ─────────────────────────── */
.section-collectif {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 50px;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}
.section-titre {
  font-family: var(--titre);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.1;
}
.section-ligne {
  flex: 1;
  height: 1px;
  background: var(--bordure);
  margin-left: 16px;
}

/* Grille projets collectif */
.projets-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.projet-card { position: relative; overflow: hidden; cursor: pointer; }
.projet-card:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.projet-card:nth-child(2) { grid-column: span 5; aspect-ratio: 4/5; }
.projet-card:nth-child(3) { grid-column: span 4; aspect-ratio: 1; }
.projet-card:nth-child(4) { grid-column: span 4; aspect-ratio: 1; }
.projet-card:nth-child(5) { grid-column: span 4; aspect-ratio: 1; }
.projet-card:nth-child(n+6) { grid-column: span 4; aspect-ratio: 1; }

.projet-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.85);
}
.projet-card:hover .projet-card-img {
  transform: scale(1.06);
  filter: saturate(1);
}

.projet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,43,107,0.8) 0%, rgba(200,90,30,0.4) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.projet-card:hover .projet-card-overlay { opacity: 1; }

.projet-card-info { color: var(--creme); }
.projet-card-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.projet-card-titre {
  font-family: var(--titre);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Fond coloré pour cartes sans image */
.projet-card.no-img { background: var(--indigo-pale); }
.projet-card.no-img:nth-child(2n) { background: var(--orange-pale); }
.projet-card.no-img .projet-card-overlay { opacity: 1; background: none; }
.projet-card.no-img .projet-card-info { color: var(--indigo); }
.projet-card.no-img .projet-card-titre { font-size: 1.3rem; }

/* ─── Pages artistes ────────────────────────────────────── */
.artiste-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--indigo);
}
.artiste-hero-img {
  position: relative;
  overflow: hidden;
}
.artiste-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) sepia(0.2);
  mix-blend-mode: luminosity;
}
.artiste-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--indigo);
  opacity: 0.35;
  z-index: 1;
}
.artiste-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0.18;
  mix-blend-mode: color;
  z-index: 2;
}

.artiste-hero-info {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.artiste-prenom {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.artiste-nom {
  font-family: var(--titre);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--creme);
  line-height: 1;
  margin-bottom: 24px;
}
.artiste-pratiques {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.artiste-pratique-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-pale);
  border: 1px solid rgba(221,220,240,0.35);
  padding: 5px 12px;
  border-radius: 1px;
}
.artiste-bio-court {
  font-size: 0.92rem;
  color: var(--indigo-pale);
  max-width: 420px;
  line-height: 1.75;
}

.artiste-contenu {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 100px) clamp(16px, 5vw, 80px);
}

/* Galerie artiste masonry-like */
.artiste-galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 50px 0;
}
.artiste-galerie img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 0.3s, transform 0.4s;
}
.artiste-galerie img:hover { filter: saturate(1.1); transform: scale(1.02); }
.artiste-galerie img:nth-child(4n+1) { aspect-ratio: 1; }
.artiste-galerie img:nth-child(4n+2) { aspect-ratio: 3/4; }

/* ─── Page Cardon Luneux ─────────────────────────────────── */
.cardon-hero {
  background: var(--indigo);
  padding: clamp(80px, 10vw, 140px) clamp(16px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.cardon-hero::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.08;
}
.cardon-hero::after {
  content: '';
  position: absolute;
  top: -60px; left: 30%;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: var(--ocre);
  opacity: 0.07;
}
.cardon-surtitre {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.cardon-titre {
  font-family: var(--titre);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--creme);
  margin-bottom: 28px;
  position: relative;
}
.cardon-titre span { color: var(--orange); }
.cardon-desc {
  font-size: 0.95rem;
  color: var(--indigo-pale);
  line-height: 1.75;
  max-width: 440px;
}

/* Catalogue */
.catalogue {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.catalogue-item {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  transition: transform 0.3s, box-shadow 0.3s;
}
.catalogue-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,43,107,0.12);
}
.catalogue-item-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--indigo-pale);
}
.catalogue-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: saturate(0.85);
}
.catalogue-item:hover .catalogue-item-img img { transform: scale(1.04); filter: saturate(1); }
.catalogue-item-info { padding: 18px 20px 20px; }
.catalogue-item-type {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.catalogue-item-titre {
  font-family: var(--titre);
  font-size: 1rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 6px;
}
.catalogue-item-auteur { font-size: 0.82rem; color: var(--gris); margin-bottom: 10px; }
.catalogue-item-prix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--indigo);
}

/* ─── Formulaire de commande ─────────────────────────────── */
.commande-section {
  background: var(--indigo-pale);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 80px);
}
.commande-inner {
  max-width: 680px;
  margin: 0 auto;
}
.commande-titre {
  font-family: var(--titre);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 10px;
}
.commande-sous-titre {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: 40px;
}

.ronce-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--corps);
  font-size: 0.92rem;
  background: var(--blanc);
  border: 1.5px solid var(--bordure);
  color: var(--noir);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 1px;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--indigo); }
.form-textarea { min-height: 120px; resize: vertical; }

.form-submit {
  font-family: var(--titre);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--indigo);
  color: var(--creme);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--orange); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }

/* Messages de succès/erreur */
.form-notice {
  padding: 14px 20px;
  font-size: 0.88rem;
  border-radius: 1px;
}
.form-notice.success { background: #e6f2e8; color: #2a6632; border-left: 3px solid var(--vert-mousse); }
.form-notice.error   { background: #faeaea; color: #8b2020; border-left: 3px solid #c04040; }

/* ─── Page texte générique (À propos collectif) ─────────── */
.page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) clamp(16px, 5vw, 60px);
}
.page-header { margin-bottom: 50px; padding-bottom: 24px; border-bottom: 1px solid var(--bordure); }
.page-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.page-h1 {
  font-family: var(--titre);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.1;
}
.page-content { font-size: 1rem; line-height: 1.85; color: var(--noir); }
.page-content p { margin-bottom: 1.4em; }
.page-content h2 {
  font-family: var(--titre);
  font-size: 1.3rem;
  color: var(--indigo);
  margin: 2.5em 0 0.8em;
}
.page-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.page-content blockquote {
  border-left: 3px solid var(--orange);
  margin: 2em 0;
  padding: 0.5em 0 0.5em 1.5em;
  font-style: italic;
  color: var(--gris);
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--indigo);
  padding: 40px clamp(16px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  color: var(--indigo-pale);
}
.footer-col-titre {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.footer-col p, .footer-col a { font-size: 0.82rem; line-height: 1.8; color: var(--indigo-pale); }
.footer-col a:hover { color: var(--creme); }
.footer-bas {
  background: var(--noir);
  padding: 14px clamp(16px, 5vw, 80px);
  font-size: 0.72rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.05em;
}

/* ─── Lien retour ───────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 36px;
  transition: color 0.2s;
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--orange); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero, .artiste-hero, .cardon-hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 50vw; }
  .cardon-hero::before, .cardon-hero::after { display: none; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .artiste-galerie { grid-template-columns: repeat(2, 1fr); }
  .projets-grid { grid-template-columns: repeat(2, 1fr); }
  .projet-card:nth-child(n) { grid-column: span 1; aspect-ratio: 1; }
}
@media (max-width: 600px) {
  .site-logo { font-size: 0.85rem; }
  .nav-menu { gap: 14px; }
  .nav-menu a { font-size: 0.68rem; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bas { flex-direction: column; gap: 6px; }
  .artiste-galerie { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   ARCHITECTURE PAGE D'ACCUEIL — top band + sidebar gauche
   ══════════════════════════════════════════════════════════ */

.site-main.is-home { margin-top: 0; }

/* ── Layout global ──────────────────────────────────────── */
.ronce-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.ronce-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  flex: 1;
}

/* ── Bande horizontale haut ─────────────────────────────── */
.top-band {
  height: 52px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 200;
}
.top-band-logo {
  font-family: var(--titre);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--creme);
  text-transform: uppercase;
}
.top-band-logo em {
  font-style: normal;
  color: var(--orange);
}
.top-band-nav {
  display: flex;
  gap: 32px;
}
.top-band-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-pale);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.top-band-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.25s;
}
.top-band-nav a:hover { color: var(--creme); }
.top-band-nav a:hover::after { width: 100%; }
.top-band-lieu {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(221,220,240,0.4);
}

/* ── Sidebar artistes ───────────────────────────────────── */
.sidebar-artistes {
  background: var(--indigo);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 40px;
  position: sticky;
  top: 52px;
  height: calc(100vh - 52px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sidebar-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(221,220,240,0.4);
  padding: 0 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
}

/* Carte artiste */
.artiste-card {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Photo carrée */
.artiste-card-photo {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--indigo-clair);
}
.artiste-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) sepia(0.15);
  transition: filter 0.4s, transform 0.5s;
}
.artiste-card:hover .artiste-card-photo img {
  filter: saturate(0.85);
  transform: scale(1.05);
}
.artiste-card-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--indigo-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--titre);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  min-height: 180px;
}
.artiste-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,43,107,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.artiste-card-photo:hover .artiste-card-photo-overlay { opacity: 1; }
.artiste-card-photo-overlay span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--creme);
}

/* Bouton nom */
.artiste-card-nom {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
  transition: background 0.2s;
}
.artiste-card-nom:hover { background: rgba(255,255,255,0.04); }
.artiste-card-prenom {
  display: block;
  font-size: 0.72rem;
  color: var(--indigo-pale);
  letter-spacing: 0.06em;
}
.artiste-card-famille {
  font-family: var(--titre);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--creme);
  flex: 1;
}
.artiste-card-arrow {
  font-size: 1rem;
  color: var(--orange);
  transition: transform 0.2s;
  line-height: 1;
}

/* Panneau liens */
.artiste-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: rgba(0,0,0,0.2);
  padding: 0 18px;
}
.artiste-panel.open {
  max-height: 200px;
  padding: 14px 18px 18px;
}
.artiste-panel-pratiques {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.artiste-panel-liens {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.artiste-lien {
  font-size: 0.78rem;
  color: var(--indigo-pale);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.artiste-lien:hover { color: var(--creme); }
.artiste-lien.vide { opacity: 0.35; font-style: italic; cursor: default; }
.lien-icone { color: var(--orange); font-size: 0.85rem; }

/* ── Contenu principal ──────────────────────────────────── */
.main-content {
  min-height: calc(100vh - 52px);
  background: var(--creme);
  overflow-y: auto;
}

/* Intro */
.intro-collectif {
  padding: clamp(40px,6vw,80px) clamp(24px,4vw,60px) clamp(20px,3vw,40px);
  border-bottom: 1px solid var(--bordure);
}
.intro-titre {
  font-family: var(--titre);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.5;
  max-width: 700px;
}

/* Section travaux */
.travaux-section { padding: clamp(30px,4vw,60px) clamp(24px,4vw,60px); }
.travaux-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Teaser Cardon Luneux */
.cardon-teaser {
  background: var(--indigo);
  padding: clamp(40px,5vw,70px) clamp(24px,4vw,60px);
}
.cardon-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.cardon-teaser-texte p.section-label { margin-bottom: 10px; }
.cardon-teaser-texte h2 {
  font-family: var(--titre);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--creme);
  margin-bottom: 14px;
}
.cardon-teaser-texte p {
  font-size: 0.9rem;
  color: var(--indigo-pale);
  margin-bottom: 24px;
}
.btn-ronce {
  display: inline-block;
  font-family: var(--titre);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--creme);
  padding: 12px 28px;
  transition: background 0.2s;
}
.btn-ronce:hover { background: var(--creme); color: var(--indigo); }
.cardon-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.cardon-teaser-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--indigo-clair);
  display: block;
}
.cardon-teaser-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.3s, transform 0.4s;
}
.cardon-teaser-item:hover img { filter: saturate(1); transform: scale(1.04); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .ronce-body { grid-template-columns: 1fr; }
  .sidebar-artistes {
    position: static;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .sidebar-label { display: none; }
  .artiste-card {
    min-width: 160px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .artiste-card-photo { min-height: 120px; }
  .artiste-panel.open { max-height: 300px; }
  .cardon-teaser-inner { grid-template-columns: 1fr; }
  .top-band-lieu { display: none; }
}
@media (max-width: 600px) {
  .top-band-nav { gap: 16px; }
  .top-band-nav a { font-size: 0.65rem; }
}
