:root {
  --ivory: #f5efe4;
  --paper: #eee4d2;
  --brown: #352e28;
  --ink: #2e2823;
  --gold: #b89352;
  --line: rgba(190, 151, 83, 0.72);
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: Avenir, "Avenir Next", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
}

.story-passage {
  position: relative;
  overflow: clip;
}

.story-thread {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.who,
.woven {
  position: relative;
  min-height: 100svh;
  padding: clamp(6rem, 10vw, 10.5rem) clamp(1.5rem, 7vw, 8rem);
}

.eyebrow {
  margin: 0 0 2rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.who {
  z-index: 1;
  min-height: max(100svh, 68rem);
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.55), transparent 32%),
    var(--ivory);
}

.who__copy {
  position: relative;
  z-index: 6;
}
.who h2,
.woven h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.who h2 {
  max-width: none;
  font-size: clamp(3.15rem, 4.3vw, 5.15rem);
  line-height: 1.01;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.who__body {
  width: min(55%, 43rem);
  margin-top: clamp(2.7rem, 4.3vw, 4.2rem);
}

.who__body p,
.woven__copy > p:last-child {
  margin: 0;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.who__body p + p { margin-top: 1.45rem; }

.who__image {
  position: absolute;
  right: clamp(1.5rem, 7vw, 8rem);
  bottom: clamp(5.5rem, 8vw, 8.5rem);
  width: min(27vw, 25rem);
  margin: 0;
}

.who__image-reveal {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d9cebc;
  clip-path: inset(0);
  transition: clip-path 1s cubic-bezier(.2,.7,.2,1) .18s;
}

.js .who__image-reveal { clip-path: inset(0 0 100% 0); }

.who__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  transform: scale(1.035);
  transition: transform 1.35s cubic-bezier(.2,.7,.2,1) .1s;
}

.who__image figcaption {
  margin-top: .9rem;
  color: rgba(46,40,35,.58);
  font-size: .66rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: clamp(1.5rem, 7vw, 8rem);
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
  color: rgba(46,40,35,.45);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

.woven {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(25rem, 1fr);
  gap: clamp(4rem, 10vw, 11rem);
  align-items: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 48%, rgba(184,147,82,.07), transparent 35%),
    #2a261f;
}

.woven__copy {
  position: relative;
  z-index: 6;
  max-width: 47rem;
}
.woven h2 {
  color: var(--ivory);
  font-size: clamp(3.15rem, 4.3vw, 5.15rem);
  line-height: 1.01;
}

.woven__copy > p:last-child {
  max-width: 42rem;
  margin-top: clamp(2.4rem, 4vw, 3.8rem);
  color: rgba(245,239,228,.76);
}

.woven__field {
  position: relative;
  min-height: min(72svh, 50rem);
}

.js .section-reveal .eyebrow,
.js .section-reveal h1,
.js .section-reveal h2,
.js .section-reveal .who__body,
.js .section-reveal .woven__copy > p:last-child {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.js .section-reveal h1,
.js .section-reveal h2 { transition-delay: .08s; }
.js .section-reveal .who__body,
.js .section-reveal .woven__copy > p:last-child { transition-delay: .18s; }

.js .section-reveal.is-visible .eyebrow,
.js .section-reveal.is-visible h1,
.js .section-reveal.is-visible h2,
.js .section-reveal.is-visible .who__body,
.js .section-reveal.is-visible .woven__copy > p:last-child {
  opacity: 1;
  transform: translateY(0);
}
.js .section-reveal.is-visible .who__image-reveal { clip-path: inset(0); }
.js .section-reveal.is-visible .who__image img { transform: scale(1); }

@media (max-width: 900px) {
  .who,
  .woven {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-block: 6.5rem;
  }
  .who {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
  .who h2 { max-width: none; }
  .headline-line { white-space: normal; }
  .who__body { width: min(100%, 43rem); }
  .who__image {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    width: min(76vw, 29rem);
  }
  .woven__field {
    min-height: 34rem;
  }
  .scroll-cue { display: none; }
}

@media (max-width: 560px) {
  .who,
  .woven {
    padding-inline: 1.35rem;
    padding-block: 5.5rem 7.5rem;
  }
  .eyebrow { margin-bottom: 1.4rem; }
  .who h2,
  .woven h2 {
    font-size: clamp(2.85rem, 12.5vw, 3.65rem);
    line-height: 1.02;
  }
  .headline-line { display: inline; }
  .headline-line + .headline-line::before { content: " "; }
  .who__body { margin-top: 2.4rem; }
  .who__body p,
  .woven__copy > p:last-child {
    font-size: 1rem;
    line-height: 1.66;
  }
  .who__image {
    width: 78vw;
    margin: 0 auto;
  }
  .who__image figcaption {
    max-width: 82%;
    font-size: .58rem;
    line-height: 1.35;
  }
  .woven {
    gap: 3.25rem;
  }
  .woven__copy > p:last-child {
    margin-top: 2rem;
  }
  .woven__field {
    min-height: 34rem;
    margin-inline: -.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .section-reveal .eyebrow,
  .section-reveal h1,
  .section-reveal h2,
  .section-reveal .who__body,
  .section-reveal .woven__copy > p:last-child,
  .thread-word,
  .woven__point {
    opacity: 1;
    transform: none;
  }
  .who__image-reveal { clip-path: inset(0); }
  .who__image img { transform: none; }
}
