/* Oluwole Omofemi — exhibition design system (museum-grade, non-template) */
:root {
  /* Artist palette — yellow, black, red, cream (logo + paintings) */
  --omofemi-yellow: #e8b923;
  --omofemi-yellow-bright: #f5d020;
  --omofemi-red: #c41e2a;
  --omofemi-cream: #fdfbf7;
  --omofemi-black: #0a0a0a;

  /* Primary — cinematic charcoal */
  --charcoal: #111111;
  --charcoal-warm: #161413;
  --charcoal-deep: #1a1817;

  /* Secondary — museum ivory / logo cream */
  --ivory: #fdfbf7;
  --ivory-soft: #f5f1ea;
  --ivory-muted: #efe8dd;

  /* Accent — logo red */
  --accent: #c41e2a;
  --accent-hover: #a31822;
  --accent-deep: #8b1e1e;

  /* Supporting neutrals */
  --neutral: #8c8a87;
  --neutral-mid: #a3a09b;
  --neutral-light: #b7b2aa;

  /* Semantic aliases */
  --ink: var(--charcoal-deep);
  --obsidian: var(--charcoal);
  --sand: var(--ivory-soft);
  --cocoa: var(--charcoal-warm);
  --warm-white: var(--ivory);
  --mist: rgba(17, 17, 17, 0.1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-slow: 1000ms;
  --duration-medium: 500ms;
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter Tight", system-ui, sans-serif;
}

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

html { scroll-behavior: auto; }

.exhibition-body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.exhibition-body--header-fixed {
  scroll-padding-top: 5.25rem;
}

img { max-width: 100%; display: block; }

.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.2;
}

.body-lg {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--cocoa);
  max-width: 38rem;
}

.meta-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--neutral-mid) 70%, var(--ink));
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--omofemi-black);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--omofemi-yellow);
  outline-offset: 2px;
}

.archive-empty {
  max-width: 36rem;
  margin: clamp(2rem, 6vh, 3.5rem) 0 clamp(3rem, 8vh, 4rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  border-top: 1px solid var(--mist);
}

.archive-empty--page {
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  text-align: center;
}

.archive-empty__eyebrow {
  margin-bottom: 0.75rem;
}

.archive-empty__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.archive-empty__message {
  margin-top: 0.85rem;
  max-width: none;
}

.archive-empty__actions {
  margin-top: 1.35rem;
}

.archive-empty__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.search-form__lead {
  margin-top: 0.85rem;
  max-width: 42rem;
}

.btn-acquire.is-loading,
.btn-acquire--form.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.section-heading {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--omofemi-black);
}

.chapter--cta .section-heading {
  color: color-mix(in srgb, var(--ivory) 72%, transparent);
}

.chapter--exhibition-feature .section-heading {
  color: color-mix(in srgb, var(--ivory) 72%, transparent);
}

.meta-label::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 2px;
  margin-right: 0.55rem;
  vertical-align: middle;
  background: var(--omofemi-yellow);
  opacity: 0.6;
}

.exhibition-body--homepage .meta-label::before {
  width: 1.35rem;
  margin-right: 0.65rem;
  opacity: 1;
}

.quiet-link--accent:hover,
.site-header__nav a.is-active {
  color: var(--accent);
}

.btn-acquire {
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.25rem;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color var(--duration-medium) var(--ease), color var(--duration-medium) var(--ease);
}

.btn-acquire:hover {
  border-color: var(--omofemi-yellow);
  color: var(--ink);
}

.page--dark .btn-acquire,
.page--private-gate .btn-acquire {
  color: var(--ivory);
}

.page--dark .btn-acquire:hover,
.page--private-gate .btn-acquire:hover {
  color: var(--ivory-soft);
}

.btn-acquire--form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, #000);
  border-radius: 999px;
  padding: 0.62rem 1.05rem 0.56rem;
  border-bottom-width: 1px;
  min-height: 2.5rem;
  text-align: center;
}

.btn-acquire--form:hover {
  border-color: color-mix(in srgb, var(--accent) 76%, #000);
  background-color: color-mix(in srgb, var(--accent) 4%, transparent);
}

.page--dark .btn-acquire--form,
.page--private-gate .btn-acquire--form {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--ivory) 45%);
}

.page--dark .btn-acquire--form:hover,
.page--private-gate .btn-acquire--form:hover {
  background-color: color-mix(in srgb, var(--accent) 10%, transparent);
}

.institutional-mark {
  display: block;
  height: clamp(1.25rem, 3vw, 1.75rem);
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

/* Header — no mix-blend-mode (it hid middle nav links on the homepage hero) */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--warm-white);
  pointer-events: none;
}

.site-header--dark {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0) 100%);
  transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}

.site-header--dark.site-header--scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
}

.site-header__brand {
  pointer-events: auto;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

.site-header__nav {
  pointer-events: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.15rem;
  max-width: min(58rem, 72vw);
  min-width: 0;
}

.site-header__nav--primary {
  flex: 1 1 auto;
  justify-content: center;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1.15;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
}

.site-header__nav a:hover { opacity: 1; }

.site-header__nav a.is-featured {
  opacity: 1;
  font-weight: 500;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin: 0;
}

/* Light pages use the same fixed overlay as .site-header (dark hero). */
.site-header--light {
  mix-blend-mode: normal;
  color: var(--ink);
  background: var(--ivory);
  border-bottom: 1px solid var(--mist);
}

.site-header--light .site-header__nav a.is-active,
.site-header--light .site-header__nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.site-header--light .site-header__nav a.is-featured {
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 65%, var(--ink) 35%);
}

.site-header__menu-btn {
  pointer-events: auto;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
  padding: 0.25rem 0;
}
.site-header--light .site-header__menu-btn { color: var(--ink); }

.site-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 17, 17, 0.55);
}
.site-nav-drawer[hidden] { display: none; }
.site-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 20rem);
  height: 100%;
  background: var(--ivory);
  color: var(--ink);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.site-nav-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.site-nav-drawer__nav a {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--ink);
}

.site-nav-drawer__nav a.is-active {
  color: var(--accent);
}

.site-header__nav a:focus-visible,
.site-header__menu-btn:focus-visible,
.site-header__cart:focus-visible,
.site-nav-drawer__nav a:focus-visible,
.site-nav-drawer__close:focus-visible,
.inquiry-form input:focus-visible,
.inquiry-form select:focus-visible,
.inquiry-form textarea:focus-visible,
.inquiry-form button:focus-visible {
  outline: 2px solid var(--omofemi-yellow);
  outline-offset: 3px;
}
.site-nav-drawer__close {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: none;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--neutral-mid);
}

@media (max-width: 900px) {
  .site-header__nav--primary a:nth-child(n+4) { display: none; }
}
@media (max-width: 640px) {
  .site-header__nav--primary { display: none; }
}
@media (min-width: 901px) {
  .site-header__menu-btn { display: none; }
  .site-nav-drawer { display: none !important; }
}

/* Chapters */
.chapter {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.chapter__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  will-change: transform;
}

.chapter__veil {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 13, 0.45);
}

.chapter--threshold .chapter__bg {
  /* Keep the subject (face) to the right; copy sits bottom-left. */
  background-position: 72% center;
}

.chapter--threshold .chapter__veil {
  background:
    linear-gradient(
      100deg,
      rgba(10, 9, 8, 0.78) 0%,
      rgba(10, 9, 8, 0.42) 38%,
      rgba(10, 9, 8, 0.18) 68%,
      rgba(10, 9, 8, 0.08) 100%
    ),
    linear-gradient(to top, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.2) 42%, transparent 62%);
}

.chapter__veil--gradient {
  background: linear-gradient(to top, var(--obsidian) 0%, transparent 55%);
}

.chapter__content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 87.5rem;
  width: 100%;
  margin: 0 auto;
  color: var(--warm-white);
}

.chapter--statement,
.chapter--cta {
  background: var(--ivory);
  color: var(--ink);
  align-items: center;
}

.exhibition-body--homepage .chapter--statement {
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
}

.exhibition-body--homepage .chapter--statement::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(32vw, 18rem);
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    color-mix(in srgb, var(--omofemi-black) 5%, transparent) 0 1px,
    transparent 1px 18px
  );
  opacity: 0.85;
}

.exhibition-body--homepage .chapter--works-preview {
  background: var(--ivory);
}

.exhibition-body--homepage .chapter--press-strip {
  background:
    linear-gradient(180deg, var(--ivory-muted) 0%, var(--ivory-soft) 100%);
}

.exhibition-body--homepage .chapter--press-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 23px,
      color-mix(in srgb, var(--ink) 4%, transparent) 23px,
      color-mix(in srgb, var(--ink) 4%, transparent) 24px
    );
  opacity: 0.35;
}

.exhibition-body--homepage .chapter--cta {
  background: var(--omofemi-black);
  color: var(--ivory);
}

.exhibition-body--homepage .chapter--cta .chapter__content,
.exhibition-body--homepage .chapter--cta .body-lg {
  color: color-mix(in srgb, var(--ivory) 88%, transparent);
}

.exhibition-body--homepage .chapter--cta .meta-label::before {
  background: var(--omofemi-red);
}

.chapter--threshold::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: min(62%, 28rem);
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(8, 7, 6, 0.88) 0%,
    rgba(8, 7, 6, 0.45) 45%,
    transparent 100%
  );
}

.chapter--threshold .chapter__content--hero {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  text-align: left;
  max-width: min(42rem, 88vw);
  padding-top: clamp(5rem, 14vh, 8rem);
  padding-bottom: clamp(3.25rem, 9vh, 5.5rem);
  color: var(--warm-white);
}

