/* ============================================================
   Pearl Street Gallery — Stylesheet principal
   Police : Inter (chargée via enqueue Google Fonts)
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Signature — filet vertical 1px à gauche, du nav au footer */
body::before {
  content: '';
  position: absolute;
  top: 72px;
  bottom: 0;
  left: var(--column-rule);
  width: 1px;
  background: var(--ink);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* ============ NAV ============ */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 100;
}
.nav__brand {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__brand span {
  color: var(--ink-mute);
  margin-left: 12px;
  font-weight: 400;
}
.nav__city {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
.nav__menu {
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.nav__menu a {
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.nav__menu a:hover { border-color: var(--ink); }

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: none !important;
  margin-left: 12px;
  padding-left: 24px;
  border-left: 1px solid var(--ink-mute);
}
.nav__lang span { transition: color 0.4s ease; }
.nav__lang .is-active { color: var(--ink); }
.nav__lang-sep { color: var(--ink-mute); }
.nav__lang:hover .is-active { color: var(--ink); }
.nav__lang:hover span:not(.is-active):not(.nav__lang-sep) { color: var(--ink-soft); }

/* ============ HERO ============ */
.hero {
  padding: 88px var(--gutter) 96px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.hero__section-mark {
  position: absolute;
  left: var(--column-rule);
  top: 88px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  writing-mode: vertical-rl;
  transform: translateX(calc(-100% - 12px)) rotate(180deg);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 56px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--ink);
}
.hero__title {
  font-weight: 300;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 1200px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 88px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-mute);
  max-width: 1100px;
}
.hero__meta-block {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.hero__meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}

/* ============ EXHIBITION FEATURE ============ */
.exhibition {
  display: grid;
  grid-template-columns: 7fr 5fr;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.exhibition__image {
  aspect-ratio: 7 / 6;
  background: var(--hop-deep);
  position: relative;
  overflow: hidden;
}
.exhibition__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%,
      transparent 32%,
      var(--hop-light) 32%,
      var(--hop-light) 38%,
      transparent 38%,
      transparent 100%),
    linear-gradient(90deg,
      var(--hop-deep) 0%,
      var(--hop-deep) 22%,
      var(--hop-mid) 22%,
      var(--hop-mid) 24%,
      var(--hop-deep) 24%,
      var(--hop-deep) 58%,
      var(--hop-mid) 58%,
      var(--hop-mid) 60%,
      var(--hop-deep) 60%,
      var(--hop-deep) 100%);
}
.exhibition__image::after {
  content: 'Edward Hopper · Early Sunday Morning · 1930';
  position: absolute;
  bottom: 24px;
  left: 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.55);
  z-index: 2;
}
.exhibition__content {
  padding: 80px 60px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exhibition__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.exhibition__title {
  font-weight: 300;
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.exhibition__title em { font-style: italic; }
.exhibition__dates {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.exhibition__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 48px;
}
.exhibition__cta {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 18px 32px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background 0.4s ease, color 0.4s ease;
}
.exhibition__cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============ ARTISTS ============ */
.artists {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.artists__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.artists__title {
  font-weight: 300;
  font-size: 112px;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.artists__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.artists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.artist-card { display: block; text-decoration: none; color: var(--ink); }
.artist-card__index {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.artist-card__image {
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.artist-card--hopper .artist-card__image {
  background: var(--hop-deep);
}
.artist-card--hopper .artist-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%,
      transparent 42%,
      rgba(232,201,122,0.85) 42%,
      rgba(232,201,122,0.85) 56%,
      transparent 56%),
    linear-gradient(90deg,
      transparent 0%, transparent 28%,
      rgba(255,255,255,0.04) 28%, rgba(255,255,255,0.04) 30%,
      transparent 30%, transparent 100%);
}
.artist-card--okeeffe .artist-card__image {
  background: var(--okf-bone);
}
.artist-card--okeeffe .artist-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 38%,
      rgba(26,26,26,0.18) 0%,
      rgba(26,26,26,0.05) 60%,
      transparent 75%),
    linear-gradient(180deg,
      transparent 0%, transparent 72%,
      var(--okf-warm) 72%, var(--okf-warm) 100%);
}
.artist-card--sheeler .artist-card__image {
  background: var(--she-cool);
}
.artist-card--sheeler .artist-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%, transparent 15%,
      rgba(26,26,26,0.5) 15%, rgba(26,26,26,0.5) 22%,
      transparent 22%, transparent 36%,
      rgba(26,26,26,0.5) 36%, rgba(26,26,26,0.5) 52%,
      transparent 52%, transparent 62%,
      rgba(26,26,26,0.5) 62%, rgba(26,26,26,0.5) 78%,
      transparent 78%, transparent 100%),
    linear-gradient(180deg,
      transparent 0%, transparent 78%,
      rgba(26,26,26,0.4) 78%, rgba(26,26,26,0.4) 100%);
}
.artist-card__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.75);
  z-index: 2;
}
.artist-card--okeeffe .artist-card__caption {
  color: rgba(26,26,26,0.7);
}
.artist-card__name {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.artist-card__dates {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}

/* ============ STATEMENT ============ */
.statement {
  padding: 140px var(--gutter) 140px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
  position: relative;
}
.statement__inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
}
.statement__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.statement__text {
  font-weight: 300;
  font-size: 44px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.statement__text em { font-style: italic; }
.statement__sig {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ FOOTER ============ */
.footer {
  padding: 80px var(--gutter) 40px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--column-rule);
  width: 1px;
  background: var(--paper);
  opacity: 0.18;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(248,246,242,0.18);
  padding-left: calc(var(--column-rule) - var(--gutter) + 40px);
}
.footer__brand {
  font-weight: 300;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.footer__brand span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.5);
  margin-top: 16px;
}
.footer__col-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.5);
  margin-bottom: 16px;
}
.footer__col p, .footer__col a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--paper);
  text-decoration: none;
  display: block;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-left: calc(var(--column-rule) - var(--gutter) + 40px);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.4);
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 24px var(--gutter) 24px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--ink-mute);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.breadcrumb a { color: var(--ink-mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 12px; }

/* ============ ARTIST HEAD ============ */
.head {
  padding: 100px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
}
.head__index {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.head__index::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--ink);
}
.head__name {
  font-weight: 300;
  font-size: clamp(72px, 13vw, 196px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.head__name span { display: block; }
.head__meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-mute);
}
.head__meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.head__meta-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  white-space: pre-line;
}

