/* ============================================================
   GILLES PAUL ESNAULT — Peintre Hyperréaliste
   Thème : Ivoire chaud · Galerie parisienne
   ============================================================ */

:root {
  /* Fond & surfaces */
  --bg:           #f7f2ea;
  --bg-card:      #efe9df;
  --bg-dark:      #14110e;
  --bg-dark-2:    #1d1916;

  /* Texte */
  --text:         #1a1714;
  --text-muted:   #6b6158;
  --text-dim:     #a09688;
  --text-light:   #ede8df;

  /* Accent or / bronze */
  --accent:       #9b6f2f;
  --accent-light: #b8872a;
  --accent-pale:  #e8d9bf;

  /* Bordures */
  --border:       #ddd6c8;
  --border-light: #e8e2d6;

  /* Layout */
  --nav-h:        64px;
  --max-w:        1320px;
  --paint-max:    960px;

  /* Typographie */
  --font-sans:    -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-serif:   'Garamond', 'Georgia', 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }


/* ============================================================
   NAVIGATION — fond sombre, texte clair
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--text-light);
  font-weight: normal;
  text-transform: uppercase;
}
.nav-logo span {
  color: rgba(237,232,223,0.5);
  font-style: italic;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(237,232,223,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }

.nav-links a.nav-contact {
  color: var(--accent-light);
  border: 1px solid rgba(184,135,42,0.35);
  padding: 0.3rem 0.9rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-links a.nav-contact:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 7rem 2.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: normal;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-desc {
  max-width: 440px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}
.hero-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2rem;
}


/* ============================================================
   CARROUSELS PAR CATÉGORIE
   ============================================================ */

.cat-section { margin-bottom: 4rem; }

.cat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.85rem;
}
.cat-header-left { display: flex; align-items: baseline; gap: 1.25rem; }

.cat-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--text);
  letter-spacing: 0.03em;
}
.cat-count {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.cat-see-all {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.cat-see-all:hover { color: var(--accent); }

/* Piste scroll */
.cat-track-wrap {
  position: relative;
  padding: 0 2.5rem;
  max-width: calc(var(--max-w) + 5rem);
  margin: 0 auto;
}

.cat-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.cat-track::-webkit-scrollbar { display: none; }

/* Flèches */
.cat-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  opacity: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.cat-track-wrap:hover .cat-arrow { opacity: 1; }
.cat-arrow:hover { color: var(--text); border-color: var(--accent); }
.cat-arrow-prev { left: 0; }
.cat-arrow-next { right: 0; }
.cat-arrow.hidden { pointer-events: none; opacity: 0 !important; }

/* Carte tableau */
.cat-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.cat-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.04); }

.cat-card-body {
  padding: 0.8rem 0.5rem 0.5rem;
  background: var(--bg);
}
.cat-card-title {
  font-family: var(--font-serif);
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-card-specs {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.cat-card > a {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cat-card:hover::after { transform: scaleX(1); }

/* Carte "voir tout" */
.cat-card-more {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 195px;
  position: relative;
}
.cat-card-more a { position: absolute; inset: 0; z-index: 2; }
.cat-card-more-inner { text-align: center; padding: 1rem; }
.cat-card-more-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.4);
  margin-bottom: 0.8rem;
}
.cat-card-more-arrow {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--accent-light);
}


/* ============================================================
   BIOGRAPHIE
   ============================================================ */

.bio-section {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6rem;
  align-items: start;
}
.bio-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.bio-content p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 2;
  margin-bottom: 1.4rem;
}
.bio-content p:last-child { margin-bottom: 0; }
.bio-content em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}


/* ============================================================
   FOOTER — fond sombre, texte clair
   ============================================================ */

.site-footer {
  background: var(--bg-dark);
  padding: 3rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-left {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(237,232,223,0.6);
  letter-spacing: 0.1em;
}
.footer-contact {
  text-align: center;
}
.footer-contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.3);
  margin-bottom: 0.35rem;
}
.footer-contact a {
  color: var(--accent-light);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  display: block;
}
.footer-contact a:hover { color: #d4a040; }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(237,232,223,0.25);
}


