/* ══════════════════════════════════════
   Antoine Berberi — White Luxury Gallery
   ══════════════════════════════════════ */
:root {
  --gold: #B8952A;
  --gold-light: #D4AF37;
  --gold-pale: #EEEAE0;
  --black: #1A1A1A;
  --dark: #2C2C2C;
  --gray: #333333;
  --gray-light: #62605C;
  --border: #D6D5D3;
  /* Palette calée sur la couleur réelle du fond de studio des photographies (#DCDCDC, mesurée) */
  --bg: #EFEEED;
  --bg2: #E5E4E3;
  --bg3: #DCDCDC;
  --white: #F7F7F6;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-arabic: 'Noto Naskh Arabic', serif;
  --font-sans: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--black); overflow-x: hidden; line-height: 1.7; }

/* RTL */
[dir="rtl"] body { font-family: var(--font-arabic), var(--font-sans); }
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { margin-right: auto; margin-left: 0; }
[dir="rtl"] .hero-content { text-align: center; }
[dir="rtl"] .hero-ctas { justify-content: center; }
[dir="rtl"] .bio-wrap { flex-direction: row-reverse; }
[dir="rtl"] .section-intro { direction: rtl; }
[dir="rtl"] .filter-row { direction: rtl; }
[dir="rtl"] .contact-wrap { flex-direction: row-reverse; }
[dir="rtl"] .award-item { flex-direction: row-reverse; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ══ TYPOGRAPHY ══ */
.section-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.75rem; display: block;
}
.section-heading {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--black); line-height: 1.15; margin-bottom: 1rem;
}
.section-sub { font-size: 1.02rem; color: var(--gray); max-width: 600px; font-weight: 300; }

/* ══ BUTTONS ══ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; background: var(--gold); color: #fff;
  border: 2px solid var(--gold); font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184,149,42,0.3); }
.btn-gold.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; background: transparent; color: var(--black);
  border: 1.5px solid var(--black); font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Boutons de galerie — sobres, typographiques */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2.4rem; background: var(--black); color: #fff;
  border: 1px solid var(--black); font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all var(--transition);
}
.btn-primary:hover { background: transparent; color: var(--black); }
.btn-quiet {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2.4rem; background: transparent; color: var(--black);
  border: none; border-bottom: 1px solid var(--border);
  font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all var(--transition);
}
.btn-quiet:hover { border-color: var(--black); }
.btn-enquire {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  padding: 1rem 2rem; background: transparent; color: var(--black);
  border: 1px solid var(--black); font-family: var(--font-sans);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all var(--transition);
}
.btn-enquire:hover { background: var(--black); color: #fff; }

/* ══ HEADER ══ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0; background: var(--white);
  transition: padding var(--transition);
}
#header.scrolled { padding: 0.8rem 0; }

.header-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 3rem;
  display: flex; align-items: center; gap: 3rem;
}

.logo { flex-shrink: 0; text-decoration: none; display: block; }
.logo-block { display: flex; flex-direction: column; gap: 0.1rem; }
.logo-en {
  font-family: var(--font-serif); font-size: 1.5rem;
  letter-spacing: 0.2em; color: var(--black); font-weight: 600; line-height: 1.1;
  text-transform: uppercase;
}
.logo-ar {
  font-family: var(--font-arabic); font-size: 1.05rem;
  color: var(--gold); line-height: 1.3;
  letter-spacing: 0.04em; font-weight: 500;
  background: linear-gradient(135deg, #C9A84C 0%, #8B6914 35%, #D4AF37 65%, #B8952A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 2.5rem; margin-left: auto; }
.nav-links a {
  font-size: 0.92rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; transition: color var(--transition);
  position: relative; font-weight: 400;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--dark); font-weight: 500; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 26px; height: 20px; background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 100%; height: 1.5px; background: var(--dark); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══ ONGLETS ══ */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }


.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  background: none; border: 1px solid transparent; color: var(--gray);
  font-size: 0.85rem; font-family: var(--font-sans); letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem; cursor: pointer; transition: all 0.2s;
  border-radius: var(--radius);
}
.lang-btn:hover { color: var(--gold); border-color: var(--border); }
.lang-btn.active { color: var(--dark); font-weight: 500; border-color: var(--gold); background: var(--gold-pale); }

/* ══ HERO ══ */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  padding: 10rem 3rem 4rem;
  /* même gris neutre, mesuré dans le fond de studio des photographies */
  background: linear-gradient(135deg, #F1F0EF 0%, #E3E2E0 45%, #EBEAE9 100%);
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  filter: grayscale(0.62) sepia(0.06) saturate(1.02) brightness(1.06) contrast(0.95);
  transition: opacity 2.4s ease;
}
.hero-video.ready { opacity: 0.5; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(241,240,239,0.78) 0%, rgba(227,226,224,0.68) 45%, rgba(235,234,233,0.82) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.hero-tagline {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem); color: var(--dark);
  margin-bottom: 1.6rem; text-align: center; line-height: 1.3;
}

