/** Shopify CDN: Minification failed

Line 2251:1 Expected "}" to go with "{"

**/
:root {
  --jp-bg: #0d0d0d;
  --jp-text: #f4f0e8;
  --jp-muted: rgba(244, 240, 232, 0.68);
  --jp-line: rgba(244, 240, 232, 0.18);
  --jp-panel: rgba(14, 14, 14, 0.92);
  --jp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.template-collection {
  background: var(--jp-bg);
  color: var(--jp-text);
}

body.template-collection .shopify-section-group-header-group,
body.template-collection .shopify-section-group-footer-group {
  display: none;
}

.jp-exhibition-page {
  background: var(--jp-bg);
  color: var(--jp-text);
  min-height: 100vh;
  font-family: var(--font-body-family);
}

.jp-nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--jp-text);
  mix-blend-mode: normal;
  pointer-events: none;
}

.jp-nav a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 700ms var(--jp-ease);
}

.jp-nav a:hover {
  opacity: 1;
}

.jp-nav__links {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
}

.jp-collection-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(22px, 7vw, 110px) 90px;
  overflow: hidden;
  background: var(--jp-bg);
}

.jp-collection-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.68)),
    rgba(0,0,0, var(--jp-overlay, 0.35));
  z-index: 1;
}

.jp-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  opacity: 0.84;
  z-index: 0;
}

.jp-collection-hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.jp-kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
  margin-bottom: 24px;
}

.jp-collection-title {
  margin: 0;
  font-size: clamp(42px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.jp-collection-intro {
  margin-top: 28px;
  max-width: 620px;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.55;
  color: rgba(244, 240, 232, 0.78);
}

.jp-artworks {
  padding: clamp(90px, 12vw, 180px) clamp(20px, 5vw, 80px);
}

.jp-artwork {
  max-width: 1320px;
  margin: 0 auto clamp(130px, 17vw, 240px);
}

.jp-artwork__title {
  margin: 0 0 clamp(34px, 5vw, 72px);
  font-size: clamp(34px, 5.8vw, 92px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.jp-artwork__image-button {
  display: block;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.jp-artwork__image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 1200ms var(--jp-ease), opacity 1200ms var(--jp-ease);
}

.jp-artwork__image-button:hover .jp-artwork__image {
  transform: scale(1.035);
}

.jp-artwork__meta {
  width: min(100%, 1120px);
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: var(--jp-muted);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.jp-artwork__text {
  width: min(100%, 760px);
  margin: 34px auto 0;
  color: rgba(244, 240, 232, 0.78);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}

.jp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 1000ms var(--jp-ease),
    transform 1000ms var(--jp-ease);
}

.jp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.jp-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms var(--jp-ease);
}

.jp-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.jp-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  width: min(520px, 100vw);
  height: 100vh;
  background: var(--jp-panel);
  color: var(--jp-text);
  transform: translateX(100%);
  transition: transform 800ms var(--jp-ease);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
}

.jp-drawer.is-open {
  transform: translateX(0);
}

.jp-drawer__inner {
  padding: 32px clamp(22px, 4vw, 44px) 48px;
}

.jp-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.jp-drawer__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-drawer__close {
  border: 0;
  background: transparent;
  color: var(--jp-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.72;
}

.jp-drawer__close:hover {
  opacity: 1;
}

.jp-drawer__image {
  width: 100%;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
}

.jp-drawer__image img {
  display: block;
  width: 100%;
  height: auto;
}

.jp-drawer__title {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
}

.jp-drawer__meta {
  color: var(--jp-muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.jp-selection-list {
  display: none;
  margin-bottom: 28px;
}

.jp-selection-list.is-visible {
  display: block;
}

.jp-selection-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--jp-line);
}

.jp-selection-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.jp-selection-item strong {
  display: block;
  font-weight: 400;
  margin-bottom: 4px;
}

.jp-selection-item small {
  display: block;
  color: var(--jp-muted);
  line-height: 1.45;
}

.jp-selection-remove {
  margin-top: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--jp-muted);
  text-decoration: underline;
  cursor: pointer;
}

.jp-form-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 400;
}

.jp-field {
  display: block;
  margin-bottom: 18px;
}

.jp-field span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-field input,
.jp-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--jp-line);
  background: transparent;
  color: var(--jp-text);
  padding: 10px 0 12px;
  font: inherit;
  outline: none;
}

.jp-field textarea {
  min-height: 110px;
  resize: vertical;
}

.jp-field input:focus,
.jp-field textarea:focus {
  border-bottom-color: rgba(244, 240, 232, 0.58);
}

.jp-button {
  width: 100%;
  border: 1px solid rgba(244, 240, 232, 0.42);
  background: rgba(244, 240, 232, 0.08);
  color: var(--jp-text);
  padding: 15px 18px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 500ms var(--jp-ease),
    border-color 500ms var(--jp-ease);
}

.jp-button:hover {
  background: rgba(244, 240, 232, 0.14);
  border-color: rgba(244, 240, 232, 0.72);
}

