@charset "UTF-8";
@font-face {
  font-family: Bnbdb;
  src: url("../fonts/Kabel_md.ttf");
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: #444;
  background: #fff url("../images/bgimg004.svg") no-repeat center top/cover;
  margin: 0;
  padding-top: 70px;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.618s ease;
}
body.page-ready {
  opacity: 1;
}
body.page-leaving {
  opacity: 0;
  transition-duration: 0.382s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 400;
}

a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #cba96c;
}

img {
  max-width: 100%;
  height: auto;
}

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 1000;
  background: #f5f5f5 url("../images/bgimg003.svg") no-repeat center center/cover;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}
#mainNav .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: 2rem;
}
.navbar-brand .brand-name {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: rgba(30, 30, 30, 0.6);
  letter-spacing: 0.03em;
  text-shadow: 0 3px 0 rgba(223, 222, 221, 0.85), 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 2px rgba(0, 0, 0, 0.1), 0 5px 30px rgba(0, 0, 0, 0.1);
}
.navbar-brand .brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}

.navbar-collapse {
  background: transparent;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.navbar-nav .nav-link {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa !important;
  text-shadow: 0 0.01em 0.01em #fff;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #444 !important;
  text-shadow: -0.01em -0.01em 0.01em rgba(0, 0, 0, 0.3);
  border-bottom-color: #cba96c;
}

.lang-switcher {
  font-size: 0.72rem;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lang-switcher a {
  color: #aaa;
  padding: 0.1em 0.25em;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: all 0.2s;
}
.lang-switcher a.active {
  border-color: rgba(0, 170, 34, 0.6);
}
.lang-switcher a:hover {
  border-color: #aaa;
  color: #333;
}
.lang-switcher span {
  color: #ccc;
}

.navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: none;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #444;
  border-radius: 1px;
  transition: transform 0.22s, opacity 0.22s;
}

.navbar-toggler.open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler.open .burger-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-nav {
  margin-left: auto;
}

@media (max-width: 991px) {
  .navbar-toggler {
    display: flex;
    margin-left: auto;
  }
  .navbar-collapse {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 1rem 1.25rem;
  }
  .navbar-collapse.open {
    display: block;
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    width: 100%;
  }
  .navbar-collapse .nav-link {
    display: block;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-top: none;
  }
  .navbar-collapse .lang-switcher {
    margin: 0.75rem 0 0;
  }
}
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    align-items: center;
    flex: 1;
  }
}
.sandbox-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: repeating-linear-gradient(-45deg, #e07b00, #e07b00 10px, #c46a00 10px, #c46a00 20px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.sandbox-banner .sandbox-banner-icon {
  font-size: 0.9rem;
}
.sandbox-banner .sandbox-banner-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}
.sandbox-banner .sandbox-banner-link:hover {
  opacity: 1;
  color: #fff;
}

.has-sandbox {
  padding-top: calc(70px + 32px);
}
.has-sandbox #mainNav {
  top: 32px;
}

#sliderSup,
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 400px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}

.hero-intro {
  padding: 2rem 0 1rem;
  text-align: center;
}
.hero-intro .hone {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #444;
  margin: 0;
  line-height: 1;
}
.hero-intro .htwo {
  font-size: 0.92rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.4em 0 0.25em;
}
.hero-intro .hero-laureat {
  font-size: 0.72rem;
  color: #bcbcba;
  letter-spacing: 0.05em;
  margin: 0 0 1.2em;
}

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  border: none;
  color: #444;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.2em 0.5em;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
.slider-prev:hover, .slider-next:hover {
  background: rgba(255, 255, 255, 0.9);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.hone {
  color: rgba(30, 30, 30, 0.6);
  font-size: 3em;
  line-height: 1em;
  text-shadow: 0 3px 0 rgba(223, 222, 221, 0.85), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.htwo {
  padding: 0.4em 0 1.5em;
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 400;
  color: #888;
}

.htwo-center {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1em;
  color: #444;
}

.hone-page {
  font-size: 2.5rem;
  color: #444;
  margin: 0;
}

.section-gallery {
  padding: 3em 0;
  background: #fff;
}
.section-gallery--alt {
  background: #f2f2f2;
}

.section-head {
  margin-bottom: 1.5em;
  align-items: center;
}

figure.supim {
  width: 80%;
  max-width: 200px;
  min-width: 75px;
  margin: 0 auto 1em auto;
}
figure.supim img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 0.4em solid #fff;
  cursor: pointer;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s ease-in-out;
  display: block;
}
figure.supim img:hover {
  border-color: #ababab;
}

.mini-row {
  margin-bottom: 1em;
}

figure.miniFigure {
  width: 96%;
  max-width: 80px;
  min-width: 45px;
  margin: 0 auto 0.4em auto;
}
figure.miniFigure img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 0.1em solid #fff;
  cursor: pointer;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  filter: grayscale(90%);
  transition: all 0.25s ease-in-out;
  display: block;
}
figure.miniFigure img:hover {
  border-color: #ababab;
  filter: grayscale(0);
}