.hero-title {
  font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.05; color: var(--black); margin-bottom: 1.1rem;
  text-align: center;
}

/* Arabic name — grand, doré, calligraphique */
.hero-arabic {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1.8rem;
  background: linear-gradient(135deg, #C9A84C 0%, #8B6914 30%, #D4AF37 60%, #B8952A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(184,149,42,0.18));
}

.hero-desc {
  font-size: 1.05rem; color: var(--gray); max-width: 560px;
  font-weight: 300; margin-bottom: 2.5rem; line-height: 1.8;
  text-align: center;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Crédibilité — superposée au hero, un bloc à la fois, fondu-enchaîné */
.hero-credibility {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: 5.4rem;
  padding: 0.6rem 2rem 1rem;
  background: linear-gradient(to top, rgba(241,240,239,0.95) 0%, rgba(235,234,233,0.78) 60%, rgba(235,234,233,0) 100%);
  border-top: 1px solid rgba(184,149,42,0.28);
  overflow: hidden;
}
.hcred-slide {
  position: absolute; left: 0; right: 0; bottom: 0.6rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 0 2rem; text-align: center;
  opacity: 0; transform: translateY(6px);
  animation: hcredCycle 30s infinite;
  animation-timing-function: ease-in-out;
}
.hcred-slide:nth-child(1) { animation-delay: 0s; }
.hcred-slide:nth-child(2) { animation-delay: 6s; }
.hcred-slide:nth-child(3) { animation-delay: 12s; }
.hcred-slide:nth-child(4) { animation-delay: 18s; }
.hcred-slide:nth-child(5) { animation-delay: 24s; }
.hcred-label {
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.hcred-items { font-size: 0.74rem; color: var(--gray); font-weight: 400; line-height: 1.5; }
.hcred-dot { color: var(--gold); opacity: 0.55; margin: 0 0.55em; }
@keyframes hcredCycle {
  0%, 100% { opacity: 0; transform: translateY(6px); }
  2% { opacity: 1; transform: translateY(0); }
  16% { opacity: 1; transform: translateY(0); }
  20% { opacity: 0; transform: translateY(-6px); }
}
@media (max-width: 700px) {
  .hero-credibility { height: 6.4rem; padding: 0.5rem 1.2rem 0.9rem; }
  .hcred-slide { padding: 0 1rem; gap: 0.3rem; }
  .hcred-label { font-size: 0.58rem; }
  .hcred-items { font-size: 0.68rem; line-height: 1.45; }
}

/* ══ COLLECTION ══ */
#collection { max-width: 1440px; margin: 0 auto; padding: 8.5rem 3rem; }

.section-intro { text-align: center; max-width: 700px; margin: 0 auto 4.5rem; }

.filter-row {
  display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.filter-btn {
  background: none; border: 1px solid var(--border); color: var(--gray);
  font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.5rem 1.2rem; cursor: pointer;
  transition: all 0.2s; border-radius: 100px;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ══ GALLERY GRID ══ */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Category heading divider */
.cat-heading {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.cat-heading-line { flex: 1; height: 1px; background: var(--border); }
.cat-heading-label {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dark); white-space: nowrap;
  font-family: var(--font-sans); font-weight: 500;
}
/* Sous-titre de technique (dans la section Non à vendre) */
.cat-heading.sub { margin-top: -1.4rem; }
.cat-heading.sub .cat-heading-label { font-size: 0.56rem; letter-spacing: 0.22em; color: var(--gray-light); }
.cat-heading.sub .cat-heading-line { opacity: 0.5; }
/* En-tête de la section Non à vendre */
.cat-heading.nfs-head { margin-top: 3.5rem; }
.cat-heading.nfs-head .cat-heading-label {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400;
  letter-spacing: 0.14em; color: var(--black); text-transform: none;
}

/* Category grid — galerie flottante : images entières, jamais recadrées */
.cat-grid {
  display: block;
  columns: 3 320px;
  column-gap: 3rem;
}

.art-card {
  break-inside: avoid;
  margin-bottom: 3.8rem;
  background: transparent; border: none;
  cursor: pointer; position: relative;
}
.art-card.hidden { display: none; }
.art-card.sold { opacity: 0.75; }

.card-img {
  position: relative; overflow: hidden;
  background: var(--bg3);
  box-shadow: 0 1px 3px rgba(30,25,15,0.1), 0 18px 44px -20px rgba(30,25,15,0.28);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.art-card:hover .card-img {
  transform: translateY(-5px);
  box-shadow: 0 2px 6px rgba(30,25,15,0.12), 0 32px 66px -22px rgba(30,25,15,0.38);
}
.card-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  transition: transform 0.7s ease;
  image-rendering: -webkit-optimize-contrast;
}
.art-card:hover .card-img img { transform: scale(1.025); }
/* Ces trois œuvres ont un cadrage très éloigné du format 3/4 (très large ou très étroit) :
   le recadrage automatique coupait une partie de la sculpture, on affiche la photo entière à la place. */
.card-img[data-aid="14030705"] img,
.card-img[data-aid="7160323"] img,
.card-img[data-aid="13995329"] img { object-fit: contain; }

.card-placeholder {
  width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--border) 100%);
  font-family: var(--font-serif); font-size: 2rem; color: var(--gold); opacity: 0.4;
}

.card-hover-layer {
  position: absolute; inset: 0; background: rgba(20,18,14,0.32);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.art-card:hover .card-hover-layer { opacity: 1; }
.view-btn {
  background: var(--white); color: var(--black); border: none;
  font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.6rem 1.2rem; cursor: pointer;
  border-radius: var(--radius); transition: all 0.2s;
}
.view-btn:hover { background: var(--gold); color: #fff; }

.card-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(255,255,255,0.92); color: var(--dark);
  font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 100px; backdrop-filter: blur(4px);
}
.card-tag.sold-tag { background: rgba(26,26,26,0.8); color: #fff; }
.card-tag.nfs-tag { background: rgba(184,149,42,0.15); color: var(--dark); border: 1px solid rgba(184,149,42,0.3); }

.card-body { padding: 1rem 0.15rem 0; }
.card-cat { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.3rem; }
.card-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--black); margin-bottom: 0.25rem; line-height: 1.3; }
.card-dim { font-size: 0.72rem; color: var(--gray-light); font-family: var(--font-sans); font-weight: 300; }
.card-dim em { font-style: italic; font-family: var(--font-serif); }
.card-price { font-family: var(--font-serif); font-size: 1.05rem; color: var(--dark); font-weight: 500; }
.card-price.por { font-size: 0.7rem; font-family: var(--font-sans); letter-spacing: 0.05em; color: var(--gray); }
.card-add {
  background: none; border: 1.5px solid var(--border); color: var(--dark);
  width: 30px; height: 30px; border-radius: 50%; font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.card-add:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ══ LE RÉCIT — storytelling ══ */
.story-intro { text-align: center; max-width: 760px; margin: 0 auto 8rem; padding: 0 1.5rem; }
.story-heading {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.15;
  color: var(--black); margin: 0.9rem 0 1.1rem;
}
.story-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.12rem; color: var(--gray); font-weight: 300;
}

/* Passages éditoriaux : prologue, respirations, épilogue */
.story-passage {
  max-width: 620px; margin: 0 auto 9rem; padding: 0 2rem;
  text-align: center;
}
.story-passage p {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 1.06rem; line-height: 2; color: var(--gray);
  margin-bottom: 3.4rem;
}
.story-passage p:last-child { margin-bottom: 0; }
.story-passage .sp-lead {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 1.65rem; line-height: 1.8; color: var(--black);
  margin-bottom: 3.6rem;
  font-style: italic;
}
.story-epilogue { margin-top: 1rem; margin-bottom: 0; }
.story-epilogue::before {
  content: ''; display: block; width: 44px; height: 1px;
  background: var(--gold); margin: 0 auto 3rem;
}

.story-chapter {
  display: flex; align-items: center; gap: 5.5rem;
  max-width: 1080px; margin: 0 auto 9.5rem; padding: 0 2rem;
}
.story-chapter.rev { flex-direction: row-reverse; }
.story-text { flex: 1.08; }
.story-text h3 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 1.75rem; line-height: 1.25; color: var(--black);
  margin-bottom: 1.3rem;
}
.story-text p {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 1.06rem; line-height: 2; color: var(--gray);
  margin-bottom: 1.6rem;
}
.story-text p:last-child { margin-bottom: 0; }
.story-fig { flex: 0.92; margin: 0; }
.story-fig[data-aid] { cursor: pointer; }
.story-fig img {
  width: 100%; height: auto; display: block;
  box-shadow: 0 1px 3px rgba(30,25,15,0.1), 0 22px 50px -22px rgba(30,25,15,0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.story-fig[data-aid]:hover img {
  transform: translateY(-4px);
  box-shadow: 0 2px 6px rgba(30,25,15,0.12), 0 30px 60px -24px rgba(30,25,15,0.38);
}
.story-fig-video video {
  width: 100%; height: auto; display: block; background: #111;
  box-shadow: 0 1px 3px rgba(30,25,15,0.1), 0 22px 50px -22px rgba(30,25,15,0.3);
}

.video-teaser { max-width: 1160px; margin: 0 auto 5rem; }
.video-teaser-play {
  width: 100%; min-height: 62vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.4rem;
  background: linear-gradient(rgba(15,13,10,0.3), rgba(15,13,10,0.62)), url('img/artist/13718078/2.jpg') center/cover;
  border: none; border-radius: var(--radius);
  padding: 2rem; cursor: pointer; transition: background 0.6s ease;
}
.video-teaser-play:hover { background: linear-gradient(rgba(15,13,10,0.4), rgba(15,13,10,0.7)), url('img/artist/13718078/2.jpg') center/cover; }
.video-teaser-icon {
  flex-shrink: 0; width: 66px; height: 66px; border-radius: 50%;
  background: var(--gold); color: #17140f; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 34px rgba(0,0,0,0.35);
}
.video-teaser-text { display: flex; flex-direction: column; gap: 0.4rem; text-align: center; }
.video-teaser-text strong { color: #fff; font-size: 1.2rem; font-weight: 500; letter-spacing: 0.02em; }
.video-teaser-text span { color: rgba(255,255,255,0.78); font-size: 0.85rem; }
.video-teaser video { width: 100%; display: block; border-radius: var(--radius); background: #111; }
[dir="rtl"] .video-teaser-text { text-align: center; }
.story-fig figcaption {
  margin-top: 0.8rem; font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-light); text-align: center;
}

.story-quote {
  max-width: 780px; margin: 8rem auto; padding: 0 2rem; text-align: center;
}
.story-quote p {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.55; color: var(--black);
  margin-bottom: 1.4rem;
}
.story-quote cite { font-style: normal; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-light); }

/* Chronologie */
.story-timeline {
  max-width: 1080px; margin: 0 auto 8rem; padding: 3.5rem 2rem 0;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem 3rem;
}
.tl-item { display: flex; flex-direction: column; gap: 0.55rem; padding-top: 1.3rem; border-top: 1px solid var(--gold-pale); }
.tl-year { font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold); line-height: 1; }
.tl-text { font-size: 0.92rem; font-weight: 400; letter-spacing: 0.01em; color: var(--dark); line-height: 1.55; }

/* Révélation au défilement */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 1.4s ease, transform 1.4s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 900px) {
  .story-chapter, .story-chapter.rev { flex-direction: column; gap: 2.2rem; margin-bottom: 5rem; }
  .story-timeline { grid-template-columns: repeat(2, 1fr); }
  .story-quote { margin: 5rem auto; }
}

/* ══ ABOUT / BIOGRAPHIE ══ */
#about { padding: 9.5rem 3rem; }
#biographie { padding: 9.5rem 3rem; }
.bio-wrap { max-width: 1200px; margin: 0 auto; display: flex; gap: 6rem; align-items: flex-start; }
.about-photo { flex: 0 0 360px; position: sticky; top: 7rem; }
.about-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border: 1px solid var(--border); display: block;
}
.about-quote {
  padding: 1.5rem; border-left: 3px solid var(--gold); margin-top: 1.5rem;
  background: var(--white);
}
.about-quote blockquote {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: var(--dark); line-height: 1.6; margin-bottom: 0.5rem;
}
.about-quote cite { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--dark); }