.jp-button-secondary {
  width: 100%;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--jp-muted);
  padding: 12px 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.jp-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--jp-muted);
  font-size: 13px;
}

.jp-floating-selection {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: rgba(12, 12, 12, 0.72);
  color: var(--jp-text);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 600ms var(--jp-ease),
    transform 600ms var(--jp-ease);
}

.jp-floating-selection.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 749px) {
  .jp-nav {
    padding: 22px 18px;
  }

  .jp-nav__links {
    gap: 14px;
  }

  .jp-nav a {
    font-size: 10px;
  }

  .jp-nav__brand {
    display: none;
  }

  .jp-collection-hero {
    min-height: 84svh;
    padding: 130px 22px 60px;
  }

  .jp-artworks {
    padding: 78px 18px;
  }

  .jp-artwork {
    margin-bottom: 125px;
  }

  .jp-artwork__meta {
    display: block;
  }

  .jp-drawer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 92svh;
    transform: translateY(100%);
    border-radius: 18px 18px 0 0;
  }

  .jp-drawer.is-open {
    transform: translateY(0);
  }

  .jp-floating-selection {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jp-reveal,
  .jp-drawer,
  .jp-drawer-overlay,
  .jp-artwork__image,
  .jp-floating-selection {
    transition: none;
  }
}.jp-exhibition-page,
.jp-exhibition-page h1,
.jp-exhibition-page h2,
.jp-exhibition-page h3,
.jp-exhibition-page p,
.jp-exhibition-page span,
.jp-exhibition-page a {
  color: var(--jp-text);
}

.jp-collection-title,
.jp-artwork__title {
  color: var(--jp-text) !important;
}

.jp-collection-intro,
.jp-artwork__text,
.jp-artwork__meta {
  color: rgba(244, 240, 232, 0.78) !important;
}

.jp-collection-hero__content {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.jp-artwork__title {
  opacity: 0.92;
}body.template-index {
  background: var(--jp-bg);
  color: var(--jp-text);
}

body.template-index .shopify-section-group-header-group,
body.template-index .shopify-section-group-footer-group {
  display: none;
}

.jp-home-page {
  background: var(--jp-bg);
  color: var(--jp-text);
  min-height: 100vh;
  font-family: var(--font-body-family);
}

.jp-home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(22px, 7vw, 110px) 90px;
  overflow: hidden;
  background: var(--jp-bg);
}

.jp-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.70)),
    rgba(0,0,0, var(--jp-overlay, 0.35));
}

.jp-home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  opacity: 0.9;
  z-index: 0;
}

.jp-home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.jp-home-title {
  margin: 0;
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--jp-text);
}

.jp-home-phrase {
  margin-top: 30px;
  max-width: 620px;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.45;
  color: rgba(244, 240, 232, 0.78);
}

.jp-home-id {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-home-intro {
  padding: clamp(100px, 14vw, 190px) clamp(24px, 7vw, 110px);
  background: var(--jp-bg);
}

.jp-home-intro__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(244, 240, 232, 0.82);
}

.jp-home-collections {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 80px);
  background: var(--jp-bg);
}

.jp-section-heading {
  max-width: 1180px;
  margin: 0 auto clamp(60px, 8vw, 120px);
}

.jp-section-heading span {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 92px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--jp-text);
}

.jp-collection-portal {
  max-width: 1280px;
  margin: 0 auto clamp(80px, 12vw, 170px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
}

.jp-collection-portal:nth-child(even) {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
}

.jp-collection-portal:nth-child(even) .jp-collection-portal__image-wrap {
  order: 2;
}

.jp-collection-portal:nth-child(even) .jp-collection-portal__content {
  order: 1;
}

.jp-collection-portal__image-wrap {
  display: block;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.jp-collection-portal__image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition:
    transform 1200ms var(--jp-ease),
    opacity 1200ms var(--jp-ease);
}

.jp-collection-portal__image-wrap:hover .jp-collection-portal__image {
  transform: scale(1.045);
}

.jp-collection-portal__content {
  color: var(--jp-text);
}

.jp-collection-portal__number {
  display: block;
  margin-bottom: 22px;
  color: var(--jp-muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jp-collection-portal__title {
  margin: 0;
  font-size: clamp(34px, 5vw, 78px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--jp-text);
}

.jp-collection-portal__text {
  margin-top: 26px;
  max-width: 460px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.jp-collection-portal__link {
  display: inline-block;
  margin-top: 28px;
  color: var(--jp-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244, 240, 232, 0.32);
  padding-bottom: 7px;
  transition: color 600ms var(--jp-ease), border-color 600ms var(--jp-ease);
}

.jp-collection-portal__link:hover {
  color: var(--jp-text);
  border-color: var(--jp-text);
}

.jp-process {
  position: relative;
  padding: clamp(100px, 14vw, 180px) clamp(22px, 7vw, 110px);
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

.jp-process__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}

.jp-process__media video,
.jp-process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jp-process::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.80), rgba(0,0,0,0.18));
}

.jp-process__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.jp-process__content span {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-process__content h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 96px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--jp-text);
}

