/* Local composition study. The established hero and production sources are unchanged. */
.partnership-spread {
  position: relative;
  height: 100svh;
  min-height: 780px;
  max-height: 1080px;
  overflow: visible;
}
.spread-frame {
  position: relative;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  grid-template-rows: auto minmax(280px, 1fr) auto;
  gap: 24px 72px;
  height: 100svh;
  min-height: 780px;
  max-height: 1080px;
  padding: 48px clamp(24px, 5vw, 76px) 42px;
  overflow: clip;
}
.spread-title { display: contents; }
.spread-first, .spread-last {
  font: 400 clamp(110px, 13.5vw, 224px)/.8 var(--serif);
  letter-spacing: -.025em;
  white-space: nowrap;
}
.spread-first { grid-area: 1 / 1; align-self: end; }
.spread-last {
  grid-area: 3 / 1 / 4 / -1;
  justify-self: end;
  font-size: clamp(100px, 12.5vw, 208px);
  font-style: italic;
  color: var(--accent);
}
.spread-scope {
  grid-area: 1 / 2;
  max-width: 315px;
  justify-self: end;
  align-self: center;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.spread-art { grid-area: 2 / 1 / 3 / -1; position: relative; overflow: hidden; background: #16130f; }
.spread-image {
  width: 100%; height: 100%; position: absolute; inset: 0;
  display: block; object-fit: cover; object-position: center 58%;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 1000ms cubic-bezier(.16,1,.3,1);
}
.spread-image.is-current { opacity: 1; transform: scale(1); }
.spread-navigation { grid-area: 2 / 2; display: flex; flex-direction: column; align-self: center; justify-self: end; gap: 12px; position: relative; z-index: 1; }
.spread-view {
  display: block; width: 5px; height: 5px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(236, 230, 218, .34); transition: transform 500ms cubic-bezier(.16,1,.3,1), background 300ms ease;
}
.spread-view.is-current { background: var(--accent); transform: scale(1.8); }
@media (max-width: 1100px) and (min-width: 781px) {
  .spread-frame { min-height: 710px; gap: 28px; }
  .spread-scope { max-width: 260px; font-size: 15px; }
}
@media (max-width: 780px) {
  .partnership-spread {
    height: 92svh;
    min-height: 700px;
    max-height: 930px;
    overflow: visible;
  }
  .spread-frame {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto minmax(260px, 1fr) auto auto;
    min-height: 700px; height: 92svh; max-height: 930px;
    gap: 24px 8px; padding: 48px 24px 38px;
  }
  .spread-first { grid-area: 1 / 1 / 2 / -1; font-size: clamp(86px, 24vw, 170px); }
  .spread-last { grid-area: 3 / 1 / 4 / -1; font-size: clamp(62px, 16.6vw, 125px); }
  .spread-scope { grid-area: 4 / 1; align-self: start; justify-self: start; font-size: 14px; line-height: 1.7; margin: 0; max-width: 290px; }
  .spread-navigation { display: none; }
  .spread-art { grid-area: 2 / 1 / 3 / -1; }
  .spread-image { object-position: 66% center; }
}
@media (prefers-reduced-motion: reduce) {
  .spread-image { transform: none; transition: none; }
  .spread-view { transition: none; }
}