article.oeuvres1 {
  text-align: center;
  padding: 0.5em 0;
}
article.oeuvres1 img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
  display: inline-block;
  filter: grayscale(90%);
  transition: all 0.25s ease-in-out;
}
article.oeuvres1 figcaption {
  margin-top: 0.5em;
  font-size: 0.82rem;
  color: #888;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
article.oeuvres1:hover img {
  border-color: #ababab;
  filter: grayscale(0);
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.5);
}

.home-permanent {
  text-align: center;
}
.home-permanent .permanent-entry {
  margin-bottom: 1.5em;
}
.home-permanent .permanent-entry .permanent-logo {
  max-width: 160px;
  margin: 0.5em auto;
  display: block;
}
.home-permanent .permanent-entry p {
  font-size: 0.92rem;
  color: #444;
  margin: 0.3em 0 0;
}

.home-actu .actu-item {
  padding: 0.7em 0 0.7em 1em;
  border-left: 3px solid #cba96c;
  margin-bottom: 0.65em;
}
.home-actu .actu-item .expo-date {
  margin-bottom: 0.2em;
}
.home-actu .actu-item .actu-title {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #111;
  margin: 0.15em 0 0.1em;
  line-height: 1.3;
}
.home-actu .actu-item .actu-lieu {
  font-size: 0.78rem;
  color: #888;
}

.home-hr {
  border: none;
  border-top: 1px solid #dfdfdf;
  margin: 2em 0;
}

.section-bio {
  padding: 3em 0;
  background: #f6f6f6;
}
.section-bio .bio-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
}

.section-collab {
  padding: 4em 0;
  background: #f2f2f2;
}

.collab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: center;
}
@media (max-width: 768px) {
  .collab-inner {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}

.collab-img-wrap {
  overflow: hidden;
}

.collab-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.collab-img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .collab-img {
    height: 260px;
  }
}

.collab-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cba96c;
  border: 1px solid #cba96c;
  padding: 0.2em 0.7em;
  margin-bottom: 1rem;
}

.collab-title {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0 0 0.3em;
}
@media (max-width: 768px) {
  .collab-title {
    font-size: 1.5rem;
  }
}

.collab-sous-titre {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9e8d76;
  margin: 0 0 1.25em;
}

.collab-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.25em;
}

.collab-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
  line-height: 1.7;
  border-left: 3px solid #cba96c;
  padding-left: 1em;
  margin: 0 0 1.75em;
}

.portrait-img {
  max-height: 450px;
  object-fit: cover;
  width: 100%;
  border-radius: 0.3em;
}

.section-expos {
  padding: 3em 0;
  background: #f6f6f6;
  color: #444;
}
.section-expos .htwo-center {
  color: #444;
}

.expo-card {
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 0.3em;
  padding: 1.2em 1.5em;
  margin-bottom: 1em;
  transition: box-shadow 0.2s;
}
.expo-card:hover {
  box-shadow: 1px 1px 1em rgba(0, 0, 0, 0.1);
}

.expo-date {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #cba96c;
  margin-bottom: 0.3em;
  text-transform: uppercase;
}
.expo-date span {
  display: block;
}

.expo-period-label {
  font-style: normal;
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 0.4em;
  opacity: 0.8;
}

.expo-title {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.2em;
  color: #111;
}

.expo-lieu {
  font-size: 0.82rem;
  color: #888;
}

.expo-link {
  display: inline-block;
  margin-top: 0.5em;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cba96c;
}
.expo-link:hover {
  color: #111;
}