.jp-process__content p {
  margin-top: 28px;
  color: rgba(244, 240, 232, 0.76);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.7;
}

.jp-editorial-footer {
  padding: 80px clamp(22px, 7vw, 110px);
  border-top: 1px solid var(--jp-line);
  background: #080808;
  color: var(--jp-muted);
}

.jp-editorial-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.jp-editorial-footer strong {
  display: block;
  margin-bottom: 18px;
  color: var(--jp-text);
  font-weight: 400;
  font-size: 20px;
}

.jp-editorial-footer a {
  color: var(--jp-muted);
  text-decoration: none;
}

.jp-editorial-footer a:hover {
  color: var(--jp-text);
}

@media (max-width: 749px) {
  .jp-home-hero {
    min-height: 100svh;
    padding: 130px 22px 60px;
  }

  .jp-home-title {
    font-size: clamp(42px, 15vw, 72px);
  }

  .jp-home-intro {
    padding: 86px 22px;
  }

  .jp-home-collections {
    padding: 70px 18px;
  }

  .jp-collection-portal,
  .jp-collection-portal:nth-child(even) {
    display: block;
    margin-bottom: 92px;
  }

  .jp-collection-portal:nth-child(even) .jp-collection-portal__image-wrap,
  .jp-collection-portal:nth-child(even) .jp-collection-portal__content {
    order: initial;
  }

  .jp-collection-portal__content {
    margin-top: 28px;
  }

  .jp-process {
    min-height: 70svh;
    padding: 90px 22px;
  }

  .jp-editorial-footer {
    padding: 60px 22px;
  }
}body.template-page {
  background: var(--jp-bg);
  color: var(--jp-text);
}

body.template-page .shopify-section-group-header-group,
body.template-page .shopify-section-group-footer-group {
  display: none;
}

.jp-trajectory-page {
  background: var(--jp-bg);
  color: var(--jp-text);
  min-height: 100vh;
  font-family: var(--font-body-family);
}

.jp-trajectory-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 160px clamp(22px, 7vw, 110px) 90px;
  background: var(--jp-bg);
}

.jp-trajectory-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.76)),
    rgba(0,0,0, var(--jp-overlay, 0.45));
}

.jp-trajectory-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  opacity: 0.86;
  z-index: 0;
}

.jp-trajectory-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
}

.jp-trajectory-title {
  margin: 0;
  font-size: clamp(52px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--jp-text);
}

.jp-trajectory-subtitle {
  display: block;
  margin-top: 26px;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.45;
  color: rgba(244, 240, 232, 0.78);
}

.jp-trajectory-intro {
  margin-top: 30px;
  max-width: 680px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
  color: rgba(244, 240, 232, 0.74);
}

.jp-trajectory-block {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) clamp(22px, 7vw, 110px);
  background: var(--jp-bg);
}

.jp-trajectory-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.72), rgba(0,0,0,0.22)),
    rgba(0,0,0, var(--jp-block-overlay, 0.42));
}

.jp-trajectory-block--right::after {
  background:
    linear-gradient(to left, rgba(0,0,0,0.72), rgba(0,0,0,0.22)),
    rgba(0,0,0, var(--jp-block-overlay, 0.42));
}

.jp-trajectory-block--center::after {
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.36), rgba(0,0,0,0.78)),
    rgba(0,0,0, var(--jp-block-overlay, 0.42));
}

.jp-trajectory-block__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  opacity: 0.78;
  z-index: 0;
}

.jp-trajectory-block__content {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
}

.jp-trajectory-block--left .jp-trajectory-block__content {
  margin-right: auto;
}

.jp-trajectory-block--right .jp-trajectory-block__content {
  margin-left: auto;
}

.jp-trajectory-block--center .jp-trajectory-block__content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.jp-trajectory-marker {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-trajectory-block__title {
  margin: 0;
  font-size: clamp(34px, 5.8vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--jp-text);
}

.jp-trajectory-block__text {
  margin-top: 30px;
  font-size: clamp(16px, 1.28vw, 20px);
  line-height: 1.78;
  color: rgba(244, 240, 232, 0.76);
}

.jp-trajectory-ending {
  padding: clamp(100px, 13vw, 180px) clamp(22px, 7vw, 110px);
  background: #080808;
  color: var(--jp-muted);
  border-top: 1px solid var(--jp-line);
}

.jp-trajectory-ending__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.jp-trajectory-ending p {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.55;
  color: rgba(244, 240, 232, 0.78);
}

@media (max-width: 749px) {
  .jp-trajectory-hero {
    min-height: 92svh;
    padding: 130px 22px 60px;
  }

  .jp-trajectory-title {
    font-size: clamp(46px, 16vw, 74px);
  }

  .jp-trajectory-block {
    min-height: auto;
    padding: 110px 22px;
  }

  .jp-trajectory-block::after,
  .jp-trajectory-block--right::after,
  .jp-trajectory-block--center::after {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.50), rgba(0,0,0,0.82)),
      rgba(0,0,0, var(--jp-block-overlay, 0.48));
  }

  .jp-trajectory-block__content,
  .jp-trajectory-block--left .jp-trajectory-block__content,
  .jp-trajectory-block--right .jp-trajectory-block__content,
  .jp-trajectory-block--center .jp-trajectory-block__content {
    margin: 0;
    text-align: left;
  }

  .jp-trajectory-ending {
    padding: 80px 22px;
  }

  .jp-trajectory-ending__inner {
    text-align: left;
  }
}.jp-exhibitions-page {
  background: var(--jp-bg);
  color: var(--jp-text);
  min-height: 100vh;
  font-family: var(--font-body-family);
}