/* ============================================================
   PAGE TABLEAU INDIVIDUELLE
   ============================================================ */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 1.25rem 2.5rem;
  max-width: calc(var(--paint-max) + 5rem);
  margin: 0 auto;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.35; }

.painting-page { background: var(--bg); min-height: calc(100vh - var(--nav-h)); }

/* Grille principale : image | fiche */
.painting-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  max-width: calc(var(--paint-max) + 340px + 5rem);
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
  align-items: start;
}

/* Colonne image */
.painting-col-image {}
.painting-frame img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 40px rgba(0,0,0,0.15);
}

/* Colonne fiche technique */
.painting-col-info {
  padding: 0 0 0 3rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.painting-artist {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.painting-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: normal;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.painting-year {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}

/* Tableau specs */
.painting-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.75rem;
}
.painting-specs-table tr {
  border-bottom: 1px solid var(--border-light);
}
.painting-specs-table td {
  padding: 0.6rem 0;
  font-size: 0.82rem;
  line-height: 1.4;
}
.painting-specs-table td:first-child {
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  width: 40%;
  padding-right: 1rem;
}
.painting-specs-table td:last-child {
  color: var(--text);
}

/* Catégorie / tags */
.painting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.painting-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  transition: color 0.2s, border-color 0.2s;
}
.painting-tag:hover { color: var(--accent); border-color: var(--accent-pale); }

/* Séparateur */
.painting-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

/* Navigation prev/next */
.painting-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.painting-nav a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.painting-nav a:hover { color: var(--accent); }
.painting-nav .arrow { font-size: 1rem; }

/* Contact/demande */
.painting-contact-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.painting-contact-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* Description sous l'image */
.painting-description {
  max-width: var(--paint-max);
  margin: 2.5rem auto 0;
  padding: 0 2.5rem;
}
.painting-description-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}
.painting-description p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-muted);
}

/* Photos de séance */
.seance-section {
  max-width: var(--paint-max);
  margin: 2.5rem auto 0;
  padding: 0 2.5rem;
}
.seance-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.seance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 4px;
}
.seance-grid img { width: 100%; height: auto; opacity: 0.7; transition: opacity 0.2s; }
.seance-grid img:hover { opacity: 1; }