.expo-permanente-title {
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 1px solid #dfdfdf;
  color: #888;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.expo-permanente-card {
  text-align: center;
  padding: 1.5em 1em;
  border: 1px solid #dfdfdf;
  border-radius: 0.4em;
  background: #fff;
  margin-bottom: 1.5em;
  transition: box-shadow 0.2s;
}
.expo-permanente-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.expo-permanente-card .expo-permanente-icon {
  font-size: 1.5rem;
  color: #cba96c;
  margin-bottom: 0.5em;
}
.expo-permanente-card .expo-permanente-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #444;
  margin: 0 0 0.4em;
}
.expo-permanente-card .expo-permanente-lieu {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.expo-permanente-card .expo-permanente-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cba96c;
}
.expo-permanente-card .expo-permanente-link:hover {
  color: #111;
}

.btn-julie, .btn-julie-sm {
  display: inline-block;
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
  border: 1px solid #cba96c;
  padding: 0.5em 1.4em;
  border-radius: 0.2em;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.btn-julie:hover, .btn-julie-sm:hover {
  background: #cba96c;
  color: #fff;
}

.btn-julie-sm {
  font-size: 0.72rem;
  padding: 0.35em 1em;
}

.page-header {
  background: rgba(99, 100, 77, 0.15);
  color: #444;
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid #dfdfdf;
}
.page-header .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  opacity: 0.55;
}
.page-header .breadcrumb a {
  color: #444;
  text-decoration: none;
}
.page-header .breadcrumb li + li::before {
  content: "/";
  padding: 0 0.4rem;
}
.page-header .breadcrumb .breadcrumb-item.active {
  color: #888;
}
.page-header .page-header-sub {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.oeuvres-layout {
  padding-top: 2em;
  padding-bottom: 3em;
}

.artwork-list {
  position: sticky;
  top: calc(70px + 1rem);
  max-height: calc(100vh - 70px - 2rem);
  overflow-y: auto;
}
.artwork-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.artwork-list li {
  border-bottom: 1px solid #dfdfdf;
}
.artwork-list li a {
  display: block;
  padding: 0.55rem 0.5rem;
  font-size: 0.82rem;
  color: #444;
}
.artwork-list li a:hover {
  color: #cba96c;
}
.artwork-list li.active a {
  color: #cba96c;
  font-weight: 500;
}

.one-oeuvre {
  padding-left: 1.5em;
}

.oeuvre-meta {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0.8em;
}

.oeuvre-comment {
  font-style: italic;
  color: #888;
  font-size: 0.92rem;
  margin-bottom: 1.5em;
}

.oeuvre-collab {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 1em;
}
.oeuvre-collab a {
  color: #cba96c;
  text-decoration: none;
}
.oeuvre-collab a:hover {
  text-decoration: underline;
}

.artwork-gallery {
  position: relative;
  min-height: 200px;
}

.gallery-stack {
  display: grid;
}

.gallery-item {
  grid-area: 1/1;
  opacity: 0;
  transition: opacity 0.382s ease;
  pointer-events: none;
}
.gallery-item.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.gallery-item img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  background: #f2f2f2;
}

.img-credit {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: #bcbcba;
  margin-top: 0.2em;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-top: 0.75em;
}

.thumb-btn {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.2em;
  transition: border-color 0.2s;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-btn.active, .thumb-btn:hover {
  border-color: #cba96c;
}

.oeuvre-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1px solid #dfdfdf;
}

.bio-portrait {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  border-radius: 3px;
  margin-bottom: 2rem;
}

.bio-section h3 {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 0.5em;
  margin: 0 0 1.25em;
}
.bio-section p {
  line-height: 1.75;
  margin-bottom: 0.9em;
}

.bio-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bio-timeline li {
  display: flex;
  gap: 1rem;
  padding: 0.5em 0;
  border-bottom: 1px solid #dfdfdf;
  font-size: 0.92rem;
  line-height: 1.5;
  align-items: baseline;
}

.bio-year {
  flex-shrink: 0;
  min-width: 5.5rem;
  font-size: 0.82rem;
  color: #cba96c;
  letter-spacing: 0.05em;
}