.jp-exhibitions-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px clamp(22px, 7vw, 110px) 80px;
  background: var(--jp-bg);
}

.jp-exhibitions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.74)),
    rgba(0,0,0, var(--jp-overlay, 0.42));
}

.jp-exhibitions-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  opacity: 0.82;
  z-index: 0;
}

.jp-exhibitions-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
}

.jp-exhibitions-title {
  margin: 0;
  font-size: clamp(52px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--jp-text);
}

.jp-exhibitions-subtitle {
  display: block;
  margin-top: 26px;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.45;
  color: rgba(244, 240, 232, 0.78);
}

.jp-exhibitions-intro {
  margin-top: 30px;
  max-width: 680px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
  color: rgba(244, 240, 232, 0.74);
}

.jp-exhibitions-feed {
  padding: clamp(90px, 12vw, 170px) clamp(22px, 7vw, 110px);
  background: var(--jp-bg);
}

.jp-exhibition-entry {
  max-width: 1240px;
  margin: 0 auto clamp(100px, 13vw, 180px);
  padding-bottom: clamp(70px, 8vw, 120px);
  border-bottom: 1px solid var(--jp-line);
}

.jp-exhibition-entry:last-child {
  margin-bottom: 0;
}

.jp-exhibition-entry--featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.jp-exhibition-entry--standard {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.jp-exhibition-entry__meta {
  color: var(--jp-muted);
}

.jp-exhibition-entry__status {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-exhibition-entry__date {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(20px, 2.6vw, 40px);
  line-height: 1;
  color: rgba(244, 240, 232, 0.80);
}

.jp-exhibition-entry__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 78px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--jp-text);
}

.jp-exhibition-entry__location {
  margin-top: 22px;
  color: rgba(244, 240, 232, 0.62);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.jp-exhibition-entry__text {
  margin-top: 30px;
  max-width: 760px;
  color: rgba(244, 240, 232, 0.76);
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.78;
}

.jp-exhibition-entry__image-wrap {
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.jp-exhibition-entry__image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 1200ms var(--jp-ease);
}

.jp-exhibition-entry__image-wrap:hover .jp-exhibition-entry__image {
  transform: scale(1.035);
}

.jp-exhibition-entry__caption {
  margin-top: 14px;
  color: rgba(244, 240, 232, 0.52);
  font-size: 12px;
  line-height: 1.55;
}

.jp-exhibitions-empty {
  max-width: 760px;
  margin: 0 auto;
  color: var(--jp-muted);
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 899px) {
  .jp-exhibition-entry--featured,
  .jp-exhibition-entry--standard {
    display: block;
  }

  .jp-exhibition-entry__media {
    margin-top: 34px;
  }
}

@media (max-width: 749px) {
  .jp-exhibitions-hero {
    min-height: 78svh;
    padding: 130px 22px 60px;
  }

  .jp-exhibitions-title {
    font-size: clamp(46px, 16vw, 74px);
  }

  .jp-exhibitions-feed {
    padding: 80px 22px;
  }

  .jp-exhibition-entry {
    margin-bottom: 90px;
    padding-bottom: 76px;
  }
}.jp-contact-page {
  background: var(--jp-bg);
  color: var(--jp-text);
  min-height: 100vh;
  font-family: var(--font-body-family);
}

.jp-contact-hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px clamp(22px, 7vw, 110px) 80px;
  background: var(--jp-bg);
}

.jp-contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.74)),
    rgba(0,0,0, var(--jp-overlay, 0.40));
}

.jp-contact-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  opacity: 0.82;
  z-index: 0;
}

.jp-contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
}

.jp-contact-title {
  margin: 0;
  font-size: clamp(52px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--jp-text);
}

.jp-contact-intro {
  margin-top: 30px;
  max-width: 680px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.76);
}

.jp-contact-main {
  padding: clamp(90px, 12vw, 170px) clamp(22px, 7vw, 110px);
  background: var(--jp-bg);
}

.jp-contact-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.jp-contact-info {
  color: var(--jp-text);
}

.jp-contact-info__kicker {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-contact-info__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 74px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--jp-text);
}

.jp-contact-info__text {
  margin-top: 30px;
  max-width: 540px;
  color: rgba(244, 240, 232, 0.74);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.75;
}