/* Vignettes détail (ex: disciple) */
.detail-thumbs {
  max-width: var(--paint-max);
  margin: 2rem auto 0;
  padding: 0 2.5rem;
}
.detail-thumbs-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.thumb-strip { display: flex; flex-wrap: wrap; gap: 4px; }
.thumb-strip img {
  width: 90px; height: 90px;
  object-fit: cover; opacity: 0.65; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.thumb-strip img:hover { opacity: 1; transform: scale(1.05); }

/* Autres œuvres de la même série */
.related-section {
  background: var(--bg-dark);
  padding: 3.5rem 2.5rem 4rem;
  margin-top: 5rem;
}
.related-inner {
  max-width: calc(var(--paint-max) + 340px + 5rem);
  margin: 0 auto;
}
.related-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}
.related-grid {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}
.related-grid::-webkit-scrollbar { display: none; }
.related-card {
  flex: 0 0 200px;
  position: relative;
}
.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
  display: block;
}
.related-card:hover img { opacity: 1; }
.related-card-info { padding: 0.6rem 0 0; }
.related-card-title {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: rgba(237,232,223,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.related-card > a { position: absolute; inset: 0; z-index: 2; }

/* Responsive tableau */
@media (max-width: 960px) {
  .painting-layout {
    grid-template-columns: 1fr;
  }
  .painting-col-info {
    padding: 2rem 0 0;
    position: static;
  }
  .painting-title { font-size: 1.5rem; }
}


/* ============================================================
   PAGE GALERIE
   ============================================================ */

.galerie-header {
  padding: 4rem 2.5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.galerie-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.galerie-subtitle {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
  padding: 0 2.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.galerie-card { display: block; }
.galerie-card-img { overflow: hidden; aspect-ratio: 4/3; background: var(--bg-card); }
.galerie-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.galerie-card:hover .galerie-card-img img { transform: scale(1.04); }
.galerie-card-body { padding: 0.85rem 0 0; }
.galerie-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.galerie-card-meta { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.04em; }
.galerie-card-meta span + span::before { content: " · "; }


/* ============================================================
   PAGE CONTACT
   ============================================================ */

.contact-page {
  padding: 6rem 2.5rem;
  max-width: 620px;
  margin: 0 auto;
}
.contact-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.contact-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.75rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit {
  align-self: flex-start;
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.75rem 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  font-family: var(--font-sans);
}
.btn-submit:hover { background: var(--accent); color: #fff; }
.contact-direct {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.contact-direct p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.contact-direct a { color: var(--accent); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .bio-section { grid-template-columns: 1fr; gap: 2rem; }
  .bio-label { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .cat-header, .cat-track-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
  .cat-arrow { display: none; }
  .cat-card { flex: 0 0 200px; }
  .bio-section { padding: 3rem 1.5rem; }
  .painting-info { flex-direction: column; gap: 1.5rem; }
  .painting-wrap { padding: 1rem 1.5rem 3rem; }
  .galerie-grid { padding-left: 1.5rem; padding-right: 1.5rem; }
  .site-footer { padding: 2rem 1.5rem; }
  .breadcrumb { padding: 1rem 1.5rem; }
  .contact-page { padding: 3rem 1.5rem; }
  .painting-layout { grid-template-columns: 1fr; }
  .painting-col-info { position: static; }
  .gallery-index-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .painting-index-header { padding: 2.5rem 1.5rem 1.5rem; }
}


/* ============================================================
   PAGES CATÉGORIE — liste de tableaux en grille
   ============================================================ */

.gallery-index-page { padding-bottom: 4rem; }

.gallery-index-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
}
.gallery-index-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: .75rem;
}
.gallery-index-desc {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 680px;
  line-height: 1.7;
}

.gallery-index-grid {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.gallery-card { background: var(--bg-card); border-radius: 4px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow .2s, transform .2s; }
.gallery-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-3px); }
.gallery-card-link { display: block; }
.gallery-card-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: #e5ddd0; }
.gallery-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }
.gallery-card-info { padding: .8rem 1rem; }
.gallery-card-title { font-family: var(--font-serif); font-size: 1rem; color: var(--text); }
.gallery-card-year { font-size: .78rem; color: var(--text-muted); margin-top: .2rem; }


/* ============================================================
   INDEX GÉNÉRAL DES ŒUVRES (esnault painting/index.htm)
   ============================================================ */

.painting-index-page { padding-bottom: 4rem; }
.painting-index-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.painting-index-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: .5rem;
}
.painting-index-header p { color: var(--text-muted); font-size: .95rem; }

.cat-section {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding: 0 2rem;
}
.cat-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.cat-section-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.cat-see-all { font-size: .82rem; color: var(--accent); letter-spacing: .04em; }
.cat-see-all:hover { color: var(--accent-light); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}
/* .cat-card réutilisé depuis homepage carousels — override minimal */
.cat-grid .cat-card { flex: none; width: auto; }


/* ============================================================
   PAGES STATIQUES (galerie/, expositions/, contact/)
   ============================================================ */

.static-page { padding: 3rem 0 5rem; }
.static-page-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}
.static-page-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.static-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* Galerie — grille catégories */
.galerie-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.galerie-cat-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: box-shadow .2s, transform .2s;
}
.galerie-cat-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.galerie-cat-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.galerie-cat-label {
  padding: .7rem 1rem;
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--text);
}

/* Expositions — liste */
.expo-list { display: flex; flex-direction: column; gap: 2rem; }
.expo-item { display: flex; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border-light); }
.expo-year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  min-width: 60px;
  line-height: 1;
  padding-top: .1rem;
}
.expo-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: .25rem; }
.expo-venue { font-size: .9rem; color: var(--text-muted); }
.expo-works { font-size: .85rem; color: var(--text-dim); margin-top: .4rem; font-style: italic; }