.chapter--threshold .chapter__hero-label {
  margin-bottom: 0.85rem;
  color: color-mix(in srgb, var(--warm-white) 90%, transparent);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.chapter--threshold .chapter__hero-title {
  margin: 0;
  max-width: none;
  color: var(--warm-white);
  text-wrap: pretty;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

@media (min-width: 768px) {
  .chapter--threshold .chapter__hero-title {
    white-space: nowrap;
  }
}

.chapter--threshold .chapter__hero-subtext {
  margin: 1.15rem 0 0;
  max-width: 26em;
  color: color-mix(in srgb, var(--warm-white) 92%, transparent);
  line-height: 1.6;
  font-size: clamp(1rem, 1.85vw, 1.15rem);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.chapter--statement .chapter__content,
.chapter--cta .chapter__content { color: var(--ink); }

.chapter__content--narrow { max-width: 42rem; }
.chapter__content--center { text-align: center; margin-inline: auto; }

.chapter--statement .chapter__content--narrow {
  margin-inline: auto;
  max-width: 40rem;
  padding-top: clamp(5.5rem, 10vh, 7.25rem);
  padding-bottom: clamp(3.75rem, 8vh, 5.75rem);
}

.chapter--statement .meta-label {
  margin-bottom: 0.95rem;
  letter-spacing: 0.18em;
}

.chapter--statement .display-md,
.chapter__statement {
  line-height: 1.24;
  max-width: 24ch;
  text-wrap: balance;
}

.exhibition-body--homepage .chapter--statement .chapter__content--narrow {
  max-width: min(52rem, 94vw);
  margin-inline: clamp(1rem, 5vw, 3rem);
  margin-right: auto;
}

.exhibition-body--homepage .chapter__statement-title {
  margin: 0.85rem 0 1.25rem;
  max-width: 20ch;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 72%, var(--neutral-mid));
}

.exhibition-body--homepage .chapter__statement {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 38ch;
  text-wrap: pretty;
  font-weight: 500;
  font-family: var(--font-serif);
  color: var(--ink);
}

.exhibition-body--homepage .chapter__statement p {
  margin: 0;
}

@media (min-width: 900px) {
  .exhibition-body--homepage .chapter--statement .chapter__content--narrow {
    margin-left: clamp(2rem, 8vw, 6.5rem);
    max-width: min(44rem, calc(100% - 12rem));
  }

  .exhibition-body--homepage .chapter__statement {
    max-width: 42ch;
  }
}

@media (max-width: 640px) {
  .exhibition-body--homepage .chapter__statement {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    line-height: 1.32;
  }
}

@media (max-width: 640px) {
  .chapter--statement .chapter__content--narrow {
    max-width: 100%;
    padding-top: 4.85rem;
    padding-bottom: 3rem;
  }

  .chapter--statement .display-md {
    max-width: 100%;
    line-height: 1.28;
  }
}

.chapter--cta { background: var(--sand); }

.chapter--newsletter {
  background: #fff;
  color: var(--ink);
  align-items: center;
}

.chapter--newsletter .chapter__content {
  color: var(--ink);
  padding-top: clamp(5.5rem, 10vh, 7rem);
  padding-bottom: clamp(4rem, 9vh, 6rem);
}

.chapter--newsletter .chapter__newsletter-lead {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--cocoa);
}

.chapter--newsletter .chapter__newsletter-flash {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  text-align: left;
}

.chapter__content--newsletter {
  max-width: min(52rem, 92vw);
  width: 100%;
}

.chapter--newsletter .inquiry-form--newsletter-home {
  margin: 2rem 0 0;
  max-width: 100%;
  width: 100%;
  text-align: left;
}

.chapter--newsletter .inquiry-form--newsletter-home .inquiry-form__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0 1.15rem;
}

.chapter--newsletter .inquiry-form--newsletter-home .inquiry-form__row > label {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
}

.chapter--newsletter .inquiry-form--newsletter-home .inquiry-form__submit {
  flex: 0 0 auto;
  padding-bottom: 0.75rem;
}

.chapter--newsletter .inquiry-form--newsletter-home .btn-acquire--form {
  width: auto;
  min-width: 8.5rem;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .chapter--newsletter .inquiry-form--newsletter-home .inquiry-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
  }

  .chapter--newsletter .inquiry-form--newsletter-home .inquiry-form__submit {
    padding-bottom: 0;
  }

  .chapter--newsletter .inquiry-form--newsletter-home .btn-acquire--form {
    width: 100%;
    min-width: 0;
  }
}

.exhibition-body--homepage .chapter--newsletter {
  background: #fff;
}

.chapter--works-preview {
  background: var(--ivory);
  color: var(--ink);
}

.chapter--works-preview .chapter__content,
.chapter--press-strip .chapter__content {
  color: var(--ink);
}

.chapter--works-preview .works-grid {
  margin-top: 2rem;
  gap: 2rem;
}

.chapter--works-preview .works-grid__meta h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.chapter--exhibition-feature .chapter__content {
  max-width: 54rem;
}

.chapter--press-strip {
  background: var(--ivory-soft);
  color: var(--ink);
}

/* Press kit cards (Press page grid + homepage scroll strip) */
.press-kit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 2rem;
}

.press-kit-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.press-kit-card__media {
  aspect-ratio: 3 / 4;
  background-color: color-mix(in srgb, var(--sand) 55%, #fff);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.press-kit-card__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-kit-card__placeholder {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--ink) 22%, var(--sand));
}

.press-kit-grid .press-kit-card__body {
  padding: 1rem 0 0;
}

.press-kit-grid .press-kit-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-kit-card__meta {
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.press-kit-card__link:hover .press-kit-card__title {
  color: var(--accent);
}

.press-kit-card--compact .press-kit-card__media {
  aspect-ratio: 3 / 4;
}

.press-kit-card--compact .press-kit-card__title {
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
}

.home-press-scroll {
  margin-top: 2rem;
  margin-inline: calc(-1 * clamp(1rem, 4vw, 1.5rem));
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.home-press-scroll__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(1rem, 4vw, 1.5rem);
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.home-press-scroll__track::-webkit-scrollbar {
  height: 4px;
}

.home-press-scroll__track::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--ink) 18%, var(--mist));
  border-radius: 999px;
}

.home-press-scroll .press-kit-card {
  flex: 0 0 min(78vw, 16.5rem);
  scroll-snap-align: start;
  min-width: 0;
}

/* Press page: 1–2 items use full row width; 3+ caps at 3 columns (never 4) */
@media (min-width: 640px) {
  .press-kit-grid:has(.press-kit-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-kit-grid:has(.press-kit-card:nth-child(3):last-child),
  .press-kit-grid:has(.press-kit-card:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .press-kit-grid:has(.press-kit-card:nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .press-kit-grid .press-kit-card__media {
    aspect-ratio: 16 / 11;
  }

  .press-kit-grid .press-kit-card__title {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .press-kit-card--compact .press-kit-card__media {
    aspect-ratio: 3 / 4;
  }
}

.quiet-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.quiet-link--accent {
  border-bottom-color: var(--omofemi-red);
}

.quiet-link--accent:hover {
  color: var(--omofemi-red);
  border-bottom-color: var(--omofemi-yellow);
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--mist);
  background: transparent;
  cursor: pointer;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--warm-white);
}

.btn-ghost--accent {
  border-color: color-mix(in srgb, var(--omofemi-yellow) 70%, var(--ivory));
  color: var(--ivory);
  padding: 1.1rem 2.35rem;
  letter-spacing: 0.22em;
}

.btn-ghost--accent:hover {
  background: var(--omofemi-yellow);
  color: var(--omofemi-black);
  border-color: var(--omofemi-yellow);
  transform: translateY(-1px);
}

/* Pages */
.page {
  padding: 8rem 1.5rem 4rem;
  max-width: 87.5rem;
  margin: 0 auto;
}

.page__intro {
  position: relative;
  margin-bottom: 4rem;
  padding-left: clamp(1rem, 2.5vw, 1.5rem);
  border-left: 3px solid var(--omofemi-yellow);
}

.page__intro::after {
  content: '';
  position: absolute;
  left: -3px;
  bottom: -1.5rem;
  width: 3rem;
  height: 3px;
  background: var(--omofemi-red);
}

.page__intro .body-lg { margin-top: 1rem; }

.page__intro .display-lg {
  letter-spacing: -0.03em;
}

/* —— Archive panels (Works / Exhibitions — Kehinde-style columns) —— */
.page--works,
.page--exhibitions {
  overflow-x: clip;
}

.archive-section {
  margin-bottom: clamp(2.5rem, 6vh, 3.5rem);
}

.archive-section__title {
  margin: 0 0 1.25rem;
  padding-left: clamp(1rem, 2.5vw, 1.5rem);
}

.archive-panels-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.archive-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-panel {
  position: relative;
  display: block;
  min-height: clamp(22rem, 72vh, 40rem);
  overflow: hidden;
  text-decoration: none;
  color: var(--ivory);
  background: var(--omofemi-black);
  border-right: 1px solid color-mix(in srgb, var(--ivory) 10%, var(--omofemi-black));
}

.archive-panel:last-child {
  border-right: 0;
}

.archive-panel__media {
  position: absolute;
  inset: 0;
  background-color: var(--charcoal-warm);
  overflow: hidden;
}

.archive-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.15s var(--ease);
}

.archive-panel__media--empty {
  background: linear-gradient(160deg, var(--charcoal-warm) 0%, var(--omofemi-black) 100%);
}

.archive-panel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: color-mix(in srgb, var(--omofemi-black) 90%, transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease), background 0.5s var(--ease);
}

.archive-panel__copy {
  max-width: 18rem;
}

.archive-panel__eyebrow {
  margin: 0 0 0.85rem;
  color: color-mix(in srgb, var(--ivory) 72%, var(--omofemi-yellow));
  letter-spacing: 0.14em;
}

.archive-panel__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-panel__line {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ivory) 82%, transparent);
}

.archive-panel--empty .archive-panel__overlay {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .archive-panel:hover .archive-panel__overlay,
  .archive-panel:focus-visible .archive-panel__overlay {
    opacity: 1;
  }

  .archive-panel:hover .archive-panel__img,
  .archive-panel:focus-visible .archive-panel__img {
    transform: scale(1.06);
  }
}

@media (hover: none) {
  .archive-panel__overlay {
    opacity: 1;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.35rem;
    background: linear-gradient(
      180deg,
      transparent 35%,
      color-mix(in srgb, var(--omofemi-black) 88%, transparent) 100%
    );
  }

  .archive-panel__title {
    font-size: 1.1rem;
  }

  .archive-panel__line:nth-child(n + 3) {
    display: none;
  }
}