.jp-contact-channels {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--jp-line);
}

.jp-contact-channel {
  margin-bottom: 24px;
}

.jp-contact-channel span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-contact-channel a,
.jp-contact-channel div {
  color: var(--jp-text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
}

.jp-contact-channel a:hover {
  color: rgba(244, 240, 232, 0.72);
}

.jp-contact-form-wrap {
  border-left: 1px solid var(--jp-line);
  padding-left: clamp(28px, 5vw, 72px);
}

.jp-contact-form-title {
  margin: 0 0 30px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--jp-text);
}

.jp-contact-form {
  width: 100%;
}

.jp-contact-form .jp-field {
  margin-bottom: 24px;
}

.jp-contact-form .jp-field input,
.jp-contact-form .jp-field textarea {
  font-size: 16px;
}

.jp-contact-form .jp-field textarea {
  min-height: 150px;
}

.jp-contact-message {
  margin-top: 20px;
  color: var(--jp-muted);
  font-size: 14px;
  line-height: 1.6;
}

.jp-contact-message--success {
  color: rgba(244, 240, 232, 0.86);
}

.jp-contact-message--error {
  color: rgba(255, 190, 160, 0.90);
}

@media (max-width: 899px) {
  .jp-contact-grid {
    display: block;
  }

  .jp-contact-form-wrap {
    margin-top: 70px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--jp-line);
    padding-top: 50px;
  }
}

@media (max-width: 749px) {
  .jp-contact-hero {
    min-height: 72svh;
    padding: 130px 22px 60px;
  }

  .jp-contact-title {
    font-size: clamp(46px, 16vw, 74px);
  }

  .jp-contact-main {
    padding: 80px 22px;
  }
}html:has(.jp-home-page) .shopify-section-group-header-group,
html:has(.jp-exhibition-page) .shopify-section-group-header-group,
html:has(.jp-trajectory-page) .shopify-section-group-header-group,
html:has(.jp-exhibitions-page) .shopify-section-group-header-group,
html:has(.jp-contact-page) .shopify-section-group-header-group,

html:has(.jp-home-page) .announcement-bar-section,
html:has(.jp-exhibition-page) .announcement-bar-section,
html:has(.jp-trajectory-page) .announcement-bar-section,
html:has(.jp-exhibitions-page) .announcement-bar-section,
html:has(.jp-contact-page) .announcement-bar-section,

html:has(.jp-home-page) .section-header,
html:has(.jp-exhibition-page) .section-header,
html:has(.jp-trajectory-page) .section-header,
html:has(.jp-exhibitions-page) .section-header,
html:has(.jp-contact-page) .section-header,

html:has(.jp-home-page) sticky-header,
html:has(.jp-exhibition-page) sticky-header,
html:has(.jp-trajectory-page) sticky-header,
html:has(.jp-exhibitions-page) sticky-header,
html:has(.jp-contact-page) sticky-header {
  display: none !important;
}/* Ajuste fino — títulos e ficha técnica das obras */

.jp-artwork__title {
  width: min(100%, 1120px);
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: clamp(34px, 4.5vw, 64px) !important;
  text-align: center;
  font-size: clamp(30px, 4.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  opacity: 0.94;
}

.jp-artwork__meta {
  justify-content: center;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  gap: 8px 24px;
  margin-top: 28px;
}

.jp-artwork__meta span {
  display: inline-block;
}

.jp-artwork__text {
  text-align: center;
  margin-top: 38px;
}

@media (max-width: 749px) {
  .jp-artwork__title {
    text-align: left;
    font-size: clamp(30px, 10vw, 48px);
  }

  .jp-artwork__meta {
    display: block;
    text-align: left;
    font-size: 13px;
  }

  .jp-artwork__meta span {
    display: block;
    margin-bottom: 4px;
  }

  .jp-artwork__text {
    text-align: left;
  }
}/* Ajuste fino 02 — proporção do título e ficha técnica */

.jp-artwork__title {
  font-size: clamp(28px, 3.8vw, 58px) !important;
  margin-bottom: clamp(30px, 4vw, 56px) !important;
}

.jp-artwork__meta {
  font-size: 15.5px !important;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.82) !important;
}

@media (max-width: 749px) {
  .jp-artwork__title {
    font-size: clamp(28px, 9vw, 44px) !important;
  }

  .jp-artwork__meta {
    font-size: 14px !important;
  }
}/* Remover rodapé padrão do tema nas páginas do projeto */

html:has(.jp-home-page) .shopify-section-group-footer-group,
html:has(.jp-exhibition-page) .shopify-section-group-footer-group,
html:has(.jp-trajectory-page) .shopify-section-group-footer-group,
html:has(.jp-exhibitions-page) .shopify-section-group-footer-group,
html:has(.jp-contact-page) .shopify-section-group-footer-group,

html:has(.jp-home-page) footer.footer,
html:has(.jp-exhibition-page) footer.footer,
html:has(.jp-trajectory-page) footer.footer,
html:has(.jp-exhibitions-page) footer.footer,
html:has(.jp-contact-page) footer.footer,