.bio-text { flex: 1; padding-top: 0.5rem; }
.bio-text h3 {
  font-family: var(--font-serif); font-weight: 400; font-size: 1.2rem;
  color: var(--black); margin: 2.2rem 0 0.8rem;
}
.bio-text h3:first-of-type { margin-top: 0; }
.bio-text p { color: var(--gray); font-size: 1.02rem; font-weight: 300; line-height: 1.95; margin-bottom: 1.8rem; text-align: justify; }

.about-awards {
  margin-top: 2.6rem; padding: 1.8rem 2.2rem; background: var(--gold-pale);
  border-left: 3px solid var(--gold); border-radius: 2px;
  display: flex; flex-direction: column; gap: 1rem;
}
.about-awards .awards-heading {
  font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); font-weight: 600; margin: 0;
}
.award-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; color: var(--dark); line-height: 1.6; }
.award-icon { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem; }

[dir="rtl"] .about-awards { border-left: none; border-right: 3px solid var(--gold); }

/* ══ BLOG / REVUE DE PRESSE ══ */
#blog { max-width: 1200px; margin: 0 auto; padding: 8.5rem 3rem; }
.section-intro-divider { margin-top: 6rem; padding-top: 4rem; border-top: 1px solid var(--border); }

.reportage-strip {
  display: flex; gap: 1.6rem; overflow-x: auto; padding: 0.5rem 0 2rem;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.reportage-strip::-webkit-scrollbar { height: 6px; }
.reportage-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.reportage-strip figure {
  flex: 0 0 auto; width: 340px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.reportage-strip img {
  display: block; width: 100%; height: 390px; object-fit: cover; object-position: center;
}
.reportage-strip figcaption {
  padding: 1rem 1.1rem 1.2rem; font-size: 0.8rem; color: var(--gray); line-height: 1.6; font-weight: 300;
}

.fonderie-video { max-width: 1160px; margin: 4rem auto 0; }
.fonderie-video video {
  width: 100%; display: block; border-radius: var(--radius);
  background: var(--black); box-shadow: var(--shadow);
}
.fonderie-video-caption {
  margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--gray-light); text-align: center;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2.2rem; margin-top: 1rem;
}
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.8rem; cursor: pointer; transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-photo {
  position: relative; margin: -0.4rem 0 1.4rem; background: #f6f1e6;
  padding: 8px 8px 22px; box-shadow: 0 6px 14px rgba(30,20,10,0.2), 0 1px 3px rgba(30,20,10,0.12);
  transform: rotate(-1.4deg); transition: transform 0.35s ease;
}
.blog-card:nth-child(3n+2) .blog-photo { transform: rotate(1.3deg); }
.blog-card:nth-child(3n) .blog-photo { transform: rotate(0.7deg); }
.blog-card:hover .blog-photo { transform: rotate(0deg); }
.blog-photo::before {
  content: ""; position: absolute; top: -7px; left: 50%; width: 44px; height: 16px;
  background: rgba(224, 212, 182, 0.6); transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.blog-photo img {
  display: block; width: 100%; height: 210px; object-fit: contain; object-position: center;
  background: #fff; border: 1px solid rgba(0,0,0,0.05);
}
.blog-source {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 1rem;
}
.blog-source span:last-child { color: var(--gray-light); letter-spacing: 0.06em; text-transform: none; white-space: nowrap; }
.blog-card h3 {
  font-family: var(--font-serif); font-weight: 400; font-size: 1.28rem;
  color: var(--black); line-height: 1.32; margin-bottom: 1rem;
}
.blog-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.75; font-weight: 300; }
.blog-excerpt.full { display: none; }
.blog-card.expanded .blog-excerpt.short { display: none; }
.blog-card.expanded .blog-excerpt.full { display: block; }
.blog-readmore {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); font-weight: 600; margin-top: 1.2rem; display: inline-block;
}
.blog-card.expanded .blog-readmore { display: none; }
.blog-note { font-size: 0.72rem; color: var(--gray-light); font-style: italic; margin-top: 1rem; }