/* Homepage auto-scrolling archive strip */
.chapter__content--archive-strip {
  max-width: 100%;
}

.chapter__archive-strip-intro {
  max-width: 42rem;
}

.archive-marquee {
  width: 100vw;
  max-width: 100vw;
  margin-top: 2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.archive-marquee__track {
  display: flex;
  width: max-content;
  animation: archive-marquee-scroll 55s linear infinite;
}

.archive-marquee:hover .archive-marquee__track,
.archive-marquee:focus-within .archive-marquee__track {
  animation-play-state: paused;
}

.archive-marquee__group {
  display: flex;
  flex-shrink: 0;
}

.archive-marquee .archive-panel {
  flex: 0 0 clamp(14rem, 26vw, 20rem);
  min-height: clamp(20rem, 58vh, 34rem);
  border-right: 1px solid color-mix(in srgb, var(--ivory) 10%, var(--omofemi-black));
}

.home-archive-footer {
  margin-top: 1.85rem;
  text-align: center;
}

.exhibition-body--homepage .chapter--archive-strip {
  background: var(--ivory);
  color: var(--ink);
}

.exhibition-body--homepage .chapter--archive-strip .chapter__content {
  color: var(--ink);
}

.exhibition-body--homepage .chapter--archive-strip .section-heading {
  color: var(--omofemi-black);
}

.exhibition-body--homepage .chapter--archive-strip .chapter__index {
  color: color-mix(in srgb, var(--ink) 18%, transparent);
}

.home-archive-footer .quiet-link {
  margin-top: 0;
}

.home-archive-footer .quiet-link--accent {
  color: var(--accent);
  border-bottom-color: var(--omofemi-yellow);
}

.home-archive-footer .quiet-link--accent:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--omofemi-red);
}

@keyframes archive-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .archive-panels {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .archive-panel {
    flex: 0 0 min(78vw, 22rem);
    min-height: clamp(20rem, 62vh, 32rem);
    scroll-snap-align: start;
    border-right: 0;
  }

  .archive-panel + .archive-panel {
    border-left: 1px solid color-mix(in srgb, var(--ivory) 10%, var(--omofemi-black));
  }
}

.works-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .works-grid { grid-template-columns: 1fr 1fr; }
}

.works-grid__item {
  text-decoration: none;
  color: inherit;
}

.works-grid__item--card {
  display: flex;
  flex-direction: column;
}

.works-grid__media {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works-grid__meta h3 a {
  color: inherit;
  text-decoration: none;
}

.works-grid__meta h3 a:hover {
  color: var(--accent);
}

.works-grid__meta-line {
  margin-top: 0.35rem;
}

.works-grid__actions {
  margin-top: 1rem;
}

.works-grid--exhibition .works-grid__item--card:hover .works-grid__image {
  transform: scale(1.045);
}

.works-grid--exhibition .works-grid__item--card:hover .works-grid__image::after {
  border-color: color-mix(in srgb, var(--omofemi-yellow) 55%, transparent);
}

.works-grid__image {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 1.4s var(--ease);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--omofemi-black) 8%, transparent);
}

.works-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-grid__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--omofemi-black) 10%, transparent);
  pointer-events: none;
  transition: border-color 0.4s var(--ease);
}

.works-grid__item:hover .works-grid__image {
  transform: scale(1.045);
}

.works-grid__item:hover .works-grid__image::after {
  border-color: color-mix(in srgb, var(--omofemi-yellow) 55%, transparent);
}

.works-grid__meta h2,
.works-grid__meta h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.35s var(--ease);
}

.works-grid__item:hover .works-grid__meta h2,
.works-grid__item:hover .works-grid__meta h3 {
  color: var(--accent);
}

.work-hero {
  margin: 0 -1.5rem;
  min-height: 70svh;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-hero__image {
  max-height: 85svh;
  width: auto;
  margin: 0 auto;
}

.work-detail {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .work-detail { grid-template-columns: 1fr 18rem; }
}

.work-detail__aside .meta-label { margin-top: 1.5rem; }
.work-detail__aside .meta-label:first-child { margin-top: 0; }

.work-gallery {
  margin-top: 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mist);
}

.work-gallery__grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.work-gallery__item {
  margin: 0;
}

.work-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--sand);
}

.inquiry-form {
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inquiry-form--newsletter-inline {
  max-width: min(44rem, 100%);
  gap: 0;
}

.inquiry-form--newsletter-inline .inquiry-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) auto;
  gap: 0 1.25rem;
  align-items: end;
}

.inquiry-form--newsletter-inline .inquiry-form__submit {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.75rem;
}

.inquiry-form--newsletter-inline .btn-acquire--form {
  width: auto;
  white-space: nowrap;
}

.page--newsletter .inquiry-form--newsletter-inline {
  margin: 2rem auto 0;
}

@media (max-width: 720px) {
  .inquiry-form--newsletter-inline .inquiry-form__row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .inquiry-form--newsletter-inline .inquiry-form__submit {
    padding-bottom: 0;
  }

  .inquiry-form--newsletter-inline .btn-acquire--form {
    width: 100%;
  }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--mist);
  background: transparent;
  padding: 0.75rem 0;
  font: inherit;
  color: var(--ink);
}

.site-footer {
  padding: clamp(3.5rem, 6.5vw, 5rem) 1.5rem 2.1rem;
  background: color-mix(in srgb, var(--ivory) 88%, white);
  border-top: 1px solid color-mix(in srgb, var(--mist) 82%, white);
}

.site-footer__inner {
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.site-footer__kicker {
  margin-bottom: 0.8rem;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--neutral-mid) 78%, white);
}

.site-footer__logo {
  display: block;
  width: auto;
  max-width: min(16rem, 78vw);
  max-height: 3rem;
  object-fit: contain;
}

.site-footer__wordmark {
  display: inline-block;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.06rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__note {
  margin-top: 1rem;
  max-width: 36ch;
  color: color-mix(in srgb, var(--neutral-mid) 74%, #000);
  font-size: 0.92rem;
  line-height: 1.75;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  justify-content: flex-start;
  gap: 0.85rem 1.4rem;
  align-content: flex-start;
}

.site-footer__nav .site-footer__kicker {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.site-footer__nav a {
  font-size: 0.71rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--neutral-mid) 70%, #000);
  text-decoration: none;
  text-underline-offset: 0.2em;
  text-decoration-color: transparent;
  transition: color .25s var(--ease), text-decoration-color .25s var(--ease);
}

.site-footer__nav a:hover {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  align-items: flex-start;
}

.site-footer__email {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0 1.1rem;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, #000);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}

.site-footer__cta:hover {
  border-color: color-mix(in srgb, var(--accent) 78%, #000);
  color: color-mix(in srgb, var(--accent) 82%, #000);
  background-color: color-mix(in srgb, var(--accent) 5%, white);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.site-footer__links a {
  text-decoration: none;
  color: color-mix(in srgb, var(--neutral-mid) 72%, #000);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.site-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  height: 0.9rem;
  color: currentColor;
}

.site-footer__social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer__social-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__links a:hover,
.site-footer__email:hover {
  color: var(--accent);
}

.site-footer__base {
  max-width: 87.5rem;
  margin: 2rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in srgb, var(--mist) 82%, white);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  justify-content: space-between;
  color: var(--neutral-mid);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
  opacity: 0.92;
}

.site-footer__credit:hover {
  color: var(--accent);
}

.site-footer a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 60%, #000);
  outline-offset: 2px;
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-inline: 1.15rem;
  }

  .site-footer__base {
    justify-content: flex-start;
  }
}

.archive-section { margin-bottom: 4rem; }
.archive-section__title { margin-bottom: 1.5rem; }

.archive-list { list-style: none; }
.archive-list__item { border-top: 1px solid var(--mist); }
.archive-list__item a {
  display: block;
  padding: 1.5rem 0;
  text-decoration: none;
  color: inherit;
}
.archive-list__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  display: block;
}
.archive-list__meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--neutral-mid);
}

.exhibition-hero {
  margin: -8rem -1.5rem 3rem;
  min-height: 70svh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.exhibition-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 60%);
}
.exhibition-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 87.5rem;
  margin: 0 auto;
  width: 100%;
  color: var(--ivory);
}
.exhibition-hero__venue { margin-top: 0.5rem; opacity: 0.9; }

.editorial-prose {
  max-width: 40rem;
  margin-bottom: 3rem;
}
.editorial-prose p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--cocoa);
}

.timeline { list-style: none; border-left: 1px solid var(--mist); margin-left: 0.5rem; }
.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.35rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline__year { display: block; margin-bottom: 0.35rem; }
.timeline__link { text-decoration: none; color: inherit; }
.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  display: block;
}
.timeline__meta { font-size: 0.875rem; color: var(--neutral-mid); }

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 2rem;
}

.journal-filters a {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 1px solid color-mix(in srgb, var(--mist) 70%, #fff);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--neutral-mid);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.journal-filters a:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 18%, var(--mist));
}

.journal-filters a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--sand);
}

.essay-article .meta-label a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.journal-featured {
  margin: 0 0 2rem;
}

.journal-featured__link {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--mist) 75%, #fff);
  background: color-mix(in srgb, var(--sand) 36%, #fff);
}

.journal-featured__image {
  min-height: 21rem;
  background-size: cover;
  background-position: center;
}