html:has(.jp-home-page) .footer,
html:has(.jp-exhibition-page) .footer,
html:has(.jp-trajectory-page) .footer,
html:has(.jp-exhibitions-page) .footer,
html:has(.jp-contact-page) .footer,

html:has(.jp-home-page) .newsletter,
html:has(.jp-exhibition-page) .newsletter,
html:has(.jp-trajectory-page) .newsletter,
html:has(.jp-exhibitions-page) .newsletter,
html:has(.jp-contact-page) .newsletter,

html:has(.jp-home-page) .shopify-section:has(.footer),
html:has(.jp-exhibition-page) .shopify-section:has(.footer),
html:has(.jp-trajectory-page) .shopify-section:has(.footer),
html:has(.jp-exhibitions-page) .shopify-section:has(.footer),
html:has(.jp-contact-page) .shopify-section:has(.footer) {
  display: none !important;
/* Remover botão/widget de localização antigo */

html:has(.jp-home-page) a[href*="maps"],
html:has(.jp-exhibition-page) a[href*="maps"],
html:has(.jp-trajectory-page) a[href*="maps"],
html:has(.jp-exhibitions-page) a[href*="maps"],
html:has(.jp-contact-page) a[href*="maps"],
html:has(.jp-home-page) a[href*="google.com/maps"],
html:has(.jp-exhibition-page) a[href*="google.com/maps"],
html:has(.jp-trajectory-page) a[href*="google.com/maps"],
html:has(.jp-exhibitions-page) a[href*="google.com/maps"],
html:has(.jp-contact-page) a[href*="google.com/maps"] {
  display: none !important;
}/* Remover widget antigo de localização/mapa */

html:has(.jp-home-page) [class*="map" i],
html:has(.jp-exhibition-page) [class*="map" i],
html:has(.jp-trajectory-page) [class*="map" i],
html:has(.jp-exhibitions-page) [class*="map" i],
html:has(.jp-contact-page) [class*="map" i],

html:has(.jp-home-page) [id*="map" i],
html:has(.jp-exhibition-page) [id*="map" i],
html:has(.jp-trajectory-page) [id*="map" i],
html:has(.jp-exhibitions-page) [id*="map" i],
html:has(.jp-contact-page) [id*="map" i],

html:has(.jp-home-page) [class*="location" i],
html:has(.jp-exhibition-page) [class*="location" i],
html:has(.jp-trajectory-page) [class*="location" i],
html:has(.jp-exhibitions-page) [class*="location" i],
html:has(.jp-contact-page) [class*="location" i],

html:has(.jp-home-page) [id*="location" i],
html:has(.jp-exhibition-page) [id*="location" i],
html:has(.jp-trajectory-page) [id*="location" i],
html:has(.jp-exhibitions-page) [id*="location" i],
html:has(.jp-contact-page) [id*="location" i],

html:has(.jp-home-page) [class*="locator" i],
html:has(.jp-exhibition-page) [class*="locator" i],
html:has(.jp-trajectory-page) [class*="locator" i],
html:has(.jp-exhibitions-page) [class*="locator" i],
html:has(.jp-contact-page) [class*="locator" i],

html:has(.jp-home-page) [id*="locator" i],
html:has(.jp-exhibition-page) [id*="locator" i],
html:has(.jp-trajectory-page) [id*="locator" i],
html:has(.jp-exhibitions-page) [id*="locator" i],
html:has(.jp-contact-page) [id*="locator" i] {
  display: none !important;
}/* Remover widget fixo antigo no canto inferior esquerdo */

html:has(.jp-home-page) body > *[style*="position: fixed"][style*="bottom"][style*="left"],
html:has(.jp-exhibition-page) body > *[style*="position: fixed"][style*="bottom"][style*="left"],
html:has(.jp-trajectory-page) body > *[style*="position: fixed"][style*="bottom"][style*="left"],
html:has(.jp-exhibitions-page) body > *[style*="position: fixed"][style*="bottom"][style*="left"],
html:has(.jp-contact-page) body > *[style*="position: fixed"][style*="bottom"][style*="left"],

html:has(.jp-home-page) body > *[style*="position:fixed"][style*="bottom"][style*="left"],
html:has(.jp-exhibition-page) body > *[style*="position:fixed"][style*="bottom"][style*="left"],
html:has(.jp-trajectory-page) body > *[style*="position:fixed"][style*="bottom"][style*="left"],
html:has(.jp-exhibitions-page) body > *[style*="position:fixed"][style*="bottom"][style*="left"],
html:has(.jp-contact-page) body > *[style*="position:fixed"][style*="bottom"][style*="left"] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}/* Remover widget antigo de localização */

#ea-snts-store-locator-wrapper,
#ea-snts-store-locator-wrapper a,
#ea-snts-store-locator {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}/* Ajuste fino — Hero Home / nome em caixa alta */

