/* ============================
   Exhibition — hero
   ============================ */
.exhibition-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.exhibition-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,20,15,0.65), rgba(22,20,15,0));
}
.exhibition-hero .hero-caption {
  position: relative;
  color: var(--paper);
  padding: var(--space-4) var(--space-3);
}
.exhibition-hero h1 { font-size: clamp(2.5rem, 7vw, 6rem); }
.exhibition-hero .eyebrow { color: var(--beige); }

/* ============================
   Exhibition — long-form story
   ============================ */
.exhibition-story {
  padding: var(--space-5) var(--space-3);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-4);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) { .exhibition-story { grid-template-columns: 1fr; } }
.exhibition-story .story-label {
  position: sticky;
  top: var(--space-4);
  align-self: start;
}
.exhibition-story .story-body {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.7;
  color: var(--charcoal);
}
.exhibition-story .story-body p { margin: 0 0 1.4em; }
.exhibition-story .story-body p:first-of-type::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: 0.85;
  padding-right: 0.08em;
  font-weight: 500;
}

.exhibition-embed {
  margin: var(--space-3) 0;
  position: relative;
  width: 100%;
  padding-top: 62%; /* Canva's default embed aspect ratio */
  background: var(--beige);
}
.exhibition-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.download-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 250ms var(--ease), color 250ms var(--ease);
}
.download-cta:hover { background: var(--ink); color: var(--paper); }

/* ============================
   Exhibition — behind the scenes
   ============================ */
.bts {
  background: var(--ink);
  color: var(--beige);
  padding: var(--space-5) 0;
  margin-top: var(--space-5);
}
.bts .bts-heading { padding: 0 var(--space-3) var(--space-3); }
.bts .bts-heading h2 { color: var(--paper); font-size: clamp(2rem, 4vw, 3rem); }
.bts .bts-heading p { max-width: 46ch; margin-top: var(--space-1); opacity: 0.75; }

.bts-carousel {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding: 0 var(--space-3) var(--space-2);
  scroll-snap-type: x proximity;
}
.bts-carousel figure {
  margin: 0;
  flex: 0 0 clamp(220px, 26vw, 360px);
  scroll-snap-align: start;
}
.bts-carousel img { aspect-ratio: 3/4; object-fit: cover; filter: grayscale(15%); }
.bts-carousel figcaption {
  margin-top: var(--space-1);
  font-size: 0.8rem;
  opacity: 0.65;
}