.head__portrait {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.head__portrait::after {
  content: 'Composition · Light through a window';
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.5);
}

/* Portrait Hopper */
.head__portrait--hopper { background: var(--hop-shadow); }
.head__portrait--hopper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%, transparent 18%,
      var(--hop-light) 18%, var(--hop-light) 38%,
      transparent 38%, transparent 100%),
    linear-gradient(90deg,
      transparent 0%, transparent 56%,
      rgba(232,201,122,0.12) 56%, rgba(232,201,122,0.12) 100%),
    linear-gradient(180deg,
      transparent 0%, transparent 68%,
      var(--hop-shadow) 68%, var(--hop-shadow) 100%);
}

/* Portrait O'Keeffe */
.head__portrait--okeeffe { background: var(--okf-bone); }
.head__portrait--okeeffe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 50% 35%,
      rgba(26,26,26,0.22) 0%,
      rgba(26,26,26,0.06) 60%,
      transparent 75%),
    linear-gradient(180deg,
      transparent 0%, transparent 70%,
      var(--okf-warm) 70%, var(--okf-warm) 100%);
}
.head__portrait--okeeffe::after { color: rgba(26,26,26,0.55); }

/* Portrait Sheeler */
.head__portrait--sheeler { background: var(--she-cool); }
.head__portrait--sheeler::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%, transparent 18%,
      rgba(26,26,26,0.55) 18%, rgba(26,26,26,0.55) 26%,
      transparent 26%, transparent 42%,
      rgba(26,26,26,0.55) 42%, rgba(26,26,26,0.55) 56%,
      transparent 56%, transparent 68%,
      rgba(26,26,26,0.55) 68%, rgba(26,26,26,0.55) 82%,
      transparent 82%, transparent 100%),
    linear-gradient(180deg,
      transparent 0%, transparent 78%,
      rgba(26,26,26,0.45) 78%, rgba(26,26,26,0.45) 100%);
}