.journal-featured__body {
  padding: clamp(1.25rem, 2.8vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-featured__title {
  margin: 0.4rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.15;
}

.journal-featured__excerpt {
  margin: 0.9rem 0 0;
  color: var(--neutral-mid);
  line-height: 1.7;
}

.journal-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.journal-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--mist) 72%, #fff);
  background: color-mix(in srgb, var(--sand) 24%, #fff);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.journal-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 1.8rem -1.2rem rgba(34, 34, 34, 0.35);
  border-color: color-mix(in srgb, var(--mist) 95%, #d6cfc4);
}

.journal-card__image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.journal-card__body {
  padding: 1rem 1rem 1.1rem;
}

.journal-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.25;
}

.journal-card__excerpt {
  margin: 0.65rem 0 0.85rem;
  color: var(--neutral-mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 980px) {
  .journal-featured__link {
    grid-template-columns: 1fr;
  }

  .journal-featured__image {
    min-height: 16rem;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }
}

.exhibition-featured {
  margin: 0 0 2rem;
}

.exhibition-featured__link {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--mist) 75%, #fff);
  background: color-mix(in srgb, var(--sand) 30%, #fff);
}

.exhibition-featured__image {
  min-height: 21rem;
  background-size: cover;
  background-position: center;
}

.exhibition-featured__body {
  padding: clamp(1.2rem, 2.7vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exhibition-featured__title {
  margin: 0.4rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
}

.exhibition-featured__meta {
  margin: 0.8rem 0 0;
  color: var(--neutral-mid);
  line-height: 1.6;
}

.exhibition-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.exhibition-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--mist) 72%, #fff);
  background: color-mix(in srgb, var(--sand) 22%, #fff);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.exhibition-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 1.8rem -1.2rem rgba(34, 34, 34, 0.35);
  border-color: color-mix(in srgb, var(--mist) 95%, #d6cfc4);
}

.exhibition-card__image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.exhibition-card__body {
  padding: 0.95rem 1rem 1.1rem;
}

.exhibition-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
}

.exhibition-card__meta {
  margin: 0.6rem 0 0;
  color: var(--neutral-mid);
  line-height: 1.55;
}

.press-featured {
  margin: 0 0 1.5rem;
}

.press-featured__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--mist) 75%, #fff);
  background: color-mix(in srgb, var(--sand) 30%, #fff);
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.press-featured__title {
  margin: 0.45rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.2;
}

.press-featured__meta {
  margin: 0.75rem 0 0;
  color: var(--neutral-mid);
}

.press-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.press-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--mist) 70%, #fff);
  background: color-mix(in srgb, var(--sand) 18%, #fff);
  padding: 0.95rem 1rem;
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.press-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.6rem -1.2rem rgba(34, 34, 34, 0.3);
  border-color: color-mix(in srgb, var(--mist) 95%, #d6cfc4);
}

.press-card__title {
  margin: 0.35rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.14rem;
  line-height: 1.3;
}

.press-card__date {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.875rem;
  color: var(--neutral-mid);
}

@media (max-width: 980px) {
  .exhibition-featured__link {
    grid-template-columns: 1fr;
  }

  .exhibition-featured__image {
    min-height: 16rem;
  }

  .exhibition-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }
}

/* Editorial listing harmonization: Journal / Exhibitions / Press */
.journal-featured__title,
.exhibition-featured__title,
.press-featured__title {
  letter-spacing: -0.02em;
}

.journal-featured__meta,
.journal-featured__excerpt,
.exhibition-featured__meta,
.press-featured__meta,
.journal-card__excerpt,
.exhibition-card__meta,
.press-card__date {
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--neutral-mid);
}

.journal-grid,
.exhibition-grid,
.press-grid {
  gap: 1rem;
}

.journal-card__body,
.exhibition-card__body,
.press-card__link {
  padding: 1rem 1rem 1.1rem;
}

.journal-card__title,
.exhibition-card__title,
.press-card__title {
  letter-spacing: -0.01em;
}

.journal-card .meta-label,
.exhibition-card .meta-label,
.press-card .meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.essay-hero {
  margin: -8rem -1.5rem 2rem;
  height: 40svh;
  background-size: cover;
  background-position: center;
}
.page--essay {
  display: flex;
  flex-direction: column;
}

.page--essay .reading-progress-rail {
  display: none;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: color-mix(in srgb, var(--mist) 80%, transparent);
  z-index: 90;
  pointer-events: none;
}

.reading-progress__bar {
  display: block;
  width: 0%;
  height: 100%;
  background: color-mix(in srgb, var(--accent) 84%, #9f1f16);
  transition: width 120ms linear;
}

.reading-progress-rail {
  position: fixed;
  left: max(0.5rem, calc((100vw - 48rem) / 2 - 1.15rem));
  top: 8.8rem;
  width: 2px;
  height: min(60vh, 26rem);
  background: color-mix(in srgb, var(--mist) 70%, #fff);
  z-index: 20;
  pointer-events: none;
}

.reading-progress-rail__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent) 80%, #9f1f16);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 120ms linear;
}

.essay-article {
  width: min(100%, 48rem);
  margin-inline: auto;
  padding-inline: clamp(0.2rem, 1vw, 0.6rem);
}

.essay-article .display-lg {
  margin: 0.45rem 0 0;
  max-width: 22ch;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.essay-article .meta-label {
  display: inline-block;
  margin-top: 0.1rem;
}

.essay-lead {
  margin: 1.05rem 0 1.75rem;
  max-width: 60ch;
  color: color-mix(in srgb, var(--ink) 82%, #000);
  line-height: 1.6;
}

.page--essay .editorial-prose {
  max-width: 42rem;
}

.page--essay .editorial-prose p {
  font-size: 1.03rem;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .reading-progress-rail {
    display: none;
  }

  .essay-hero {
    margin: -6.5rem -1rem 1.35rem;
    height: 30svh;
  }

  .essay-article {
    width: 100%;
    padding-inline: 0;
  }

  .essay-article .display-lg {
    max-width: 100%;
    line-height: 1.12;
  }

  .essay-lead {
    margin: 0.9rem 0 1.45rem;
  }
}

.press-list { list-style: none; }
.press-list__item { border-top: 1px solid var(--mist); padding: 1.5rem 0; }
.press-list__item a { text-decoration: none; color: inherit; }
.press-list__outlet { display: block; margin-bottom: 0.35rem; }
.press-list__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  display: block;
}
.press-list__date { font-size: 0.875rem; color: var(--neutral-mid); }

.biography-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 78rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .biography-layout {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    align-items: start;
  }
}
.biography-portrait-wrap {
  margin: 0;
}
.biography-portrait {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center 12%;
  background-color: var(--sand);
  border: 1px solid color-mix(in srgb, var(--mist) 78%, white);
}
.biography-content {
  max-width: 50rem;
}
.biography-lead {
  margin: 1.25rem 0 1.75rem;
  line-height: 1.35;
}
.page--biography .editorial-prose {
  max-width: 44rem;
}
.page--biography .editorial-prose p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: color-mix(in srgb, var(--ink) 86%, #000);
}
@media (min-width: 900px) {
  .biography-portrait-wrap {
    position: sticky;
    top: 7.25rem;
  }
}
@media (max-width: 899px) {
  .biography-portrait-wrap {
    max-width: 24rem;
  }
}

.media-list { list-style: none; }
.media-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--mist);
}
.media-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.media-grid__item img { width: 100%; height: auto; }
.media-grid figcaption { margin-top: 0.5rem; }

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.search-form input[type="search"] {
  min-width: min(100%, 20rem);
  border: none;
  border-bottom: 1px solid var(--mist);
  background: transparent;
  padding: 0.75rem 0;
  font: inherit;
}
.search-summary { margin-bottom: 2rem; }

.related-works { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--mist); }
.works-grid--compact { gap: 2rem; }

/* Collector — Phase 3 */
.page--dark { background: var(--charcoal); color: var(--ivory); min-height: 100svh; }
.page--collectors.page--dark,
.page--collectors-work.page--dark {
  padding: clamp(6rem, 12vh, 8rem) 1.5rem 4rem;
  max-width: none;
}
.page--collectors-work.page--dark {
  padding-top: 0;
}
.acquire-panel {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page--collectors .inquiry-form,
.page--collectors-work .inquiry-form,
.page--acquire .inquiry-form,
.page--acquire-work .inquiry-form {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  text-align: left;
}
.page--dark .body-lg { color: var(--ivory-soft); }
.acquire-note { margin: 1.5rem 0 2rem; opacity: 0.9; }

.acquire-note a {
  color: var(--ivory);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
}

.acquire-note a:hover {
  color: var(--ivory-soft);
}
.acquire-alt { margin-top: 2.5rem; }
.page--dark .quiet-link { color: var(--ivory); border-color: var(--accent); }

.acquire-work-hero {
  margin: -8rem -1.5rem 0;
  min-height: 55svh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.acquire-work-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 10%, transparent 70%);
}
.acquire-work-hero__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  color: var(--ivory);
}

.acquire-gallery {
  margin-top: 2.5rem;
}

.acquire-gallery__grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.acquire-gallery__item {
  margin: 0;
}

.acquire-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--charcoal-soft);
}
.acquire-panel--inline {
  padding: 3rem 1.5rem 4rem;
}

.private-gate {
  max-width: 28rem;
  margin: 6rem auto;
  text-align: center;
  color: var(--ivory);
}
.page--private-gate {
  background: var(--charcoal);
  min-height: 100svh;
  color: var(--ivory);
}
.private-gate__intro {
  margin: 1rem 0 2rem;
  color: var(--ivory-soft);
}
.page--private-gate .body-lg { color: var(--ivory-soft); }
.private-gate__form { text-align: left; margin-top: 2rem; }
.page--private-gate .inquiry-form label { color: var(--neutral-light); }
.page--private-gate .inquiry-form input {
  color: var(--ivory);
  border-color: rgba(245, 241, 234, 0.25);
}

.private-gallery-cta { margin-top: 3rem; text-align: center; }

.inquiry-form select {
  border: none;
  border-bottom: 1px solid var(--mist);
  background: transparent;
  padding: 0.75rem 0;
  font: inherit;
  color: inherit;
}
.page--dark .inquiry-form label {
  color: var(--neutral-light);
}

.page--dark .inquiry-form select,
.page--dark .inquiry-form input,
.page--dark .inquiry-form textarea {
  color: var(--ivory);
  border-color: rgba(245, 241, 234, 0.25);
}

.page--dark .inquiry-form select {
  color-scheme: light;
  background-color: color-mix(in srgb, var(--ivory) 5%, var(--charcoal));
}

