@media (min-width: 801px) {
  .intro > div {
    max-width: 980px;
  }

  .intro > div > p:not(.kicker) {
    max-width: 820px;
  }
}

.strength-section {
  grid-template-rows: auto auto auto;
  overflow: clip;
}

.strength-section > .section-no {
  grid-column: 1;
  grid-row: 1 / 4;
}

.strength-copy {
  grid-column: 2;
  grid-row: 1;
}

.story > .strength-copy {
  max-width: 980px;
}

.strength-copy > p:not(.strength-kicker) {
  max-width: 820px;
}

.strength-copy h3 {
  max-width: 820px;
  margin: 42px 0 16px;
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.55;
  letter-spacing: -.02em;
}

.instagram-section {
  overflow: clip;
}

.company-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 54px 0 8px;
}

.company-photos:has(figure:only-child) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}

.company-photos figure {
  position: relative;
  aspect-ratio: 16 / 7;
  margin: 0;
  overflow: hidden;
  background: #d4d1c9;
}

.company-photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.65) sepia(.18) saturate(.75) contrast(1.05);
}

.company-photos figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 4px 7px;
  background: rgba(11, 41, 64, .78);
  color: #fff;
  font: 700 8px Arial, sans-serif;
  letter-spacing: .16em;
}

.story > .strength-reel {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  max-width: 1440px;
  margin: 54px 0 0;
  overflow: hidden;
}

.strength-quote {
  grid-column: 2;
  grid-row: 3;
}

.strength-reel-track {
  display: flex;
  width: max-content;
  animation: strength-reel-loop var(--strength-duration, 72s) linear infinite;
}

.strength-reel-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.strength-reel img {
  width: clamp(260px, 29vw, 430px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(1);
}

@keyframes strength-reel-loop {
  to {
    transform: translateX(-25%);
  }
}

@media (max-width: 800px) {
  .site-header nav {
    top: 100%;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 18px 36px rgba(5, 20, 31, .28);
  }

  .intro h2,
  .strength-copy h2 {
    font-size: clamp(24px, 6.8vw, 26px);
    line-height: 1.5;
    letter-spacing: -.035em;
  }

  .intro > div > p:not(.kicker),
  .strength-copy > p {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.9;
  }

  .company-photos {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 36px;
  }

  .company-photos figure,
  .company-photos:has(figure:only-child) {
    max-width: none;
    aspect-ratio: 16 / 9;
  }

  .strength-section > .section-no {
    grid-column: auto;
    grid-row: auto;
  }

  .strength-copy,
  .story > .strength-reel,
  .strength-quote {
    grid-column: auto;
    grid-row: auto;
  }

  .story > .strength-reel {
    width: calc(100% + (2 * var(--site-gutter)));
    max-width: none;
    margin-right: calc(-1 * var(--site-gutter));
    margin-left: calc(-1 * var(--site-gutter));
    margin-top: 38px;
  }

  .strength-quote {
    margin-top: 0;
  }

  .story .strength-quote blockquote {
    margin-top: 36px;
    padding-left: 18px;
    border-left-width: 3px;
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: -.02em;
  }

  .strength-reel img {
    width: 72vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strength-reel {
    overflow-x: auto;
  }

  .strength-reel-track {
    animation: none;
  }
}