/* ============ BIOGRAPHY ============ */
.bio {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
}
.bio__inner {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
}
.bio__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bio__col p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.bio__col p:first-child {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 32px;
}

/* ============ SELECTED WORKS ============ */
.works {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
}
.works__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.works__title {
  font-weight: 300;
  font-size: 112px;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.works__count {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px 32px;
}
.work { text-decoration: none; color: var(--ink); display: block; }
.work__index {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.work__image {
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  background: var(--hop-deep);
}
.work__title {
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 4px;
}
.work__year {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

/* Compositions géométriques par œuvre — calées sur la maquette artist-hopper-v2.
   Pour O'Keeffe/Sheeler, on garde le fond de la classe mais sans composition
   spécifique par œuvre (sera remplacé par de vraies images en phase WP). */
.work--lg  { grid-column: span 7; }
.work--lg  .work__image { aspect-ratio: 4 / 3; }
.work--md1 { grid-column: span 5; }
.work--md1 .work__image { aspect-ratio: 4 / 5; background: var(--hop-shadow); }
.work--md2 { grid-column: span 4; }
.work--md2 .work__image { aspect-ratio: 5 / 4; background: #3E2E1E; }
.work--md3 { grid-column: span 4; }
.work--md3 .work__image { aspect-ratio: 5 / 4; background: var(--hop-mid); }
.work--md4 { grid-column: span 4; }
.work--md4 .work__image { aspect-ratio: 5 / 4; background: #2A2218; }
.work--md5 { grid-column: span 6; }
.work--md5 .work__image { aspect-ratio: 3 / 2; background: var(--hop-deep); }

/* Compositions Hopper (sélecteurs hérités via le portrait--hopper sur <body> ? non — on cible direct depuis la slug page).
   Stratégie phase scaffold : seulement les compositions des 6 œuvres Hopper rendues, identifiées par l'ordre de la grille.
   Plus tard chaque œuvre aura sa propre image. */
.head__portrait--hopper ~ .bio ~ .works .work--lg  .work__image::before,
body:has(.head__portrait--hopper) .work--lg  .work__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%, transparent 78%,
      rgba(220,200,170,0.3) 78%, rgba(220,200,170,0.3) 100%),
    linear-gradient(90deg,
      var(--hop-brick) 0%, var(--hop-brick) 18%,
      var(--hop-deep) 18%, var(--hop-deep) 20%,
      var(--hop-brick) 20%, var(--hop-brick) 38%,
      var(--hop-deep) 38%, var(--hop-deep) 40%,
      var(--hop-brick) 40%, var(--hop-brick) 58%,
      var(--hop-deep) 58%, var(--hop-deep) 60%,
      var(--hop-brick) 60%, var(--hop-brick) 78%,
      var(--hop-deep) 78%, var(--hop-deep) 80%,
      var(--hop-brick) 80%, var(--hop-brick) 100%),
    linear-gradient(180deg,
      var(--hop-light) 0%, var(--hop-light) 22%,
      transparent 22%, transparent 100%);
}
body:has(.head__portrait--hopper) .work--md1 .work__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%, transparent 28%,
      var(--hop-deep) 28%, var(--hop-deep) 75%,
      transparent 75%, transparent 100%),
    linear-gradient(90deg,
      transparent 0%, transparent 30%,
      rgba(232,201,122,0.7) 30%, rgba(232,201,122,0.7) 100%);
}
body:has(.head__portrait--hopper) .work--md2 .work__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%, transparent 38%,
      var(--hop-light) 38%, var(--hop-light) 62%,
      transparent 62%, transparent 100%),
    linear-gradient(180deg,
      transparent 0%, transparent 25%,
      rgba(232,201,122,0.3) 25%, rgba(232,201,122,0.3) 70%,
      transparent 70%, transparent 100%);
}
body:has(.head__portrait--hopper) .work--md3 .work__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      var(--hop-deep) 0%, var(--hop-deep) 35%,
      rgba(180,200,180,0.55) 35%, rgba(180,200,180,0.55) 75%,
      var(--hop-shadow) 75%, var(--hop-shadow) 100%);
}
body:has(.head__portrait--hopper) .work--md4 .work__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%, transparent 22%,
      rgba(220,80,60,0.7) 22%, rgba(220,80,60,0.7) 28%,
      transparent 28%, transparent 100%),
    linear-gradient(180deg,
      var(--hop-light) 0%, var(--hop-light) 38%,
      rgba(60,40,30,0.6) 38%, rgba(60,40,30,0.6) 100%);
}
body:has(.head__portrait--hopper) .work--md5 .work__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--hop-shadow) 0%, var(--hop-shadow) 40%,
      rgba(120,150,170,0.85) 40%, rgba(120,150,170,0.85) 100%),
    linear-gradient(180deg,
      transparent 0%, transparent 62%,
      rgba(80,110,130,0.5) 62%, rgba(80,110,130,0.5) 100%);
}