.page--dark .inquiry-form select option {
  background-color: var(--ivory);
  color: var(--ink);
}
.form-optional { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.7; }

/* Contact — cinematic institutional layout */
.page--contact {
  background: var(--ivory);
  color: var(--ink);
}

.contact-cinematic {
  position: relative;
  margin: -8rem -1.5rem 2.5rem;
  min-height: clamp(11rem, 30vw, 18rem);
  overflow: hidden;
  border-bottom: 1px solid var(--mist);
}

.contact-cinematic__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: grayscale(0.35) saturate(0.85) contrast(1.05);
  transform: scale(1.03);
}

.contact-cinematic__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245, 241, 234, 0.08), rgba(17, 17, 17, 0.48));
}

.page__intro--contact {
  margin-bottom: 2.25rem;
}

.page--contact .meta-label,
.page--contact .body-lg {
  color: var(--cocoa);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-layout__form,
.contact-layout__details {
  border: 1px solid var(--mist);
  background: color-mix(in srgb, var(--ivory) 88%, white);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.page--contact .inquiry-form {
  max-width: none;
}

.page--contact .inquiry-form label {
  color: color-mix(in srgb, var(--neutral-mid) 76%, #000);
  gap: 0.58rem;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.page--contact .inquiry-form input,
.page--contact .inquiry-form select,
.page--contact .inquiry-form textarea {
  color: var(--ink);
  border-color: var(--mist);
  padding-block: 0.82rem;
}

.page--contact .inquiry-form textarea {
  min-height: 8.75rem;
  resize: vertical;
}

.page--contact .btn-acquire--form {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  border-bottom-width: 1px;
}

.contact-layout__label {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.contact-meta {
  display: grid;
  gap: 1.1rem;
}

.contact-meta dt {
  margin-bottom: 0.45rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neutral-mid);
}

.contact-meta dd {
  margin: 0;
  color: var(--cocoa);
}

.contact-meta dd a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--neutral-mid) 70%, transparent);
  text-underline-offset: 0.18em;
}

.contact-meta__emails {
  display: grid;
  gap: 0.35rem;
}

.contact-meta dd span {
  display: block;
}

.contact-map {
  margin-top: 1.4rem;
  border: 1px solid var(--mist);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.5) contrast(1.02);
}

.contact-policy {
  margin-top: 1.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--mist);
}

.contact-policy p {
  max-width: 40ch;
  color: var(--cocoa);
  line-height: 1.7;
  font-size: 0.94rem;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }
}

.site-footer--dark {
  background: #121110;
  border-top-color: rgba(245, 241, 234, 0.14);
}

.site-footer--dark .site-footer__wordmark,
.site-footer--dark .site-footer__email,
.site-footer--dark .site-footer__cta,
.site-footer--dark .site-footer__base,
.site-footer--dark .site-footer__credit,
.site-footer--dark .site-footer__links a,
.site-footer--dark .site-footer__nav a,
.site-footer--dark .site-footer__note,
.site-footer--dark .site-footer__kicker {
  color: var(--ivory-soft);
}

.site-footer--dark .site-footer__base {
  border-top-color: rgba(245, 241, 234, 0.12);
}

.site-footer--dark .site-footer__cta {
  border-color: rgba(245, 241, 234, 0.35);
}

.site-footer--dark .site-footer__nav a:hover,
.site-footer--dark .site-footer__links a:hover,
.site-footer--dark .site-footer__email:hover,
.site-footer--dark .site-footer__credit:hover,
.site-footer--dark .site-footer__cta:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.flash { padding: 1rem; margin-bottom: 1rem; }
.flash--ok { background: #e8efe4; }
.flash--err { background: #f5e8e8; }

@media (max-width: 1024px) {
  .page {
    padding-top: 7.25rem;
  }

  .site-header__inner {
    padding-inline: 1.1rem;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 6.85rem 1rem 3rem;
  }

  .page__intro {
    margin-bottom: 2.6rem;
  }

  .site-header__brand {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .chapter__content {
    padding: 5.2rem 1rem 3rem;
  }

  .flash {
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__cta {
    width: 100%;
  }
}

[data-reveal] { opacity: 1; transform: none; }

.has-reveal-motion [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* —— Gallery homepage (Gagosian-style hero + shop) —— */
.page--gallery {
  padding: 0;
  max-width: none;
}

.page--gallery .gallery-page__intro {
  padding: 8rem 1.5rem 2rem;
  max-width: 87.5rem;
  margin: 0 auto;
}

.gallery-hero {
  position: relative;
  min-height: 100dvh;
  background: #0a0a0a;
  color: var(--warm-white);
  overflow: hidden;
}

.gallery-hero__stage {
  position: absolute;
  inset: 0;
}

.gallery-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
  z-index: 0;
}

.gallery-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.gallery-hero__slide--full .gallery-hero__column {
  position: absolute;
  inset: 0;
}

.gallery-hero__slide--split .gallery-hero__columns {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100%;
}

.gallery-hero__column {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-hero__slide--split .gallery-hero__column--media + .gallery-hero__column--promo,
.gallery-hero__slide--split .gallery-hero__column--promo + .gallery-hero__column--media {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.gallery-hero__column--promo {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--gallery-promo-bg, #f3f0e8);
}

.gallery-hero__promo {
  position: absolute;
  inset: 0;
  background: var(--gallery-promo-bg, #f3f0e8);
}

.gallery-hero__copy--promo {
  position: relative;
  z-index: 1;
  inset: auto;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding: clamp(2.5rem, 6vw, 4.25rem) clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(4.5rem, 10vh, 5.75rem);
}

.gallery-hero__column--promo-light .gallery-hero__eyebrow {
  color: rgba(17, 17, 17, 0.55);
}

.gallery-hero__column--promo-light .gallery-hero__title {
  color: #111;
}

.gallery-hero__column--promo-light .gallery-hero__subtitle {
  color: rgba(17, 17, 17, 0.72);
}

.gallery-hero__column--promo-light .gallery-hero__cta {
  color: #111;
  border-bottom-color: rgba(17, 17, 17, 0.42);
}

.gallery-hero__column--promo-light .gallery-hero__cta:hover {
  color: #000;
  border-bottom-color: #000;
}

.gallery-hero__column--promo-dark .gallery-hero__eyebrow {
  color: color-mix(in srgb, var(--warm-white) 72%, transparent);
}

.gallery-hero__column--promo-dark .gallery-hero__title {
  color: var(--warm-white);
}

.gallery-hero__column--promo-dark .gallery-hero__subtitle {
  color: color-mix(in srgb, var(--warm-white) 88%, transparent);
}

.gallery-hero__column--promo-dark .gallery-hero__cta {
  color: var(--warm-white);
  border-bottom-color: color-mix(in srgb, var(--warm-white) 50%, transparent);
}

.gallery-hero__media--bare .gallery-hero__scrim {
  display: none;
}

.gallery-hero__slide--split .gallery-hero__column--promo .gallery-hero__title {
  font-size: clamp(1.65rem, 3.2vw, 2.85rem);
  line-height: 1.08;
}

.gallery-hero--multi .gallery-hero__slide--split .gallery-hero__copy--promo {
  padding-bottom: clamp(5.75rem, 12vh, 7.25rem);
}

.gallery-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-hero__image {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: var(--gallery-focus, center center);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.gallery-hero__slide.is-active .gallery-hero__image {
  transform: scale(1);
}

.gallery-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--gallery-focus, center center);
}

.gallery-hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(6, 6, 6, 0.82) 0%,
    rgba(6, 6, 6, 0.35) 32%,
    rgba(6, 6, 6, 0.08) 58%,
    rgba(6, 6, 6, 0.02) 100%
  );
}

.gallery-hero__copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(5.5rem, 14vh, 7.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(4.5rem, 10vh, 6rem);
  max-width: 52rem;
}

.gallery-hero__copy--column {
  max-width: none;
  padding: clamp(3.5rem, 10vh, 5rem) clamp(1rem, 2.5vw, 1.75rem) clamp(4.5rem, 10vh, 5.5rem);
}

.gallery-hero--multi .gallery-hero__slide--full .gallery-hero__copy {
  padding-bottom: clamp(6.75rem, 14vh, 8.5rem);
}

.gallery-hero--multi .gallery-hero__slide--split .gallery-hero__copy--column {
  padding-bottom: clamp(5.5rem, 11vh, 7rem);
}

.gallery-hero__slide--split .gallery-hero__title {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
}

@media (max-width: 767px) {
  .gallery-hero__slide--split .gallery-hero__columns {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .gallery-hero__slide--split .gallery-hero__column--media + .gallery-hero__column--promo,
  .gallery-hero__slide--split .gallery-hero__column--promo + .gallery-hero__column--media {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .gallery-hero__copy--promo {
    min-height: auto;
    padding-top: clamp(2rem, 8vw, 3rem);
    padding-bottom: clamp(2rem, 8vw, 3rem);
  }

  .gallery-hero--multi .gallery-hero__slide--split .gallery-hero__copy--promo {
    padding-bottom: clamp(4.5rem, 12vh, 6rem);
  }
}

.gallery-hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--warm-white) 88%, transparent);
}

.gallery-hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.gallery-hero__subtitle {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--warm-white) 90%, transparent);
}

.gallery-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-white);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--warm-white) 55%, transparent);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.gallery-hero__cta:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.gallery-hero__ui {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.gallery-hero__progress {
  display: flex;
  align-items: stretch;
  gap: 5px;
  height: 2px;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  box-sizing: border-box;
}

.gallery-hero__progress-segment {
  flex: 1 1 0;
  min-width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.gallery-hero__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--warm-white);
  will-change: width;
}

.gallery-hero__progress-segment.is-complete {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-hero__progress-segment.is-complete .gallery-hero__progress-fill {
  width: 100%;
}

.gallery-hero__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(1.25rem, 4vw, 3.5rem) 1.1rem;
  pointer-events: auto;
}

.gallery-hero__nav {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--warm-white);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.gallery-hero__nav:hover {
  opacity: 1;
}