.bio-awards {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.bio-awards li {
  padding: 0.45em 0;
  border-bottom: 1px solid #dfdfdf;
  font-size: 0.92rem;
  line-height: 1.5;
}
.bio-awards li::before {
  content: "—";
  color: #cba96c;
  margin-right: 0.5em;
}
.bio-awards li a {
  color: #888;
}
.bio-awards li a:hover {
  color: #cba96c;
}

.bio-expo-block h2 {
  display: none;
}

.bio-expo-title {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 0.5em;
  margin-bottom: 1.25em;
}

.bio-accordion-item {
  border-bottom: 1px solid #dfdfdf;
}

.bio-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0.6em 0;
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  color: #444;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.bio-accordion-trigger:hover, .bio-accordion-trigger.open {
  color: #cba96c;
}

.bio-accordion-count {
  font-size: 0.72rem;
  color: #bcbcba;
  margin-left: 0.5em;
}

.expo-list--compact li {
  font-size: 0.82rem;
  padding: 0.35em 0;
}

.expo-lieu-inline {
  font-size: 0.82rem;
  color: #bcbcba;
  margin-left: 0.3em;
}
.expo-lieu-inline::before {
  content: "· ";
}

.expo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expo-list li {
  padding: 0.5em 0;
  border-bottom: 1px solid #dfdfdf;
  font-size: 0.92rem;
  line-height: 1.5;
}

.expo-date-tag {
  display: block;
  font-size: 0.72rem;
  color: #cba96c;
  letter-spacing: 0.08em;
  margin-bottom: 0.15em;
}

.expo-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #dfdfdf;
}

.expo-link-small {
  font-size: 0.72rem;
  color: #888;
}
.expo-link-small:hover {
  color: #cba96c;
}

.press-card {
  background: #f6f6f6;
  border: 1px solid #dfdfdf;
  border-radius: 0.3em;
  padding: 1.2em;
  height: 100%;
}

.press-media-name {
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.5em;
}

.press-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

.press-read-link {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #cba96c;
}
.press-read-link:hover {
  color: #444;
}

.press-journalist, .press-date {
  color: #bcbcba;
  font-size: 0.72rem;
  display: block;
}

.contact-intro {
  font-size: 0.92rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-section-title {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 0.5em;
  margin-bottom: 1.25em;
  font-weight: 400;
}
.contact-section-title--sm {
  margin-top: 2rem;
}

.contact-info-block {
  margin-bottom: 0.5rem;
}

.contact-coords {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.contact-coords li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.3em 0;
  font-size: 0.92rem;
  color: #888;
}
.contact-coords li i {
  color: #cba96c;
  font-size: 0.82rem;
}
.contact-coords li a {
  color: #888;
  text-decoration: none;
}
.contact-coords li a:hover {
  color: #cba96c;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  color: #888;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.contact-social a:hover {
  border-color: #cba96c;
  color: #cba96c;
}

.contact-memberships-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.9;
}
.contact-memberships-list a {
  color: #888;
}
.contact-memberships-list a:hover {
  color: #cba96c;
}
.contact-memberships-list--publi {
  font-style: italic;
  margin-top: 0.5rem;
}

.contact-form .field-error {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
  line-height: 1.4;
}
.contact-form .form-control--error {
  border-color: #c0392b;
}
.contact-form .form-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}
.contact-form .form-control {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #dfdfdf;
  border-radius: 0;
  background: transparent;
  padding: 0.5rem 0;
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #444;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form .form-control:focus {
  box-shadow: none;
  border-color: #cba96c;
  background: transparent;
}

.contact-info .contact-address {
  font-style: normal;
  line-height: 1.9;
  color: #888;
}
.contact-info .contact-address a {
  color: #888;
  text-decoration: none;
}
.contact-info .contact-address a:hover {
  color: #cba96c;
}
.contact-info .contact-address strong {
  color: #444;
}

.contact-map-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}

.contact-plan {
  width: 100%;
  max-width: 420px;
  border: 1px solid #dfdfdf;
}