/* ============ EXHIBITIONS (page artiste) ============ */
.exhibitions {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.exhibitions__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  max-width: 1400px;
}
.exhibitions__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.exhibitions__list { list-style: none; }
.exhibitions__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
  align-items: baseline;
}
.exhibitions__year {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.exhibitions__name {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.exhibitions__name em { font-style: italic; }
.exhibitions__venue {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-align: right;
}

/* ============ CTA (page artiste) ============ */
.cta {
  padding: 140px var(--gutter);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--column-rule);
  width: 1px;
  background: var(--paper);
  opacity: 0.18;
}
.cta__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.5);
  margin-bottom: 32px;
}
.cta__title {
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta__title em { font-style: italic; }
.cta__button {
  display: inline-block;
  padding: 22px 56px;
  border: 1px solid var(--paper);
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease;
}
.cta__button:hover { background: var(--paper); color: var(--ink); }
.cta__contact {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(248,246,242,0.5);
}

/* ============================================================
   ARCHIVE ARTISTES (/artists/, /fr/artists/)
   ============================================================ */

/* Hero archive — même grammaire que .hero, titre plus serré */
.archive-hero {
  padding: 88px var(--gutter) 96px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.archive-hero__section-mark {
  position: absolute;
  left: var(--column-rule);
  top: 88px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  writing-mode: vertical-rl;
  transform: translateX(calc(-100% - 12px)) rotate(180deg);
}
.archive-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 56px;
}
.archive-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--ink);
}
.archive-hero__title {
  font-weight: 300;
  font-size: clamp(72px, 11vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 900px;
}
.archive-hero__title em { font-style: italic; }
.archive-hero__intro {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-mute);
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Liste des artistes (3 lignes verticales) */
.roster {
  border-bottom: 1px solid var(--rule);
}
.roster-row {
  display: grid;
  grid-template-columns: 80px 5fr 7fr;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.roster-row:last-child { border-bottom: none; }

.roster-row__index {
  padding: 64px 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.roster-row__image {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-height: 560px;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

/* Réutilise les motifs des cartes de la home — passage en pleine surface */
.roster-row--hopper .roster-row__image { background: var(--hop-deep); }
.roster-row--hopper .roster-row__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%, transparent 42%,
      rgba(232,201,122,0.85) 42%, rgba(232,201,122,0.85) 56%,
      transparent 56%),
    linear-gradient(90deg,
      transparent 0%, transparent 28%,
      rgba(255,255,255,0.04) 28%, rgba(255,255,255,0.04) 30%,
      transparent 30%, transparent 100%);
}

.roster-row--okeeffe .roster-row__image { background: var(--okf-bone); }
.roster-row--okeeffe .roster-row__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 38%,
      rgba(26,26,26,0.18) 0%,
      rgba(26,26,26,0.05) 60%,
      transparent 75%),
    linear-gradient(180deg,
      transparent 0%, transparent 72%,
      var(--okf-warm) 72%, var(--okf-warm) 100%);
}