.gallery-shop {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 10vw, 6rem);
  max-width: 87.5rem;
  margin: 0 auto;
  background: var(--ivory);
}

.gallery-works {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  max-width: 87.5rem;
  margin: 0 auto;
  background: var(--ivory);
}

.gallery-artist-card {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--ivory) 12%, var(--omofemi-black));
  display: grid;
  gap: 1rem;
}

.gallery-artist-card--inline {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding-top: clamp(1.75rem, 4vw, 2.25rem);
  border: 0;
  border-top: 1px solid var(--mist);
  max-width: 38rem;
}

@media (min-width: 640px) {
  .gallery-artist-card--inline {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    align-items: start;
  }
}

.gallery-artist-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 0.35rem;
}

.gallery-artist-card__links .quiet-link {
  display: inline-block;
}

.gallery-artist-card__portrait {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.gallery-artist-card__copy .display-md {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0.35rem 0 0.75rem;
}

.acquire-selected-work {
  margin-bottom: 1rem;
}

.inquiry-artwork-context {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--mist) 80%, transparent);
  text-align: left;
}

.page--dark .inquiry-artwork-context {
  border-color: color-mix(in srgb, var(--ivory) 16%, transparent);
  background: color-mix(in srgb, var(--ivory) 4%, transparent);
}

.page--contact .inquiry-artwork-context {
  margin: 0 0 2rem;
  max-width: none;
  background: color-mix(in srgb, var(--ivory-soft) 65%, #fff);
}

.inquiry-artwork-context__label {
  margin-bottom: 0.45rem;
}

.inquiry-artwork-context__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.inquiry-artwork-context__meta {
  margin-top: 0.45rem;
  font-size: 0.875rem;
  color: var(--cocoa);
}

.page--dark .inquiry-artwork-context__meta {
  color: color-mix(in srgb, var(--ivory) 72%, transparent);
}

.inquiry-artwork-context__sep {
  margin-inline: 0.35rem;
  opacity: 0.55;
}

.inquiry-artwork-context--compact {
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
}

.inquiry-artwork-context__label-inline {
  margin-right: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.page--dark .inquiry-artwork-context__label-inline {
  color: color-mix(in srgb, var(--ivory) 58%, transparent);
}

.page--gallery-artist {
  background: var(--ivory);
}

.gallery-artist-profile {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem) clamp(5rem, 10vw, 7rem);
}

.gallery-artist-profile__back {
  display: inline-block;
  margin-bottom: 2rem;
}

.gallery-artist-profile__header {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .gallery-artist-profile__header {
    grid-template-columns: minmax(8rem, 12rem) minmax(0, 1fr);
  }
}

.gallery-artist-profile__portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.gallery-artist-profile__meta {
  margin-top: 0.65rem;
  color: var(--neutral-mid);
}

.gallery-artist-profile__website {
  margin-top: 1rem;
}

.gallery-artist-profile__bio,
.gallery-artist-profile__details {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.gallery-artist-profile__works {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}

.gallery-artist-profile__identity .display-md a,
.gallery-grid__body .meta-label a,
.page--gallery-artist .quiet-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent);
}

.gallery-artist-profile__identity .display-md a:hover,
.gallery-grid__body .meta-label a:hover {
  color: var(--accent);
  border-bottom-color: var(--omofemi-yellow);
}

.page--gallery-detail .meta-label a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent);
}

.page--gallery-detail .meta-label a:hover {
  color: var(--accent);
}

.work-show-artist-byline {
  margin-bottom: 1.15rem;
}

.work-show-artist-byline__label {
  margin-bottom: 0.35rem;
}

.work-show-artist-byline__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.work-show-artist-byline__name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
}

.work-show-artist-byline__name a:hover {
  color: var(--accent);
  border-bottom-color: var(--omofemi-yellow);
}

.work-show-artist-byline__link {
  display: inline-block;
  margin-top: 0.65rem;
}

.work-show-related__profile-link {
  margin-top: 0.85rem;
}

.page--gallery-artwork .gallery-artist-card__copy .display-md a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent);
}

.page--gallery-artwork .gallery-artist-card__copy .display-md a:hover {
  color: var(--accent);
  border-bottom-color: var(--omofemi-yellow);
}

.gallery-shop__head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.gallery-shop__head .section-heading {
  margin-bottom: 0;
}

.gallery-shop__lead {
  margin-top: 0.75rem;
  color: var(--neutral-mid);
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.gallery-grid__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}

.gallery-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-grid__media:hover img {
  transform: scale(1.03);
}

.gallery-grid__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-top: 1rem;
  min-height: 0;
}

.gallery-grid__copy {
  flex: 1 1 auto;
}

.gallery-grid__copy .meta-label {
  margin: 0;
}

.gallery-grid__copy .meta-label + .meta-label {
  margin-top: 0.35rem;
}

.gallery-grid__actions {
  margin-top: auto;
  padding-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.gallery-grid__actions .gallery-grid__price {
  margin: 0;
}

.gallery-grid__actions .gallery-cart-add {
  width: 100%;
  margin-top: 0;
}

.gallery-grid__actions .btn-acquire--form {
  width: 100%;
}

.gallery-grid__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.gallery-grid__title a {
  color: inherit;
  text-decoration: none;
}

.gallery-grid__title a:hover {
  color: var(--accent);
}

.gallery-grid__price {
  margin-top: 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.gallery-grid__price--deposit {
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--cocoa);
}

.gallery-checkout-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 18rem;
}

.gallery-checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.gallery-checkout-form input {
  border: none;
  border-bottom: 1px solid var(--mist);
  background: transparent;
  padding: 0.5rem 0;
  font: inherit;
}

.gallery-cart-add {
  margin-top: 1rem;
}

.site-flash {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 1rem var(--page-gutter);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  flex-shrink: 0;
}

.site-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
}

.site-header__cart:hover {
  opacity: 1;
}

.site-header--light .site-header__cart:hover {
  color: var(--accent);
}

.site-header__cart.has-items {
  opacity: 1;
  font-weight: 500;
}

.site-header__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--omofemi-black);
  color: var(--ivory);
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1;
}

.site-header--dark .site-header__cart-count {
  background: var(--omofemi-yellow);
  color: var(--omofemi-black);
}

.gallery-checkout__hero {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 42rem;
}

.gallery-checkout__lead {
  margin-top: 0.85rem;
}

.gallery-checkout__empty {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.gallery-checkout__empty-card {
  width: min(100%, 28rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--mist);
  background: color-mix(in srgb, var(--ivory) 90%, white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.gallery-checkout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 980px) {
  .gallery-checkout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 3vw, 3rem);
  }

  .gallery-checkout__panel {
    position: sticky;
    top: 6.5rem;
    min-width: 0;
  }
}

@media (min-width: 1180px) {
  .gallery-checkout__payment-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gallery-checkout__items-head,
.gallery-checkout__section-title {
  margin: 0;
}

.gallery-checkout__items-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--mist);
}

.gallery-checkout__section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
}

.gallery-cart__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-cart__item {
  display: grid;
  grid-template-columns: clamp(4.5rem, 12vw, 6.5rem) minmax(0, 1fr) auto;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--mist);
}

.gallery-cart__item:first-child {
  padding-top: 0;
}

.gallery-cart__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.gallery-cart__media--empty {
  background: color-mix(in srgb, var(--mist) 70%, var(--sand));
}

.gallery-cart__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-cart__media:hover img {
  transform: scale(1.03);
}

.gallery-cart__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.25;
}

.gallery-cart__title a {
  color: inherit;
  text-decoration: none;
}

.gallery-cart__title a:hover {
  color: var(--accent);
}

.gallery-cart__meta,
.gallery-cart__availability {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.gallery-cart__meta {
  color: var(--cocoa);
}

.gallery-cart__availability {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.gallery-cart__aside {
  text-align: right;
  min-width: 5.5rem;
}

.gallery-cart__price {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.gallery-cart__price-label {
  margin: 0.2rem 0 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.gallery-cart__remove {
  margin: 0;
}

.gallery-cart__remove-btn {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cocoa);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.gallery-cart__remove-btn:hover {
  color: var(--ink);
}

.gallery-checkout__panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.gallery-checkout__summary,
.gallery-checkout__form {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--mist);
  background: color-mix(in srgb, var(--ivory) 88%, white);
  min-width: 0;
}

.gallery-checkout__summary-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.gallery-checkout__summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--cocoa);
}

.gallery-checkout__summary-list strong {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
}

.gallery-checkout__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--mist);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.gallery-checkout__summary-total strong {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.gallery-checkout__summary-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--cocoa);
}

.gallery-checkout__form-lead {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--cocoa);
}

.gallery-checkout__payment-legend {
  display: block;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.gallery-checkout__payment-options {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  display: grid;
  gap: 0.75rem;
}

.gallery-checkout__payment-option {
  display: block;
  cursor: pointer;
}

.gallery-checkout__payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gallery-checkout__payment-option-body {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--mist);
  background: var(--ivory);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}

.gallery-checkout__payment-option input:focus-visible + .gallery-checkout__payment-option-body {
  outline: 2px solid color-mix(in srgb, var(--omofemi-yellow) 45%, transparent);
  outline-offset: 2px;
}

.gallery-checkout__payment-option.is-selected .gallery-checkout__payment-option-body,
.gallery-checkout__payment-option input:checked + .gallery-checkout__payment-option-body {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--mist));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}

.gallery-checkout__payment-option-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.gallery-checkout__payment-option-amount {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.gallery-checkout__payment-option-note {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--cocoa);
}

.gallery-checkout__payment-fixed {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--mist);
  background: color-mix(in srgb, var(--ivory) 92%, white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.gallery-cart__pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.gallery-cart__qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 0.85rem;
  border: 1px solid var(--mist);
  background: var(--ivory);
  width: fit-content;
}

.gallery-cart__qty-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.gallery-cart__qty-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--sand) 70%, white);
}

.gallery-cart__qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-cart__qty-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 2.75rem;
  padding: 0 0.15rem;
}

