:root {
  --exhibition-cream: #fbf5e9;
  --exhibition-paper: #fffdf8;
  --exhibition-teal: #073f43;
  --exhibition-teal-soft: #dce9e4;
  --exhibition-coral: #de5c3d;
  --exhibition-ink: #153638;
  --exhibition-muted: #536766;
  --exhibition-line: #dbcdbb;
  --exhibition-serif: "Cormorant Garamond", Georgia, serif;
  --exhibition-sans: "Lato", Arial, sans-serif;
}

body.exhibition-page {
  margin: 0;
  background: var(--exhibition-cream);
  color: var(--exhibition-ink);
  font-family: var(--exhibition-sans);
}

.exhibition-page h1,
.exhibition-page h2,
.exhibition-page h3 {
  font-family: var(--exhibition-serif);
  letter-spacing: -.025em;
}

.exhibition-wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.exhibition-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(690px, calc(100vh - 86px));
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(222, 92, 61, .14), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(7, 63, 67, .14), transparent 32%),
    linear-gradient(135deg, var(--exhibition-paper), var(--exhibition-teal-soft));
}

.exhibition-hero::before,
.exhibition-hero::after {
  position: absolute;
  content: "";
  width: 310px;
  height: 90px;
  border: 2px solid rgba(7, 63, 67, .18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.exhibition-hero::before {
  top: 8%;
  right: -90px;
}

.exhibition-hero::after {
  bottom: 8%;
  left: -110px;
  border-color: rgba(222, 92, 61, .22);
  transform: rotate(14deg);
}

.exhibition-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 88px 0;
  text-align: center;
}

.exhibition-kicker {
  margin: 0 0 16px;
  color: var(--exhibition-coral);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.exhibition-hero h1 {
  margin: 0;
  color: var(--exhibition-teal);
  font-size: clamp(3.2rem, 7.3vw, 6.8rem);
  line-height: .92;
  text-wrap: balance;
}

.exhibition-lead {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--exhibition-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.exhibition-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.exhibition-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 2px solid var(--exhibition-teal);
  border-radius: 999px;
  background: var(--exhibition-teal);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.exhibition-button:hover {
  background: #0b5357;
  transform: translateY(-2px);
}

.exhibition-button--outline {
  background: transparent;
  color: var(--exhibition-teal);
}

.events-section {
  padding: 88px 0 104px;
  background: var(--exhibition-paper);
}

.events-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.events-intro h1 {
  margin: 0 0 18px;
  color: var(--exhibition-teal);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: .94;
}

.events-list {
  border-top: 1px solid var(--exhibition-line);
}

.events-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--exhibition-line);
}

.events-item time {
  color: var(--exhibition-coral);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.events-item h2 {
  margin: 0 0 6px;
  color: var(--exhibition-teal);
  font-size: 1.75rem;
}

.events-item p {
  margin: 0;
  color: var(--exhibition-muted);
  line-height: 1.55;
}

.events-link {
  color: var(--exhibition-teal);
  font-weight: 900;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.exhibition-footer {
  padding: 50px 0;
  border-top: 1px solid var(--exhibition-line);
  background: var(--exhibition-cream);
  color: var(--exhibition-muted);
  text-align: center;
}

.exhibition-footer a {
  color: var(--exhibition-teal);
  font-weight: 900;
}

@media (max-width: 720px) {
  .exhibition-wrap {
    width: min(100% - 28px, 1120px);
  }

  .exhibition-hero {
    min-height: calc(100svh - 76px);
  }

  .exhibition-hero-copy {
    padding: 68px 0;
  }

  .exhibition-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .exhibition-actions,
  .exhibition-button {
    width: 100%;
  }

  .events-section {
    padding: 64px 0 76px;
  }

  .events-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .events-link {
    margin-top: 8px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exhibition-button {
    transition: none;
  }
}