.jp-home-title {
  text-transform: uppercase;
  font-size: clamp(38px, 6.2vw, 98px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.025em !important;
  max-width: 1120px;
}

.jp-home-hero__content {
  max-width: 1160px;
}

@media (max-width: 749px) {
  .jp-home-title {
    font-size: clamp(38px, 12vw, 62px) !important;
    line-height: 1.02 !important;
  }
}/* Ajuste fino — Home / nome da coleção alinhado ao topo da obra */

.jp-collection-portal {
  align-items: start !important;
}

.jp-collection-portal__content {
  align-self: start !important;
  padding-top: 0 !important;
}

.jp-collection-portal__image-wrap {
  align-self: start !important;
}

.jp-collection-portal__number {
  margin-top: 0;
}/* Home — seção Pesquisa, técnica e linguagem */

.jp-home-research {
  background: var(--jp-bg);
  color: var(--jp-text);
}

.jp-home-research__intro {
  padding: clamp(90px, 12vw, 170px) clamp(22px, 7vw, 110px) clamp(50px, 7vw, 90px);
}

.jp-home-research__intro-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.jp-home-research__intro span {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jp-muted);
}

.jp-home-research__intro h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(36px, 6vw, 92px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--jp-text);
}

.jp-home-research__intro p {
  margin: 30px 0 0;
  max-width: 720px;
  color: rgba(244, 240, 232, 0.72);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
}

.jp-research-block {
  --research-bg: #0d0d0d;
  --research-text: #f4f0e8;
  --research-muted: rgba(244, 240, 232, 0.66);

  background: var(--research-bg);
  color: var(--research-text);
  padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px);
}

.jp-research-block__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.jp-research-block--image-right .jp-research-block__media {
  order: 2;
}

.jp-research-block--image-right .jp-research-block__content {
  order: 1;
}

.jp-research-block__media {
  overflow: hidden;
}

.jp-research-block__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.jp-research-block__content {
  padding-top: 0;
}

.jp-research-block__kicker {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--research-muted);
}

.jp-research-block__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--research-text);
}

.jp-research-block__subtitle {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--research-muted);
}

.jp-research-block__text {
  margin-top: 30px;
  max-width: 620px;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.85;
  color: var(--research-muted);
}

@media (max-width: 899px) {
  .jp-research-block__inner {
    display: block;
  }

  .jp-research-block--image-right .jp-research-block__media,
  .jp-research-block--image-right .jp-research-block__content {
    order: initial;
  }

  .jp-research-block__content {
    margin-top: 34px;
  }
}

@media (max-width: 749px) {
  .jp-home-research__intro {
    padding: 80px 22px 40px;
  }

  .jp-research-block {
    padding: 70px 22px;
  }

  .jp-research-block__title {
    font-size: clamp(30px, 10vw, 48px);
  }
}/* Correção — Home / nome do artista em caixa alta */