.gallery-cart__qty-text {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.gallery-cart__qty-input {
  width: 2.5rem;
  border: none;
  background: transparent;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  text-align: center;
  color: var(--ink);
  -moz-appearance: textfield;
}

.gallery-cart__qty-input::-webkit-outer-spin-button,
.gallery-cart__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gallery-cart__qty-input:focus {
  outline: none;
}

.gallery-checkout__checkout {
  margin-top: 0;
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.checkout-fields__group {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.checkout-fields__legend {
  display: block;
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
}

.checkout-fields__group--optional .checkout-fields__legend {
  font-size: 0.92rem;
  color: var(--cocoa);
}

.checkout-fields__grid {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

@media (min-width: 720px) {
  .checkout-fields__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .gallery-checkout .checkout-fields__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-checkout .checkout-fields {
    gap: 1.15rem;
  }

  .gallery-checkout .checkout-fields__group + .checkout-fields__group {
    margin-top: 0.15rem;
  }
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.checkout-field__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--mist) 85%, var(--cocoa));
  background: var(--ivory);
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
  color: color-mix(in srgb, var(--cocoa) 65%, white);
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--omofemi-yellow) 25%, transparent);
}

.checkout-field textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.5;
}

.checkout-fields__group > .checkout-field + .checkout-field,
.checkout-fields__grid + .checkout-field {
  margin-top: 0.85rem;
}

.checkout-fields__grid .checkout-field,
.checkout-fields__grid .checkout-field + .checkout-field {
  margin-top: 0;
}

.gallery-checkout__submit {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mist);
}

.gallery-checkout__submit .btn-acquire {
  width: 100%;
}

.gallery-checkout__secure {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
  color: var(--cocoa);
}

.page--gallery-cart {
  padding-top: 7rem;
}

@media (max-width: 979px) {
  .gallery-cart__item {
    grid-template-columns: 4.75rem minmax(0, 1fr);
    grid-template-areas:
      "media body"
      "media aside";
  }

  .gallery-cart__media {
    grid-area: media;
  }

  .gallery-cart__body {
    grid-area: body;
  }

  .gallery-cart__aside {
    grid-area: aside;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
  }

  .gallery-cart__price-label {
    margin: 0;
  }

  .gallery-cart__remove {
    margin-left: auto;
  }
}

/* Checkout receipt */
.page--checkout-success {
  padding-top: 7rem;
}

.checkout-receipt {
  max-width: 40rem;
  margin: 0 auto;
}

.checkout-receipt__head {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 34rem;
}

.checkout-receipt__head .body-lg {
  margin-top: 0.75rem;
}

.checkout-receipt__card {
  border: 1px solid var(--mist);
  background: color-mix(in srgb, var(--ivory) 88%, white);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 2rem;
}

.checkout-receipt__meta {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.checkout-receipt__meta div {
  display: grid;
  gap: 0.25rem;
}

.checkout-receipt__meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.checkout-receipt__meta dd {
  margin: 0;
  color: var(--ink);
}

.checkout-receipt__status {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.checkout-receipt__status--paid {
  background: color-mix(in srgb, var(--omofemi-yellow) 35%, white);
  color: var(--omofemi-black);
}

.checkout-receipt__status--pending {
  background: var(--mist);
  color: var(--cocoa);
}

.checkout-receipt__items {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mist);
}

.checkout-receipt__list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checkout-receipt__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.checkout-receipt__list strong {
  font-family: var(--font-serif);
  white-space: nowrap;
}

.checkout-receipt__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mist);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.checkout-receipt__total strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.checkout-receipt__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* —— Work detail — gallery presentation —— */
.page--work-detail,
.page--exhibition-detail {
  padding: 0;
  max-width: none;
}

.work-show-hero {
  position: relative;
  min-height: 100svh;
  background: var(--omofemi-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-show-hero--empty {
  min-height: 12rem;
}

.work-show-hero__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5.5rem, 12vh, 7rem) clamp(1rem, 4vw, 2.5rem) 1.5rem;
}

.work-show-hero__image {
  max-height: min(78svh, 56rem);
  max-width: min(92vw, 52rem);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.work-show-hero__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem) 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--ivory) 12%, transparent);
}

.work-show-hero .quiet-link {
  margin-top: 0;
  color: color-mix(in srgb, var(--ivory) 88%, transparent);
  border-bottom-color: color-mix(in srgb, var(--omofemi-yellow) 55%, transparent);
}

.work-show-hero .quiet-link:hover {
  color: var(--omofemi-yellow);
  border-bottom-color: var(--omofemi-yellow);
}

.work-show-hero__year {
  color: color-mix(in srgb, var(--ivory) 65%, transparent);
}

.work-show-body {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 4.5rem) clamp(1rem, 4vw, 1.5rem) clamp(4rem, 9vh, 6rem);
}

.work-show-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .work-show-layout {
    grid-template-columns: minmax(0, 1fr) 20rem;
  }
}

.work-show-main__title {
  margin-top: 0.65rem;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.work-show-main__description {
  margin-top: 1.35rem;
}

.work-show-exhibitions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mist);
}

.work-show-exhibitions__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.work-show-exhibitions__link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--mist);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.work-show-exhibitions__link:hover {
  border-bottom-color: var(--omofemi-yellow);
  transform: translateX(4px);
}

.work-show-exhibitions__title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.work-show-exhibitions__meta {
  display: block;
  margin-top: 0.35rem;
}

.work-show-collector__card {
  position: sticky;
  top: 6rem;
  padding: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--mist);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--omofemi-black) 6%, transparent);
}

.work-show-collector__card::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--omofemi-yellow), var(--omofemi-red));
}

.work-show-collector__status {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0.5rem 0 1.25rem;
}

.work-show-collector__status--available,
.work-show-collector__status--inquiry {
  color: var(--ink);
}

.work-show-collector__status--sold,
.work-show-collector__status--not-for-sale,
.work-show-collector__status--not_for_sale,
.work-show-collector__status--nfs {
  color: var(--neutral-mid);
}

.work-show-facts {
  margin: 0 0 1.25rem;
  padding: 0;
}

.work-show-facts__row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--mist) 80%, transparent);
  font-size: 0.92rem;
}

.work-show-facts__row dt {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

.work-show-facts__row dd {
  margin: 0;
  color: var(--ink);
}

.work-show-collector__deposit {
  margin: 1rem 0 0.75rem;
  font-size: 0.92rem;
  color: var(--cocoa);
}

.work-show-collector__deposit strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.work-show-collector__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.work-show-collector__cart {
  margin-bottom: 0;
}

.work-show-collector__cart .btn-acquire--form {
  width: 100%;
}

.btn-ghost--work {
  display: block;
  width: 100%;
  margin-top: 0;
  text-align: center;
  border-color: var(--ink);
}

.btn-ghost--work:hover {
  background: var(--omofemi-black);
  color: var(--ivory);
  border-color: var(--omofemi-black);
}

.work-show-gallery,
.work-show-related {
  margin-top: clamp(3.5rem, 8vh, 5rem);
  padding-top: clamp(2rem, 5vh, 3rem);
  border-top: 1px solid var(--mist);
}

.work-show-gallery__head,
.work-show-related__head {
  margin-bottom: 2rem;
}

.work-show-gallery__head .display-md,
.work-show-related__head .display-md {
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

.work-show-gallery__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.exhibition-show-gallery .work-show-gallery__grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.work-show-gallery__item {
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--omofemi-black) 7%, transparent);
}

.work-show-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}

.work-show-gallery__item:hover img {
  transform: scale(1.04);
}

/* —— Exhibition detail —— */
.exhibition-show-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-color: var(--omofemi-black);
  background-image: var(--exhibition-hero-image);
  background-size: cover;
  background-position: center;
}

.exhibition-show-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.35) 42%, rgba(10, 10, 10, 0.12) 100%),
    linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 50%, transparent 72%);
}

.exhibition-show-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 7rem) clamp(1rem, 4vw, 1.5rem) clamp(3.5rem, 9vh, 5rem);
  color: var(--ivory);
}

.exhibition-show-hero__back {
  margin-top: 0;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--ivory) 85%, transparent);
  border-bottom-color: color-mix(in srgb, var(--omofemi-yellow) 50%, transparent);
}

.exhibition-show-hero__back:hover {
  color: var(--omofemi-yellow);
  border-bottom-color: var(--omofemi-yellow);
}

.exhibition-show-hero__status {
  color: var(--omofemi-yellow);
}

.exhibition-show-hero__title {
  max-width: 14ch;
  margin-top: 0.75rem;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.exhibition-show-hero__venue {
  margin-top: 1rem;
  max-width: 32rem;
  color: color-mix(in srgb, var(--ivory) 90%, transparent);
}

.exhibition-show-hero__dates {
  margin-top: 1rem;
  color: color-mix(in srgb, var(--ivory) 72%, transparent);
}

.exhibition-show-body {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 4.5rem) clamp(1rem, 4vw, 1.5rem) clamp(4rem, 9vh, 6rem);
}

.exhibition-show-layout {
  margin-bottom: clamp(3.5rem, 8vh, 5rem);
}

.exhibition-show-layout--facts-only {
  display: block;
  max-width: 22rem;
}

.exhibition-show-main .exhibition-show-editorial {
  margin-bottom: 0;
}

.exhibition-show-editorial {
  max-width: 40rem;
}

.exhibition-show-editorial__label {
  margin-bottom: 0;
  letter-spacing: 0.16em;
}

.exhibition-show-editorial__prose {
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
  max-width: none;
  margin-bottom: 0;
}

.exhibition-show-editorial__prose p {
  line-height: 1.75;
}

.exhibition-show-editorial__prose p + p {
  margin-top: 1.35rem;
}