/* Contact */
.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  max-width: 480px;
}
.contact-email-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; }
.contact-email-link { font-family: var(--font-serif); font-size: 1.3rem; color: var(--accent); letter-spacing: .02em; }
.contact-email-link:hover { color: var(--accent-light); }
.contact-note { font-size: .85rem; color: var(--text-muted); margin-top: 1.25rem; line-height: 1.7; }


/* ============================================================
   ARTICLES BLOG — pages longues de contenu éditorial
   ============================================================ */

.article-page {
  padding: 0 0 5rem;
}

.article-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.article-category {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}

.article-meta {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.article-body p {
  margin-bottom: 1.4rem;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-light);
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 .75rem;
}

.article-body strong { color: var(--text); font-weight: 600; }
.article-body em     { font-style: italic; color: var(--text-muted); }

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--accent-light); }

.article-body ul,
.article-body ol {
  margin: 0 0 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  font-style: italic;
  color: var(--text-muted);
  border-radius: 0 4px 4px 0;
}

/* CTA interne dans l'article */
.article-cta {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.article-cta-title { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: .75rem; }
.article-cta p     { font-size: .9rem; color: #a09688; margin-bottom: 1.25rem; }
.article-cta a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .65rem 1.75rem;
  border-radius: 3px;
  font-size: .88rem;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-cta a:hover { background: var(--accent-light); }

/* Index blog */
.blog-index-page { padding: 0 0 5rem; }
.blog-index-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
}
.blog-index-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
}
.blog-index-desc { color: var(--text-muted); margin-top: .5rem; font-size: .95rem; }

.blog-grid {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.blog-card-cat   { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.blog-card-title { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text); line-height: 1.4; }
.blog-card-desc  { font-size: .84rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card-read  { font-size: .8rem; color: var(--accent); letter-spacing: .06em; margin-top: .5rem; }


/* ============================================================
   GOOGLE TRANSLATE — widget discret dans la nav
   ============================================================ */

/* Masquer les éléments inutiles du widget Google */
.goog-te-gadget-simple { background: transparent !important; border: none !important; padding: 0 !important; }
.goog-te-gadget-simple span { color: var(--text-dim) !important; font-size: .78rem !important; }
.goog-te-gadget-simple .goog-te-menu-value span { color: var(--text-dim) !important; }
.goog-logo-link { display: none !important; }
.goog-te-gadget  > span { display: none !important; }
.goog-te-banner-frame { display: none !important; }

/* Masquer le widget Google Translate natif (on utilise notre custom) */
#google_translate_element { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* Conteneur dans la nav (ancien, gardé pour compatibilité) */
.nav-translate {
  display: flex;
  align-items: center;
  margin-left: .5rem;
}

/* ── Sélecteur de langue custom ── */
.lang-selector {
  position: relative;
  margin-left: 0.75rem;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(237,232,223,0.8);
  padding: 0.28rem 0.65rem;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.45); color: var(--text-light); }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-arrow { font-size: 0.55rem; opacity: 0.5; margin-left: 2px; }
.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 7px);
  background: #1d1916;
  border: 1px solid rgba(255,255,255,0.1);
  list-style: none;
  min-width: 160px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.lang-dropdown.open { display: block; }