.site-footer {
  background: #f2f2f2 url("../images/bgimg003.svg") no-repeat center center/cover;
  color: #888;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid #d2d2d2;
  box-shadow: 0 -1px 1em rgba(39, 38, 38, 0.2);
  font-size: 0.82rem;
  line-height: 1.7;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
  }
}
.site-footer .footer-title {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  color: #444;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.site-footer .footer-col-brand p, .site-footer .footer-col-brand ul, .site-footer .footer-col-brand li {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
}
.site-footer .footer-col-brand p {
  margin: 0 0 0.4rem;
}
.site-footer .footer-col-brand p[style] {
  margin-top: 0 !important;
}
.site-footer .footer-col-brand ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}
.site-footer .footer-col-brand li {
  margin-bottom: 0.2rem;
}
.site-footer .footer-col-brand a {
  color: #888;
  text-decoration: none;
}
.site-footer .footer-col-brand a:hover {
  color: #cba96c;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 0.35rem;
}
.site-footer .footer-links a {
  color: #888;
  text-decoration: none;
}
.site-footer .footer-links a:hover {
  color: #cba96c;
}
.site-footer .footer-address {
  font-style: normal;
  line-height: 1.8;
  color: #888;
}
.site-footer .footer-address a {
  color: #888;
  text-decoration: none;
}
.site-footer .footer-address a:hover {
  color: #cba96c;
}
.site-footer .footer-address strong {
  color: #444;
  font-weight: 400;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(144, 144, 144, 0.25);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.72rem;
  color: #8b8b8b;
  text-align: center;
}
.site-footer .footer-bottom a {
  color: inherit;
}
.site-footer .footer-bottom a:hover {
  color: #cba96c;
}

.expo-year-group {
  margin-bottom: 2.5rem;
}

.expo-year {
  font-family: "Bnbdb", "Helvetica Neue Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: #cba96c;
  border-bottom: 1px solid rgba(203, 169, 108, 0.3);
  padding-bottom: 0.3em;
  margin-bottom: 1rem;
}

.expo-past-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expo-past-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.expo-past-item .expo-past-date {
  font-size: 0.82rem;
  color: #888;
  white-space: nowrap;
  min-width: 7rem;
}
.expo-past-item .expo-past-title {
  font-weight: 500;
  flex: 1 1 auto;
}
.expo-past-item .expo-past-lieu {
  font-size: 0.82rem;
  color: #777;
  font-style: italic;
}
.expo-past-item .expo-past-link {
  color: #cba96c;
  font-size: 0.82rem;
  text-decoration: none;
}
.expo-past-item .expo-past-link:hover {
  opacity: 0.8;
}

.expo-text {
  font-size: 0.92rem;
  color: #555;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
  body.has-sandbox {
    padding-top: calc(70px + 32px);
  }
  .hero {
    height: 75vh;
    min-height: 320px;
  }
  .hero-intro .hone {
    font-size: 2.2rem;
  }
  .artwork-list {
    position: static;
    max-height: 200px;
  }
  .one-oeuvre {
    padding-left: 0;
    margin-top: 1.5em;
  }
  .oeuvre-nav {
    flex-direction: column;
    gap: 0.5em;
  }
}
.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.row.g-0 {
  gap: 0;
}
.row.g-3 {
  gap: 1rem;
}
.row.g-4 {
  gap: 1.5rem;
}
.row.g-5 {
  gap: 3rem;
}
.row.align-items-start {
  align-items: start;
}
.row.align-items-center {
  align-items: center;
}
.row.mb-4 {
  margin-bottom: 1.5rem;
}

.col-4 {
  grid-column: span 4;
}

.col-12 {
  grid-column: span 12;
}

[class*=col-sm-],
[class*=col-md-],
[class*=col-lg-] {
  grid-column: span 12;
}

@media (min-width: 576px) {
  .col-sm-6 {
    grid-column: span 6;
  }
}
@media (min-width: 768px) {
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
  .col-md-7 {
    grid-column: span 7;
  }
  .col-md-8 {
    grid-column: span 8;
  }
  .col-md-9 {
    grid-column: span 9;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-10 {
    grid-column: span 10;
  }
}
.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #bcbcba;
}

.d-block {
  display: block;
}

.h-100 {
  height: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.small {
  font-size: 0.82rem;
}

svg {
  display: inline-block;
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
}

.contact-coords li svg {
  color: #cba96c;
  font-size: 0.82rem;
}

.alert {
  padding: 0.85rem 1.2rem;
  border-radius: 0.2rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.alert.alert-success {
  background: #f0f7ec;
  border-color: #c3ddb6;
  color: #2d6a1f;
}
.alert.alert-danger {
  background: #fdf0ee;
  border-color: #f0c4bc;
  color: #8c2a1e;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio.ratio-16x9::before {
  padding-top: 56.25%;
}

.bio-accordion-panel {
  display: none;
}
.bio-accordion-panel.open {
  display: block;
}
