.location-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
}
.location-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.location-photo figcaption {
  padding: .85rem 1rem;
  color: #d9e3e8;
  font-size: .8rem;
}

.hero-photo {
  position: relative;
  isolation: isolate;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4.5rem);
  background: #203c53;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 29, 44, .08) 20%, rgba(16, 29, 44, .88) 100%),
    linear-gradient(90deg, rgba(16, 29, 44, .16), transparent 60%);
}

.hero-photo > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.photo-kicker {
  align-self: flex-start;
  margin: 0 0 auto;
  padding: .65rem .8rem;
  max-width: 23rem;
  background: var(--sun);
  color: var(--night);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-photo blockquote {
  position: relative;
  margin-top: 2rem;
  max-width: 35rem;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .4);
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .72fr);
  min-height: 690px;
  background: var(--night);
  color: #fff;
}

.photo-story figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.photo-story figure + figure {
  border-left: 1px solid rgba(255, 255, 255, .5);
}

.photo-story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.photo-story-main img { object-position: 48% center; }
.photo-story-result img { object-position: center 48%; }
.photo-story figure:hover img { transform: scale(1.015); }

.photo-story figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, transparent, rgba(9, 18, 27, .92));
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.photo-story figcaption span {
  padding-top: .22rem;
  color: var(--sun);
  font: 800 .72rem var(--sans);
  letter-spacing: .14em;
}

.lsp-section {
  background: var(--night);
  color: #fff;
  padding-top: 0;
}

.lsp-panel {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 8vw;
  margin-top: 0;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, .23);
}

.lsp-panel h3 {
  margin: 0;
  scroll-margin-top: 120px;
  font: 400 clamp(2rem, 3.5vw, 3.7rem) / 1 var(--serif);
}

.lsp-panel .credential {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: .55rem .7rem;
  background: var(--sun);
  color: var(--night);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lsp-panel > div:last-child p {
  max-width: 46rem;
  color: #d7e1e6;
}

.lsp-panel > div:last-child p:last-child { margin-bottom: 0; }

.lsp-source-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: #fff;
}

.facilitator {
  display: grid;
  grid-template-columns: .9fr 1.15fr;
  gap: 3rem 8vw;
  background: var(--ice);
  border-bottom: 1px solid var(--line);
}

.facilitator-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .98;
}

.facilitator-portrait {
  width: min(100%, 26rem);
  aspect-ratio: 3 / 4;
  margin: 2.5rem 0 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-bottom: 4px solid var(--sun);
  background: var(--paper);
}

.facilitator-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.facilitator-profile { max-width: 48rem; }
.facilitator-name {
  margin-bottom: .15rem;
  font: 400 clamp(1.8rem, 3vw, 2.8rem) / 1.1 var(--serif);
}
.facilitator-role {
  margin-bottom: 2rem;
  color: #56656f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.facilitator-profile > p:not(.facilitator-name):not(.facilitator-role) { font-size: 1.05rem; }
.facilitator-profile .text-link { display: inline-block; margin-top: .6rem; }

.facilitator-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.facilitator-facts div {
  min-height: 160px;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.facilitator-facts dt {
  font: 400 clamp(2rem, 4vw, 3.4rem) / 1 var(--serif);
}
.facilitator-facts dd {
  max-width: 15rem;
  margin: 1rem 0 0;
  color: #56656f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-identity {
  min-width: 0;
}

.footer-name-story {
  max-width: 26rem;
  margin: 1.35rem 0 0;
  color: #c9d3d8;
  font-size: .95rem;
  line-height: 1.55;
}

@media (max-width: 950px) {
  .photo-story { grid-template-columns: 1fr; min-height: 0; }
  .photo-story figure { min-height: 620px; }
  .photo-story figure + figure {
    min-height: 760px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .5);
  }
  .photo-story-result img { object-position: center; }
  .lsp-panel { grid-template-columns: 1fr; gap: 2rem; }
  .facilitator { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero-photo { min-height: 520px; }
  .photo-story figure { min-height: 470px; }
  .photo-story figure + figure { min-height: 600px; }
  .photo-story figcaption { grid-template-columns: 2rem 1fr; }
  .photo-kicker { max-width: 18rem; }
  .facilitator-facts { grid-template-columns: 1fr; }
  .facilitator-facts div { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-story img { transition: none; }
}