.exhibition-show-editorial__prose p:first-child {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.exhibition-show-gallery {
  margin-bottom: clamp(3rem, 7vh, 4.5rem);
}

.exhibition-show-works__head {
  margin-bottom: 2rem;
}

.exhibition-show-works__head .display-md {
  margin-top: 0.5rem;
}

.exhibition-show-works__lead {
  margin-top: 0.85rem;
}

.exhibition-show-hero__collect {
  margin-top: 1.75rem;
}

.exhibition-show-aside__status {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0.5rem 0 1.25rem;
  color: var(--ink);
}

.exhibition-show-aside__status--upcoming,
.exhibition-show-aside__status--current {
  color: var(--ink);
}

.exhibition-show-aside__status--past {
  color: var(--neutral-mid);
}

.page__intro--exhibition {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 8rem clamp(1rem, 4vw, 1.5rem) 2rem;
}

/* —— Exhibitions index — spotlight + cards —— */
.exhibition-spotlight {
  margin: 0 0 clamp(2.5rem, 6vw, 3.5rem);
}

.exhibition-spotlight__link {
  display: grid;
  text-decoration: none;
  color: inherit;
  min-height: min(72svh, 40rem);
  overflow: hidden;
  background: var(--omofemi-black);
}

@media (min-width: 900px) {
  .exhibition-spotlight__link {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.exhibition-spotlight__media {
  position: relative;
  min-height: 22rem;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease);
}

.exhibition-spotlight__link:hover .exhibition-spotlight__media {
  transform: scale(1.03);
}

.exhibition-spotlight__media-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(10, 10, 10, 0.25) 100%);
}

.exhibition-spotlight__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--omofemi-black);
  color: var(--ivory);
}

.exhibition-spotlight__panel .meta-label::before {
  background: var(--omofemi-yellow);
  opacity: 1;
}

.exhibition-spotlight__title {
  margin: 0.75rem 0 0;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.exhibition-spotlight__meta {
  margin-top: 1rem;
  color: color-mix(in srgb, var(--ivory) 82%, transparent);
  max-width: 28rem;
}

.exhibition-spotlight__dates {
  margin-top: 1rem;
  color: color-mix(in srgb, var(--ivory) 65%, transparent);
}

.exhibition-spotlight__cta {
  margin-top: 1.75rem;
  color: var(--ivory);
  border-bottom-color: var(--omofemi-yellow);
}

.exhibition-spotlight__cta:hover {
  color: var(--omofemi-yellow);
}

.exhibition-archive-section {
  margin-bottom: clamp(3rem, 7vh, 4rem);
}

.exhibition-grid--premium {
  gap: 1.25rem;
}

.exhibition-card--premium .exhibition-card__link {
  border: none;
  background: var(--ivory);
  overflow: hidden;
  box-shadow: 0 14px 40px color-mix(in srgb, var(--omofemi-black) 5%, transparent);
}

.exhibition-card--premium .exhibition-card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px color-mix(in srgb, var(--omofemi-black) 10%, transparent);
  border-color: transparent;
}

.exhibition-card--premium .exhibition-card__image {
  aspect-ratio: 4 / 5;
  transition: transform 1.3s var(--ease);
}

.exhibition-card--premium .exhibition-card__link:hover .exhibition-card__image {
  transform: scale(1.04);
}

.exhibition-card--premium .exhibition-card__image {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.exhibition-card__image--empty {
  background: linear-gradient(135deg, var(--sand), var(--ivory-muted));
}

.exhibition-card__status {
  margin-bottom: 0.45rem;
  color: var(--accent);
}

.timeline--premium {
  border-left-color: color-mix(in srgb, var(--omofemi-yellow) 45%, var(--mist));
}

.timeline--premium .timeline__item::before {
  background: var(--omofemi-yellow);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--omofemi-yellow) 25%, transparent);
}

.timeline--premium .timeline__link:hover .timeline__title {
  color: var(--accent);
}

/* —— Artist homepage — premium editorial layer —— */
.exhibition-body--homepage .homepage {
  padding: 0;
  max-width: none;
}

.chapter__index {
  position: absolute;
  top: clamp(4.5rem, 10vh, 6rem);
  right: clamp(1rem, 4vw, 3rem);
  z-index: 1;
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: color-mix(in srgb, var(--ink) 7%, transparent);
  pointer-events: none;
  user-select: none;
}

.chapter--threshold .chapter__index,
.chapter--artwork .chapter__index,
.chapter--exhibition-feature .chapter__index {
  color: color-mix(in srgb, var(--ivory) 14%, transparent);
}

.chapter__index--light {
  color: color-mix(in srgb, var(--ivory) 12%, transparent);
}

.exhibition-body--homepage .chapter--works-preview .chapter__content,
.exhibition-body--homepage .chapter--press-strip .chapter__content,
.exhibition-body--homepage .chapter--newsletter .chapter__content,
.exhibition-body--homepage .chapter--cta .chapter__content {
  padding-top: clamp(6rem, 12vh, 8rem);
  padding-bottom: clamp(4.5rem, 10vh, 6.5rem);
}

.exhibition-body--homepage .chapter--cta .section-heading {
  max-width: 20ch;
}

.homepage-scroll-cue {
  position: fixed;
  left: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: var(--ivory);
  opacity: 0.9;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.35s var(--ease);
  pointer-events: auto;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.35rem;
  font: inherit;
}

.homepage-scroll-cue:hover {
  opacity: 1;
  color: var(--omofemi-yellow);
}

.homepage-scroll-cue:focus-visible {
  outline: 2px solid var(--omofemi-yellow);
  outline-offset: 4px;
}

.homepage-scroll-cue.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}

.homepage-scroll-cue__label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.homepage-scroll-cue__line {
  display: block;
  width: 1px;
  height: 2.75rem;
  background: color-mix(in srgb, var(--ivory) 35%, transparent);
  position: relative;
  overflow: hidden;
}

.homepage-scroll-cue__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--omofemi-yellow);
  animation: scroll-cue-pulse 1.8s var(--ease) infinite;
}

@keyframes scroll-cue-pulse {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

.homepage-progress {
  position: fixed;
  top: 5.5rem;
  right: clamp(0.85rem, 2vw, 1.25rem);
  bottom: 2rem;
  width: 2px;
  z-index: 90;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage-progress__rail {
  flex: 1;
  width: 100%;
  background: color-mix(in srgb, var(--omofemi-black) 10%, transparent);
  border-radius: 999px;
  overflow: hidden;
}

.homepage-progress__fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--omofemi-yellow) 0%,
    var(--omofemi-red) 100%
  );
  transform-origin: top center;
  transform: scaleY(0);
  will-change: transform;
}

.homepage-progress__chapters {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.65rem;
  pointer-events: auto;
}

.homepage-progress__chapter {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.35s var(--ease);
}

.homepage-progress__chapter::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--omofemi-black) 18%, transparent);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.homepage-progress__chapter.is-passed::before {
  background: var(--omofemi-red);
}

.homepage-progress__chapter.is-active::before {
  background: var(--omofemi-yellow);
  transform: scale(1.35);
}

.homepage-progress__chapter.is-active {
  transform: none;
}

.homepage-progress__chapter:hover::before {
  background: var(--omofemi-yellow);
  transform: scale(1.2);
}

.homepage-progress__chapter:focus-visible {
  outline: 2px solid var(--omofemi-yellow);
  outline-offset: 2px;
}

.gallery-hero--artist-home {
  background: var(--omofemi-black);
}

.gallery-hero--artist-home .gallery-hero__title {
  font-size: clamp(2.85rem, 8.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.gallery-hero--artist-home .gallery-hero__eyebrow {
  color: var(--omofemi-yellow);
  letter-spacing: 0.22em;
}

.gallery-hero--artist-home .gallery-hero__eyebrow::before {
  content: none;
}

.gallery-hero--artist-home .gallery-hero__progress {
  height: 3px;
  gap: 6px;
}

.gallery-hero--artist-home .gallery-hero__progress-segment {
  background: color-mix(in srgb, var(--ivory) 18%, transparent);
}

.gallery-hero--artist-home .gallery-hero__progress-segment.is-active .gallery-hero__progress-fill,
.gallery-hero--artist-home .gallery-hero__progress-fill {
  background: var(--omofemi-yellow);
  box-shadow: 0 0 12px color-mix(in srgb, var(--omofemi-yellow) 45%, transparent);
}

.gallery-hero--artist-home .gallery-hero__progress-segment.is-complete .gallery-hero__progress-fill {
  background: var(--omofemi-red);
  box-shadow: none;
}

.gallery-hero--artist-home .gallery-hero__cta {
  border-bottom-color: var(--omofemi-yellow);
  letter-spacing: 0.2em;
}

.gallery-hero--artist-home .gallery-hero__cta:hover {
  color: var(--omofemi-yellow);
  border-bottom-color: var(--omofemi-yellow);
}

.gallery-hero--artist-home .gallery-hero__slide--split .gallery-hero__column--promo-dark .gallery-hero__eyebrow {
  color: var(--omofemi-yellow);
}

.exhibition-body--homepage .home-press-scroll .press-kit-card__link:hover .press-kit-card__title {
  color: var(--accent);
}

.exhibition-body--homepage .home-press-scroll__track {
  gap: 1.25rem;
  padding-bottom: 0.75rem;
}

.exhibition-body--homepage .press-kit-card--compact {
  box-shadow: 0 12px 36px color-mix(in srgb, var(--omofemi-black) 6%, transparent);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.exhibition-body--homepage .press-kit-card--compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px color-mix(in srgb, var(--omofemi-black) 10%, transparent);
}

.exhibition-body--homepage .site-header--dark .site-header__nav a.is-featured {
  color: var(--omofemi-yellow);
  border-color: color-mix(in srgb, var(--omofemi-yellow) 55%, var(--ivory));
}

@media (max-width: 900px) {
  .homepage-progress,
  .homepage-scroll-cue,
  .chapter__index {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .archive-panel__media,
  .archive-panel__overlay {
    transition: none;
  }

  .archive-panel__overlay {
    opacity: 1;
  }

  .archive-marquee__track {
    animation: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .archive-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .archive-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .archive-marquee .archive-panel {
    scroll-snap-align: start;
  }

  .gallery-hero__slide,
  .gallery-hero__image {
    transition: none;
  }

  .homepage-progress,
  .homepage-scroll-cue {
    display: none;
  }

  .homepage-scroll-cue__line::after {
    animation: none;
  }
}