.roster-row--sheeler .roster-row__image { background: var(--she-cool); }
.roster-row--sheeler .roster-row__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%, transparent 15%,
      rgba(26,26,26,0.5) 15%, rgba(26,26,26,0.5) 22%,
      transparent 22%, transparent 36%,
      rgba(26,26,26,0.5) 36%, rgba(26,26,26,0.5) 52%,
      transparent 52%, transparent 62%,
      rgba(26,26,26,0.5) 62%, rgba(26,26,26,0.5) 78%,
      transparent 78%, transparent 100%),
    linear-gradient(180deg,
      transparent 0%, transparent 78%,
      rgba(26,26,26,0.4) 78%, rgba(26,26,26,0.4) 100%);
}

.roster-row__caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.65);
  z-index: 2;
}
.roster-row--okeeffe .roster-row__caption { color: rgba(26,26,26,0.65); }

.roster-row__content {
  padding: 72px 60px 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roster-row__name {
  font-weight: 300;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.roster-row__dates {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 36px;
}
.roster-row__bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 48px;
}
.roster-row__bio em { font-style: italic; }

.roster-row__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-mute);
  margin-bottom: 48px;
  max-width: 640px;
}
.roster-row__stat dt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.roster-row__stat dd {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}

.roster-row__cta {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.4s ease, border-color 0.4s ease, letter-spacing 0.4s ease;
}
.roster-row__cta:hover {
  color: var(--ink-soft);
  border-color: var(--ink-soft);
  letter-spacing: 0.24em;
}

/* Closing statement (« reste du programme ») — réutilise la palette warm */
.roster-closing {
  padding: 140px var(--gutter) 140px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.roster-closing__inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
}
.roster-closing__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.roster-closing__text {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 780px;
  margin-bottom: 48px;
}
.roster-closing__text em { font-style: italic; }
.roster-closing__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 18px 32px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background 0.4s ease, color 0.4s ease;
}
.roster-closing__cta:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 980px) {
  .roster-row {
    grid-template-columns: 1fr;
  }
  .roster-row__index { padding: 32px 32px 0; }
  .roster-row__image { min-height: 360px; border-left: none; border-right: none; border-top: 1px solid var(--rule); }
  .roster-row__content { padding: 56px 32px; }
  .roster-closing { padding: 96px 32px; }
  .roster-closing__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   ARCHIVE EXPOSITIONS (/exhibitions/)
   ============================================================ */

.exhibition--current {
  /* hérite de .exhibition (grille 7fr/5fr + image hopper-deep) */
}

/* Liste des expositions passées */
.past-list {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
}
.past-list__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--ink-mute);
}
.past-list__title {
  font-weight: 300;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.past-list__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
  align-self: end;
}

.past-list__items { list-style: none; }
.past-list__item { border-bottom: 1px solid rgba(26,26,26,0.12); }
.past-list__item:last-child { border-bottom: none; }
.past-list__link {
  display: grid;
  grid-template-columns: 80px 70px 1fr auto;
  gap: 40px;
  padding: 36px 0;
  text-decoration: none;
  color: var(--ink);
  align-items: baseline;
  transition: padding-left 0.4s ease, background 0.4s ease;
}
.past-list__link:hover {
  padding-left: 16px;
  background: var(--paper-warm);
}
.past-list__year {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}
.past-list__index {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.past-list__body {}
.past-list__name {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.past-list__name em { font-style: italic; }
.past-list__sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.past-list__meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.past-list__dates {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .past-list { padding: 80px 32px; }
  .past-list__header { grid-template-columns: 1fr; gap: 24px; }
  .past-list__link { grid-template-columns: 60px 1fr; gap: 20px; }
  .past-list__index, .past-list__dates { display: none; }
}

/* ============================================================
   SINGLE EXPOSITION (/exhibitions/<slug>/)
   ============================================================ */

.archive-hero--exhibition .archive-hero__title { max-width: 1100px; }

.single-exhibition__subtitle {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  font-style: italic;
}

.single-exhibition__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-mute);
  max-width: 1100px;
}
.single-exhibition__meta dt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.single-exhibition__meta dd {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.single-exhibition__meta a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-mute);
  padding-bottom: 1px;
}
.single-exhibition__meta a:hover { border-color: var(--ink); }