.lang-dropdown li {
  padding: 0.48rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(237,232,223,0.6);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-dropdown li:hover { background: rgba(255,255,255,0.06); color: var(--text-light); }
.lang-dropdown li.lang-active { color: var(--accent-light); }

#google_translate_element select {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--text-light);
  font-size: .78rem;
  padding: .2rem .4rem;
  border-radius: 3px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
#google_translate_element select:focus { outline: none; border-color: var(--accent); }

@media (max-width: 768px) {
  .article-body    { font-size: .97rem; }
  .article-inner   { padding: 0 1.5rem; }
  .article-cta     { padding: 1.5rem; }
  .blog-grid       { grid-template-columns: 1fr; }
  .nav-translate   { display: none; }
  .lang-selector   { display: none; }

  /* Tunnel mobile */
  .tunnel-entry-h1     { font-size: 2.8rem; }
  .tunnel-entry-tagline{ display: none; }
  .revelation-inner    { flex-direction: column; gap: 2.5rem; padding: 3.5rem 1.5rem; }
  .revelation-col-stat { flex-direction: row; justify-content: space-around; gap: 1rem; }
  .series-inner        { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .series-inner--right .series-painting { order: -1; }
  .series-title        { font-size: 2rem; }
  .focus-inner         { flex-direction: column; padding: 3rem 1.5rem; gap: 2rem; }
  .home-contact-section{ padding: 4rem 1.5rem; }
  .footer-center       { display: none; }
}


/* ============================================================
   HOMEPAGE IMMERSIVE — Tunnel + Séries cinéma
   ============================================================ */

/* Empêcher la scrollbar de sauter */
.home-body { overflow-x: hidden; background: var(--bg-dark); }

/* ── Nav home : toujours sombre ── */
.site-nav--home {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav--home .nav-logo,
.site-nav--home .nav-links a { color: rgba(237,232,223, 1); }
.site-nav--home .nav-links a:hover { color: #fff; }


/* ════════════════════════════════════════
   TUNNEL HERO
   ════════════════════════════════════════ */
.tunnel-container {
  height: 300vh;
  background: var(--bg-dark);
}

.tunnel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Halo lumineux derrière la peinture */
.tunnel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(155,111,47,.35) 0%, rgba(155,111,47,.08) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

/* Frame qui contient la peinture */
.tunnel-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#tunnel-img {
  max-width: 70vw;
  max-height: 70vh;
  object-fit: contain;
  transform-origin: center center;
  transform: scale(0.14);
  filter: blur(28px);
  opacity: 0;
  will-change: transform, filter, opacity;
  display: block;
}

/* Texte d'entrée — par-dessus tout */
.tunnel-entry {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  z-index: 10;
  padding: 2rem;
  pointer-events: none;
}

.tunnel-entry-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.tunnel-entry-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}

.tunnel-entry-tagline {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: #a09688;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Indicateur de scroll */
.tunnel-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 1;
  transition: opacity .6s;
  animation: tunnel-cue-pulse 2.5s ease-in-out infinite;
}
.tunnel-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(155,111,47,.8), transparent);
}
.tunnel-scroll-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
@keyframes tunnel-cue-pulse {
  0%, 100% { opacity: .4; transform: translateY(0); }
  50%       { opacity: 1;  transform: translateY(6px); }
}

/* Caption de l'œuvre (bas-droite) */
.tunnel-caption {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.tunnel-caption-title {
  display: block;
  font-family: var(--font-serif);
  font-size: .95rem;
  color: rgba(237,232,223,.7);
  letter-spacing: .04em;
}
.tunnel-caption-year {
  display: block;
  font-size: .72rem;
  color: rgba(160,150,136,.6);
  letter-spacing: .06em;
  margin-top: .2rem;
}


/* ════════════════════════════════════════
   RÉVÉLATION — bio + stats
   ════════════════════════════════════════ */
.revelation-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
}

.revelation-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 2rem;
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}

.revelation-col-text { flex: 1; }

.revelation-tag {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.revelation-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.revelation-title em {
  font-style: italic;
  color: var(--accent-pale);
}

.revelation-col-text p {
  color: #8a8077;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.revelation-link {
  display: inline-block;
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .06em;
  margin-top: .75rem;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(155,111,47,.35);
  transition: color .2s, border-color .2s;
}
.revelation-link:hover { color: var(--accent-light); border-color: var(--accent-light); }

/* Stats chiffrées */
.revelation-col-stat {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: .5rem;
  min-width: 160px;
}

.stat-block { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1;
}
.stat-num span { font-size: 1.8rem; color: var(--accent); }
.stat-label { font-size: .72rem; color: #6b6158; letter-spacing: .1em; text-transform: uppercase; margin-top: .35rem; }


/* ════════════════════════════════════════
   SÉRIES CINÉMA
   ════════════════════════════════════════ */
.series-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.04);
}
.series-section--alt { background: #0e100d; }

.series-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5rem;
  align-items: center;
}
.series-inner--right {
  grid-template-columns: 1fr 55%;
}