/* ══ CONTACT ══ */
#contact { max-width: 1200px; margin: 0 auto; padding: 9.5rem 3rem; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-left h2 { margin-bottom: 1rem; }
.contact-left > p { color: var(--gray); font-size: 0.9rem; font-weight: 300; line-height: 1.9; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.cd-item { display: flex; flex-direction: column; gap: 0.2rem; }
.cd-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); }
.cd-item span:last-child { font-size: 0.88rem; color: var(--dark); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg2); border: 1px solid var(--border); color: var(--black);
  padding: 0.8rem 1rem; font-family: var(--font-sans); font-size: 0.88rem;
  font-weight: 300; outline: none; transition: border-color 0.2s; width: 100%;
  border-radius: var(--radius);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ══ FOOTER ══ */
footer { background: var(--black); padding: 3rem; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
footer .logo-en { font-family: var(--font-serif); font-size: 1.2rem; letter-spacing: 0.2em; color: #fff; }
footer .logo-ar { font-family: var(--font-arabic); font-size: 1rem; color: var(--gold); }
.footer-tagline { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #949494; margin-top: 0.5rem; }
.footer-contact-link {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); text-decoration: none; margin-top: 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.4); padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.footer-contact-link:hover { color: #fff; border-color: #fff; }
.footer-copy { font-size: 0.7rem; color: #949494; margin-top: 0.5rem; }

/* ══ MODALS ══ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(26,26,26,0.7); z-index: 400;
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white); border-radius: 3px; max-height: 90vh;
  overflow-y: auto; position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; background: var(--bg2);
  border: 1px solid var(--border); color: var(--gray); width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 0.75rem; z-index: 10;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ══ EXHIBIT — EXPÉRIENCE D'EXPOSITION ADAPTÉE À LA CATÉGORIE ══ */
/* Sur mobile, la scène occupe toute la fenêtre (espace restreint) */
#artModal.modal-overlay { padding: 0; }
.exhibit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  width: 100%; height: 100%;
  background: #0e0e0e;
  overflow: hidden;
  opacity: 0; transform: scale(0.985);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.modal-overlay.open .exhibit { opacity: 1; transform: none; }

/* ══ BLOG, MODAL DE DÉTAIL D'ARTICLE ══ */
.press-modal {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  width: min(1100px, 94vw); max-height: 88vh;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: scale(0.985);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.modal-overlay.open .press-modal { opacity: 1; transform: none; }
.press-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(20,20,20,0.75); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  transition: background 0.2s;
}
.press-modal-close:hover { background: var(--gold); }
.press-modal-text { padding: 3rem 2.6rem; overflow-y: auto; }
.press-modal-text h3 {
  font-family: var(--font-serif); font-weight: 400; font-size: 1.5rem;
  color: var(--black); line-height: 1.32; margin: 0.6rem 0 1.4rem;
}
.press-modal-text p { font-size: 0.92rem; color: var(--gray); line-height: 1.85; font-weight: 300; }
.press-modal-text .blog-note { margin-top: 1.4rem; }
.press-modal-photo {
  position: relative; background: #14120f; display: flex;
  align-items: center; justify-content: center; overflow: hidden; cursor: zoom-in;
}
.press-modal-photo img {
  max-width: 100%; max-height: 88vh; object-fit: contain;
  transition: transform 0.35s ease;
}
.press-modal-photo img.zoomed { transform: scale(1.9); cursor: zoom-out; }
.press-modal-hint {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4); padding: 0.4rem 0.9rem; border-radius: 20px; pointer-events: none;
}

/* Sur laptop/desktop : fenêtre d'exposition posée dans la pénombre,
   comme une salle contenue plutôt qu'un plein écran envahissant */
@media (min-width: 901px) {
  #artModal.modal-overlay { padding: 4vh 4vw; }
  .exhibit {
    width: min(90vw, 1260px);
    height: min(85vh, 780px);
    margin: auto;
    border-radius: 7px;
    box-shadow: 0 50px 120px -24px rgba(0,0,0,0.6), 0 16px 44px rgba(0,0,0,0.35);
  }
}

.ex-close {
  position: absolute; top: 1.4rem; inset-inline-end: calc(340px + 1.4rem); z-index: 40;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(20,18,15,0.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28); color: #fff;
  font-size: 0.8rem; cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ex-close:hover { background: rgba(255,255,255,0.92); color: #111; border-color: rgba(0,0,0,0.1); }

/* — Scène — */
.ex-stage { position: relative; overflow: hidden; user-select: none; touch-action: none; }
.ex-scene { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ex-decor { position: absolute; inset: 0; pointer-events: none; }

/* Boîte de projection FIXE : ses dimensions ne changent jamais entre les vues */
.ex-art-wrap {
  position: relative; z-index: 5;
  width: 94%; height: 92%;
  display: flex; align-items: center; justify-content: center;
}

/* Photographies officielles : la salle épouse le fond naturel de la photo,
   l'œuvre se fond dans la scène comme accrochée en galerie */
.ex-stage.official .ex-decor-wall {
  background: linear-gradient(180deg, #fbfbfa 0%, #f2f1ef 55%, #dedcd8 100%) !important;
}
.ex-stage.official .ex-decor-spot,
.ex-stage.official .ex-decor-halo { display: none; }
.ex-stage.official .ex-art img {
  max-height: 88vh;
  box-shadow: none;
}
.ex-stage.official .ex-decor-shadow { display: none; }
.ex-art {
  position: relative; cursor: grab;
  width: 100%; height: 100%;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.ex-art:active { cursor: grabbing; }
/* Calques de projection : superposés, dimensions constantes, seul le fondu joue.
   !important : prime sur toutes les règles de mise en scène par catégorie. */
.ex-art img {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  max-width: none !important; max-height: none !important;
  object-fit: contain;
  margin: 0 !important;
  opacity: 0;
  transition: opacity 1.3s ease;
  box-shadow: none !important;
  image-rendering: -webkit-optimize-contrast;
  pointer-events: none;
}
.ex-art img.show { opacity: 1; }
.ex-art.no-anim { transition: none; }

/* — Contrôles — */
.ex-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 25; width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(24,22,19,0.55);
  backdrop-filter: blur(10px); color: rgba(255,255,255,0.95);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease, background 0.2s ease;
}
.ex-scene:hover .ex-arrow { opacity: 1; }
.ex-arrow:hover { background: rgba(24,22,19,0.85); }
.ex-arrow-prev { left: 1.4rem; }
.ex-arrow-next { right: 1.4rem; }
@media (max-width: 900px) {
  .ex-arrow { opacity: 1; width: 44px; height: 44px; font-size: 1.4rem; }
  .ex-arrow-prev { left: 0.6rem; }
  .ex-arrow-next { right: 0.6rem; }
}

.ex-controls {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 30; display: flex; align-items: center; gap: 0.35rem;
  background: rgba(24,22,19,0.85); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 0.5rem 0.9rem;
  box-shadow: 0 10px 34px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
}
.ex-controls.dimmed { opacity: 0.12; }
.ex-controls.dimmed:hover, .ex-controls.dimmed:focus-within { opacity: 1; }
.exc-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: transparent; color: rgba(255,255,255,0.95);
  font-size: 1.15rem; line-height: 1; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.exc-btn:hover { background: rgba(255,255,255,0.22); color: #fff; }
.exc-count { font-size: 0.8rem; letter-spacing: 0.14em; color: #fff; min-width: 52px; text-align: center; font-weight: 500; }
.exc-sep { width: 1px; height: 22px; background: rgba(255,255,255,0.25); margin: 0 0.3rem; }

/* — Bande de vues (minimaliste) — */
.ex-views {
  position: absolute; top: 50%; transform: translateY(-50%);
  inset-inline-start: 1.2rem;
  z-index: 30; display: flex; flex-direction: column; gap: 0.45rem;
  max-height: 70%; overflow-y: auto; scrollbar-width: none;
}
.ex-views::-webkit-scrollbar { display: none; }
.exv {
  width: 54px; height: 54px; padding: 0; border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.3); background: #222;
  overflow: hidden; cursor: pointer; opacity: 0.65; flex-shrink: 0;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.exv:hover { opacity: 1; transform: scale(1.05); }
.exv.active { opacity: 1; border-color: var(--gold-light); transform: scale(1.1); }
.exv img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── SCULPTURE — cyclorama studio accordé au fond des photos (#D8D5CF) ─── */
.stage-sculpture .ex-decor-wall {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #DEDCD6 0%, #D8D5CF 55%, #C7C4BD 100%);
}
.stage-sculpture .ex-decor-spot {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 52% 60% at 50% 20%, rgba(255,255,250,0.55) 0%, rgba(255,255,250,0) 70%);
  mix-blend-mode: soft-light;
}
.stage-sculpture .ex-decor-halo {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 46% 58% at 50% 42%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 72%);
}
.stage-sculpture .ex-decor-shadow {
  position: absolute; left: 50%; bottom: 11.5%;
  width: 38%; height: 4%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(30,28,22,0.28) 0%, rgba(30,28,22,0) 70%);
  filter: blur(7px);
}
.stage-sculpture .ex-art-wrap { flex-direction: column; }
.stage-sculpture .ex-art img {
  max-height: 84vh;
  box-shadow: 0 12px 36px -16px rgba(25,22,15,0.3), 0 2px 10px rgba(25,22,15,0.12);
}
.stage-sculpture .ex-controls { background: rgba(48,46,40,0.55); }
.stage-sculpture, .stage-monumental { cursor: grab; }
.stage-sculpture:active, .stage-monumental:active { cursor: grabbing; }


/* ─── PEINTURE — cimaise immaculée, toile flottante sans cadre ─── */
.stage-peinture .ex-decor-wall {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 140% 100% at 50% -25%, #ffffff 0%, rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #f8f7f4 0%, #f1f0ec 74%, #e4e2dc 100%);
}
.stage-peinture .ex-decor-spot {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 46% 64% at 50% 0%, rgba(255,251,240,0.8) 0%, transparent 62%);
}
.stage-peinture .ex-art {
  background: transparent;
  border: none;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.14),
    0 14px 30px -10px rgba(50,45,35,0.3),
    0 48px 84px -34px rgba(50,45,35,0.32);
}
.stage-peinture .ex-art img { max-height: 72vh; }
.stage-peinture .ex-art-wrap { padding-bottom: 6%; }
.stage-peinture .ex-controls { background: rgba(52,49,42,0.55); }
.stage-peinture.art-only .ex-decor { opacity: 0; transition: opacity 0.6s; }
.stage-peinture.art-only { background: #101010; }
.stage-peinture.art-only .ex-art { box-shadow: none; }

/* ─── DESSIN — cabinet d'arts graphiques, lumière contrôlée ─── */
.stage-dessin .ex-decor-wall {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 36%, #2b2b2b 0%, #181818 72%, #101010 100%);
}
.stage-dessin .ex-art {
  background: #fbf9f4;
  padding: clamp(18px, 3.4vw, 46px);
  border: 4px solid #37342f;
  box-shadow: 0 26px 70px -12px rgba(0,0,0,0.8);
}
.stage-dessin .ex-art::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.05) 100%);
}
.stage-dessin .ex-art img { max-height: 68vh; }
.stage-dessin .ex-controls { background: rgba(0,0,0,0.6); }

/* ─── MONUMENTAL — parvis en plein air, échelle humaine ─── */
.stage-monumental .ex-decor-wall {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #e1e6ea 0%, #eae9e3 44%, #f3eee3 61.8%, #c6c1b5 62%, #a5a093 62.8%, #b6b1a4 63.2%, #8d8377 100%);
}
.stage-monumental .ex-decor-spot {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 62% 42% at 50% 56%, rgba(255,252,238,0.42) 0%, transparent 72%);
}
.stage-monumental .ex-decor-shadow {
  position: absolute; left: 50%; bottom: 24%;
  width: 52%; height: 4.5%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(35,32,25,0.42) 0%, transparent 70%);
  filter: blur(9px);
}
.stage-monumental .ex-art img {
  max-height: 74vh;
  box-shadow: 0 40px 100px -24px rgba(30,28,20,0.55);
}
.stage-monumental .ex-art-wrap { padding-bottom: 13%; }
.stage-monumental .ex-controls { background: rgba(62,60,52,0.5); }

/* ─── Panneau curatorial ─── */
.ex-panel { background: #fff; overflow: hidden; position: relative; }
.ex-panel-handle { display: none; }
.ex-panel-scroll { height: 100%; overflow-y: auto; padding: clamp(2rem, 5vh, 3.6rem) 2.4rem 3rem; }
.exp-cat {
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gray-light); margin-bottom: 1.1rem;
}
.exp-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.15;
  color: var(--black); margin-bottom: 0.55rem;
}
.exp-artist { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 1.8rem; }
.exp-desc { font-size: 0.87rem; line-height: 1.9; color: #5c5a55; margin-bottom: 1.8rem; text-align: justify; }
.exp-meta { margin-bottom: 2.2rem; }
.exp-meta .meta-item {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.65rem 0; border-bottom: 1px solid #eeece7;
}
.exp-meta .meta-key {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-light); padding-top: 3px; flex-shrink: 0;
}
.exp-meta .meta-val { font-size: 0.8rem; color: var(--black); text-align: end; }
.exp-acquire { margin-bottom: 1rem; }
.exp-avail {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.95rem; color: var(--gray); margin-bottom: 1rem;
}
.exp-cert { font-size: 0.6rem; color: var(--gray-light); letter-spacing: 0.04em; }