/* Curatorial essay */
.essay {
  padding: 140px var(--gutter) 140px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.essay__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  max-width: 1280px;
}
.essay__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: start;
  position: sticky;
  top: 96px;
}
.essay__body { max-width: 720px; }
.essay__p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 28px;
}
.essay__p em { font-style: italic; }
.essay__p:first-of-type {
  font-size: 24px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 40px;
}

/* Works on view (grid) */
.works-on-view {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
}
.works-on-view__header {
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-mute);
}
.works-on-view__title {
  font-weight: 300;
  font-size: 48px;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.works-on-view__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 32px;
}

.work-tile {}
.work-tile__image {
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.work-tile__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--ink-mute) 100%);
  opacity: 0.35;
}

/* Variantes par artiste — chaque motif rappelle la carte de la home */
.work-tile__image--hopper {
  background: var(--hop-deep);
}
.work-tile__image--hopper::before {
  background:
    linear-gradient(180deg,
      transparent 0%, transparent 38%,
      rgba(232,201,122,0.85) 38%, rgba(232,201,122,0.85) 50%,
      transparent 50%),
    linear-gradient(90deg,
      transparent 0%, transparent 26%,
      rgba(255,255,255,0.05) 26%, rgba(255,255,255,0.05) 28%,
      transparent 28%);
  opacity: 1;
}

.work-tile__image--okeeffe {
  background: var(--okf-bone);
}
.work-tile__image--okeeffe::before {
  background:
    radial-gradient(ellipse 60% 45% at 50% 40%,
      rgba(26,26,26,0.16) 0%,
      rgba(26,26,26,0.04) 60%,
      transparent 75%),
    linear-gradient(180deg,
      transparent 0%, transparent 74%,
      var(--okf-warm) 74%, var(--okf-warm) 100%);
  opacity: 1;
}

.work-tile__image--sheeler {
  background: var(--she-cool);
}
.work-tile__image--sheeler::before {
  background:
    linear-gradient(90deg,
      transparent 0%, transparent 18%,
      rgba(26,26,26,0.45) 18%, rgba(26,26,26,0.45) 24%,
      transparent 24%, transparent 40%,
      rgba(26,26,26,0.45) 40%, rgba(26,26,26,0.45) 52%,
      transparent 52%, transparent 66%,
      rgba(26,26,26,0.45) 66%, rgba(26,26,26,0.45) 78%,
      transparent 78%),
    linear-gradient(180deg,
      transparent 0%, transparent 76%,
      rgba(26,26,26,0.4) 76%, rgba(26,26,26,0.4) 100%);
  opacity: 1;
}
.work-tile__artist {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.work-tile__title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 4px;
}
.work-tile__medium {
  font-size: 12px;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .single-exhibition__meta { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .essay { padding: 96px 32px; }
  .essay__inner { grid-template-columns: 1fr; gap: 32px; }
  .essay__label { position: static; }
  .works-on-view { padding: 80px 32px; }
  .works-on-view__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* ============================================================
   ABOUT — story / team / method
   ============================================================ */

.essay__heading {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

/* Team */
.team {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
}
.team__header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  padding-bottom: 56px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--ink-mute);
  align-items: end;
}
.team__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.team__title {
  font-weight: 300;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.team__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.team-tile {}
.team-tile__portrait {
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.team-tile__portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 38% at 50% 35%,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.02) 50%,
    transparent 70%);
}
.team-tile--ink   { background: var(--ink); }
.team-tile--terra { background: var(--hop-brick); }
.team-tile--cool  { background: var(--accent-cool); }