/* Image de la série */
.series-painting a { display: block; }
.series-painting img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform .6s ease, box-shadow .6s ease;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.series-painting:hover img {
  transform: scale(1.02);
  box-shadow: 0 28px 100px rgba(0,0,0,.75);
}

/* Infos de la série */
.series-info { color: var(--text-light); }

.series-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(155,111,47,.18);
  line-height: 1;
  margin-bottom: -.5rem;
  display: block;
}

.series-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.series-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.series-desc {
  color: #7a7268;
  font-size: .95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  max-width: 420px;
}

.series-meta {
  font-size: .72rem;
  color: rgba(155,111,47,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.series-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-light);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.series-cta span { color: var(--accent); transition: transform .2s; }
.series-cta:hover { color: #fff; border-color: var(--accent); }
.series-cta:hover span { transform: translateX(4px); }


/* ════════════════════════════════════════
   FOCUS : ŒUVRE PHARE
   ════════════════════════════════════════ */
.focus-section {
  background: #0a0806;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.focus-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  gap: 5rem;
  align-items: center;
}

.focus-painting {
  flex: 0 0 50%;
}
.focus-painting img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  transition: transform .5s ease;
}
.focus-painting:hover img { transform: scale(1.015); }

.focus-text { color: var(--text-light); }

.focus-tag {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.focus-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: .4rem;
}
.focus-subtitle {
  font-size: .8rem;
  color: #5a5148;
  letter-spacing: .08em;
  margin-bottom: 2rem;
}
.focus-body {
  color: #7a7268;
  font-size: .97rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 440px;
}
.focus-link {
  display: inline-block;
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(155,111,47,.35);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.focus-link:hover { color: var(--accent-light); border-color: var(--accent-light); }


/* ════════════════════════════════════════
   CONTACT HOME
   ════════════════════════════════════════ */
.home-contact-section {
  background: var(--bg-dark);
  padding: 8rem 2rem;
  text-align: center;
}

.home-contact-inner {
  max-width: 560px;
  margin: 0 auto;
}

.home-contact-ornament {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 2rem;
  display: block;
  opacity: .5;
}

.home-contact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.home-contact-sub {
  color: #6b6158;
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.home-contact-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .85rem 2.5rem;
  border-radius: 3px;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.home-contact-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.home-contact-email {
  font-size: .78rem;
  color: #4a4540;
  letter-spacing: .08em;
  margin-top: 1.25rem;
}

/* Footer links centre */
.footer-center {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-center a {
  font-size: .78rem;
  color: #5a5148;
  letter-spacing: .08em;
  transition: color .2s;
}
.footer-center a:hover { color: var(--accent); }

/* ============================================================
   PAGES DE VENTE — Disponibilité, prix, CTA achat
   ============================================================ */

/* Badge disponible */
.painting-available-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2d7a4a;
  margin-bottom: 1rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d7a4a;
  display: inline-block;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Prix */
.painting-sale-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.painting-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: .3rem;
}
.painting-price-sub {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}

/* Garanties */
.painting-guarantees {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.guarantee-item {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA achat */
.painting-buy-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--text);
  color: var(--bg);
  padding: .9rem 1.5rem;
  border-radius: 3px;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s, transform .15s;
  margin-bottom: .6rem;
}
.painting-buy-btn:hover {
  background: #000;
  transform: translateY(-1px);
}
.painting-buy-note {
  font-size: .72rem;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: .06em;
}

/* Badge vendu */
.painting-sold-section {
  background: #f9f5f0;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.painting-sold-badge {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a6040;
  background: #f0e6d8;
  padding: .3rem .75rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.painting-sold-text {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.painting-sold-link {
  font-size: .82rem;
  color: var(--accent);
  letter-spacing: .04em;
}
.painting-sold-link:hover { color: var(--accent-light); }