/* Repli sans JavaScript — visible uniquement si le script n'a pas pu s'exécuter */
.noscript-list { max-width: 900px; margin: 0 auto; padding: 0 2rem; list-style: none; }
.noscript-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.noscript-list a { color: var(--dark); font-weight: 500; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .cat-grid { columns: 2 300px; column-gap: 1.8rem; }
}
@media (max-width: 900px) {
  .header-inner { padding: 0 0.75rem; gap: 0.35rem; }
  .nav-toggle { display: flex; flex-shrink: 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0; background: var(--white);
    border-bottom: 1px solid var(--border); padding: 0.5rem 1.5rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .logo-en { font-size: 0.88rem; letter-spacing: 0.04em; }
  .header-actions { gap: 0.4rem; }
  .lang-switcher { gap: 0; }
  .lang-btn { padding: 0.3rem 0.32rem; font-size: 0.72rem; }
  #hero { padding: 8rem 1.5rem 3rem; }
  .hero-stats-bar { gap: 1.5rem; flex-wrap: wrap; }
  .cat-grid { columns: 2 240px; column-gap: 1.2rem; }
  .art-card { margin-bottom: 1.8rem; }
  #collection { padding: 5rem 1.5rem; }
  .bio-wrap { flex-direction: column; gap: 3rem; }
  .about-photo { flex: none; max-width: 320px; position: static; }
  #about { padding: 5rem 1.5rem; }
  #biographie { padding: 5rem 1.5rem; }
  #blog { padding: 5rem 1.5rem; }
  .reportage-strip figure { width: 240px; }
  .reportage-strip img { height: 270px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  #contact { padding: 5rem 1.5rem; }
  /* L'œuvre occupe tout l'écran ; le panneau curatorial devient un tiroir
     que l'on tire depuis le bas, plutôt qu'une bande fixe qui rogne l'image. */
  .exhibit { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .ex-stage { height: 100%; }
  .ex-close { inset-inline-end: 1rem; top: 1rem; }
  /* Bande de vignettes retirée sur mobile : les grandes flèches de bord suffisent
     à naviguer et l'écran reste libre pour l'œuvre elle-même. */
  .ex-views { display: none; }
  .ex-controls #excPrev, .ex-controls #excNext, #excNext + .exc-sep { display: none; }
  .ex-panel {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 20;
    max-height: 80vh; display: flex; flex-direction: column;
    border-radius: 16px 16px 0 0; box-shadow: 0 -10px 30px rgba(0,0,0,0.28);
    transform: translateY(calc(100% - 54px));
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .ex-panel.expanded { transform: translateY(0); }
  .ex-panel-handle {
    flex-shrink: 0; width: 100%; border: none; background: var(--white);
    padding: 0.65rem 0 0.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    cursor: pointer; border-radius: 16px 16px 0 0;
  }
  .ex-panel-grip { width: 36px; height: 4px; border-radius: 2px; background: var(--border); }
  .ex-panel-handle-label { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
  .ex-panel-scroll { flex: 1; min-height: 0; overflow-y: auto; padding: 0.5rem 1.5rem 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .press-modal { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .press-modal-photo { order: -1; min-height: 40vh; }
  .press-modal-text { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
  .cat-grid { columns: 1; }
}