.team-tile__name {
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-tile__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.team-tile__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Method */
.method {
  padding: 140px var(--gutter) 140px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.method__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  max-width: 1280px;
}
.method__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: start;
  position: sticky;
  top: 96px;
}
.method__body { max-width: 720px; }
.method__title {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.method__p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 28px;
}
.method__list-title {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.method__list {
  list-style: none;
  counter-reset: methodlist;
}
.method__list li {
  counter-increment: methodlist;
  padding: 18px 0 18px 60px;
  border-top: 1px solid var(--ink-mute);
  position: relative;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.method__list li:last-child { border-bottom: 1px solid var(--ink-mute); }
.method__list li::before {
  content: '0' counter(methodlist);
  position: absolute;
  left: 0;
  top: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .team { padding: 80px 32px; }
  .team__header { grid-template-columns: 1fr; gap: 24px; }
  .team__grid { grid-template-columns: 1fr; gap: 56px; }
  .method { padding: 96px 32px; }
  .method__inner { grid-template-columns: 1fr; gap: 32px; }
  .method__label { position: static; }
}

/* ============================================================
   CONTACT — visit / channels / form
   ============================================================ */

.visit {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
}
.visit__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 48px;
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  max-width: 1280px;
}
.visit__block {}
.visit__block dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.visit__block dd {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.visit__block .muted {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-mute);
}

.channels {
  padding: 120px var(--gutter) 120px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.channels__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 48px;
}
.channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1280px;
}
.channel {
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}
.channel__title {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.channel__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Form */
.form-section {
  padding: 140px var(--gutter) 140px calc(var(--column-rule) + 40px);
  border-bottom: 1px solid var(--rule);
}
.form-section__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  max-width: 1280px;
}
.form-section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: start;
  position: sticky;
  top: 96px;
}
.form-section__body { max-width: 720px; }
.form-section__title {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.form-section__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 56px;
  max-width: 600px;
}

.contact-form { display: flex; flex-direction: column; gap: 32px; }
.contact-form__row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__label-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-mute);
  padding: 10px 0;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.contact-form__actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-form__submit {
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  padding: 18px 36px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-form__submit:hover {
  background: var(--ink);
  color: var(--paper);
}
.contact-form__note {
  font-size: 12px;
  color: var(--ink-mute);
  max-width: 320px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .visit, .channels { padding: 80px 32px; }
  .visit__grid, .channels__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .form-section { padding: 96px 32px; }
  .form-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .form-section__label { position: static; }
  .contact-form__row--double { grid-template-columns: 1fr; }
}

/* ── Single work ────────────────────────────────────────────────────────── */
.single-work__hero {
  display: flex;
  justify-content: center;
}
.single-work__image {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.single-work__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--ink-mute) 100%);
  opacity: 0.35;
}
.single-work__exhibitions {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.single-work__exhibitions a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: baseline;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-mute);
  transition: border-color 0.2s ease;
}
.single-work__exhibitions a:hover { border-color: var(--ink); }
.single-work__exh-year {
  font-family: var(--mono, monospace);
  font-size: 13px;
  color: var(--ink-mute);
}
.single-work__exh-name {
  font-size: 16px;
  line-height: 1.4;
}
.single-work__exh-name em { font-style: italic; }

/* ── Images réelles (vague 8) ─────────────────────────────────────────────
   .has-image neutralise le voile dégradé du ::before quand un attachment
   WP est présent (cf. inc/acf.php vague 8). L'image en background-image
   est posée en inline-style côté template. */
.head__portrait.has-image,
.work__image.has-image,
.work-tile__image.has-image,
.single-work__image.has-image,
.exhibition__image.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.head__portrait.has-image::before,
.head__portrait.has-image::after,
.work__image.has-image::before,
.work-tile__image.has-image::before,
.single-work__image.has-image::before,
.exhibition__image.has-image::before {
  display: none;
}