.jp-home-title {
  text-transform: uppercase !important;
  font-size: clamp(34px, 5.2vw, 82px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.035em !important;
  max-width: 1240px !important;
}

@media (max-width: 749px) {
  .jp-home-title {
    font-size: clamp(32px, 10vw, 54px) !important;
    letter-spacing: 0.02em !important;
  }
}/* Correção — Home / coleções alinhadas ao topo da obra */

.jp-collection-portal {
  align-items: flex-start !important;
}

.jp-collection-portal__content,
.jp-collection-portal__image-wrap {
  align-self: flex-start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.jp-collection-portal__number {
  display: none !important;
}

.jp-collection-portal__title {
  margin-top: 0 !important;
}/* Correção — Home / seção técnica sem quebrar estética */

.jp-home-page {
  overflow-x: hidden;
}

.jp-home-research {
  background: #0d0d0d !important;
  color: #f4f0e8 !important;
  overflow: hidden;
}

.jp-home-research__intro {
  padding: clamp(90px, 11vw, 150px) clamp(22px, 7vw, 110px) clamp(60px, 7vw, 90px) !important;
}

.jp-home-research__intro-inner {
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.jp-home-research__intro span {
  color: rgba(244, 240, 232, 0.62) !important;
}

.jp-home-research__intro h2 {
  color: #f4f0e8 !important;
  opacity: 0.96 !important;
  font-size: clamp(36px, 5.4vw, 78px) !important;
  max-width: 840px !important;
}

.jp-home-research__intro p {
  color: rgba(244, 240, 232, 0.72) !important;
  max-width: 720px !important;
}

.jp-research-block {
  background: var(--research-bg, #0d0d0d) !important;
  color: var(--research-text, #f4f0e8) !important;
  padding: clamp(90px, 10vw, 150px) clamp(22px, 7vw, 110px) !important;
  overflow: hidden;
}

.jp-research-block__inner {
  max-width: 1280px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  gap: clamp(42px, 7vw, 100px) !important;
  align-items: flex-start !important;
}

.jp-research-block__media {
  overflow: hidden !important;
}

.jp-research-block__media img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 74vh !important;
  object-fit: contain !important;
}

.jp-research-block__content {
  padding-top: 0 !important;
}

.jp-research-block__title {
  color: var(--research-text, #f4f0e8) !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.08 !important;
}

.jp-research-block__subtitle,
.jp-research-block__kicker {
  color: rgba(244, 240, 232, 0.58) !important;
}

.jp-research-block__text {
  color: rgba(244, 240, 232, 0.72) !important;
  font-size: clamp(16px, 1.18vw, 19px) !important;
  line-height: 1.82 !important;
  text-align: left !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
}

@media (max-width: 899px) {
  .jp-research-block__inner {
    display: block !important;
  }

  .jp-research-block__content {
    margin-top: 34px !important;
  }
}/* Correção final — Home / nome do artista em caixa alta mais elegante */

.jp-home-page .jp-home-title {
  text-transform: uppercase !important;
  font-size: clamp(32px, 4.4vw, 68px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0.055em !important;
  max-width: 980px !important;
}

.jp-home-page .jp-home-phrase {
  margin-top: 28px !important;
  font-size: clamp(18px, 1.45vw, 23px) !important;
}

@media (max-width: 749px) {
  .jp-home-page .jp-home-title {
    font-size: clamp(30px, 9vw, 48px) !important;
    letter-spacing: 0.035em !important;
  }
}/* Correção final — Home / coleção alinhada ao topo da imagem */

.jp-home-page .jp-collection-portal {
  align-items: start !important;
  min-height: auto !important;
}

.jp-home-page .jp-collection-portal__content {
  align-self: start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.jp-home-page .jp-collection-portal__image-wrap {
  align-self: start !important;
  margin-top: 0 !important;
}

.jp-home-page .jp-collection-portal__number {
  display: none !important;
}

.jp-home-page .jp-collection-portal__title {
  margin-top: 0 !important;
  padding-top: 0 !important;
  transform: translateY(-8px);
  font-size: clamp(34px, 4.1vw, 62px) !important;
}/* Ajuste final real — nome do artista na Home */

.jp-home-page .jp-home-title {
  font-size: clamp(28px, 3.3vw, 52px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.075em !important;
  max-width: 1040px !important;
  font-weight: 400 !important;
}

.jp-home-page .jp-home-hero__content {
  max-width: 1100px !important;
}

@media (max-width: 749px) {
  .jp-home-page .jp-home-title {
    font-size: clamp(26px, 8vw, 42px) !important;
    line-height: 1.18 !important;
    letter-spacing: 0.045em !important;
  }
}/* Ajuste final real — alinhar coleção ao topo da obra */

.jp-home-page .jp-collection-portal {
  align-items: stretch !important;
}

.jp-home-page .jp-collection-portal__content {
  height: min(72vh, 760px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-self: stretch !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* HOME — coleções com obra em proporção real */
.jp-home-page .jp-collection-portal {
  align-items: start !important;
  gap: clamp(34px, 5vw, 76px) !important;
}

.jp-home-page .jp-collection-portal__content {
  align-self: start !important;
  justify-content: flex-start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.jp-home-page .jp-collection-portal__title {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  line-height: 0.96 !important;
}

.jp-home-page .jp-collection-portal__image-wrap {
  height: auto !important;
  min-height: 0 !important;
  align-self: start !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin-top: 0 !important;
}

.jp-home-page .jp-collection-portal__image {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left top !important;
}

.jp-home-page .jp-collection-portal__number {
  display: none !important;
}

.jp-home-page .jp-collection-portal__title {
  margin-top: -10px !important;
  padding-top: 0 !important;
  font-size: clamp(32px, 3.7vw, 56px) !important;
  line-height: 1.05 !important;
/* Correção — remover rolagem horizontal indesejada */

html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

.jp-home-page,
.jp-exhibition-page,
.jp-trajectory-page,
.jp-exhibitions-page,
.jp-contact-page {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

.jp-home-page *,
.jp-exhibition-page *,
.jp-trajectory-page *,
.jp-exhibitions-page *,
.jp-contact-page * {
  box-sizing: border-box;
}
/* AJUSTE — header mais visível */

.jp-site-header,
.jp-header,
.jp-exhibition-header {
  color: rgba(244, 240, 232, 0.92) !important;
}

.jp-site-header a,
.jp-header a,
.jp-exhibition-header a,
.jp-home-page header a {
  font-size: 13px !important;
  letter-spacing: 0.13em !important;
  font-weight: 500 !important;
  color: rgba(244, 240, 232, 0.88) !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42) !important;
}

.jp-site-header a:hover,
.jp-header a:hover,
.jp-exhibition-header a:hover,
.jp-home-page header a:hover {
  color: rgba(244, 240, 232, 1) !important;
}

/* nome no canto esquerdo um pouco mais presente */
.jp-site-header__brand,
.jp-header__brand,
.jp-exhibition-header__brand,
.jp-home-page header .site-header__heading-link,
.jp-home-page header .header__heading-link {
  font-size: 13px !important;
  letter-spacing: 0.13em !important;
  font-weight: 500 !important;
  color: rgba(244, 240, 232, 0.9) !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42) !important;
}