:root {
  color-scheme: dark;
  --bg: #000000;
  --text: #fff9ea;
  --body: #ffffff;
  --gold: #dcc27c;
  --burnt-orange: #b47432;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 249, 234, 0.72);
  --line: rgba(255, 255, 255, 0.82);
  --line-soft: rgba(255, 255, 255, 0.28);
  --max: 1294px;
  --narrow: 1040px;
  --header: 132px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: Radley, Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.38;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 30;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 44px 0 36px;
  border-bottom: 2px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark,
.footer-wordmark {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wordmark {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 0.95;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.site-nav a,
.dropdown-label {
  color: var(--body);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.dropdown-label:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 24px;
  content: "";
}

.dropdown-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dropdown-label::after {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-top: -0.18em;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 270px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.96);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown-menu a {
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--body);
}

.page-shell {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
}

.page-narrow {
  width: min(var(--narrow), calc(100% - 72px));
  margin: 0 auto;
}

.section-line {
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
}

.kicker {
  color: var(--gold);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
}

.display,
.page-title,
.section-title,
.card-title,
.tile-title {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0;
}

.display {
  margin: 0 0 34px;
  font-size: clamp(4.6rem, 8.4vw, 8.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-size: clamp(4.1rem, 8vw, 8rem);
  line-height: 0.94;
}

.section-title {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 6.7rem);
  line-height: 0.92;
}

.body-copy {
  margin: 0;
  max-width: 720px;
  color: var(--body);
  text-align: justify;
}

.button,
.research-link {
  display: inline-flex;
  min-width: 210px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid var(--line);
  color: var(--body);
  background: transparent;
  font-family: Radley, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.research-link:hover {
  transform: scale(1.025);
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.media-frame {
  overflow: hidden;
  width: 100%;
  background: #070707;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.media-frame:hover img,
.photo-tile:hover img,
.gallery-item:hover img {
  transform: scale(1.025);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
  min-height: 672px;
  padding: 58px 0 82px;
}

.home-hero > *,
.home-contact > *,
.about-hero > *,
.ae-hero > *,
.impact-section > *,
.leadership-heading > * {
  min-width: 0;
}

.home-hero .body-copy {
  max-width: 475px;
  margin-bottom: 32px;
}

.hero-image {
  height: min(520px, 48vw);
  min-height: 390px;
}

.home-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(52px, 8vw, 130px);
  min-height: 610px;
  padding: 58px 0 68px;
}

.contact-heading {
  max-width: 690px;
  margin: 0 0 78px;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-size: clamp(4.3rem, 8vw, 8.2rem);
  line-height: 0.96;
}

.contact-details {
  color: var(--body);
}

.home-actions {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 34px;
}

.home-copyright {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 0 0 32px;
  color: var(--body);
  font-size: 0.8rem;
  text-align: right;
}

.about-hero,
.ae-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: center;
  padding: 108px 0 98px;
}

.about-hero .media-frame {
  height: 405px;
}

.about-hero .page-title {
  margin-bottom: 52px;
}

.about-hero .body-copy {
  margin-top: 18px;
}

.about-essay {
  display: grid;
  gap: 116px;
  padding: 28px 0 136px;
}

.essay-block {
  max-width: 790px;
}

.essay-block.right {
  justify-self: end;
  max-width: 760px;
  text-align: right;
}

.essay-block h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

.essay-block p {
  margin: 0 0 28px;
  text-align: justify;
}

.essay-block.right p {
  text-align: right;
}

.button-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.essay-block.right .button-row {
  justify-content: end;
}

.next-page-row {
  display: flex;
  justify-content: end;
  margin-top: 22px;
}

.ae-hero {
  min-height: 520px;
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1fr);
  gap: clamp(58px, 6vw, 92px);
}

.ae-hero .media-frame {
  height: clamp(350px, 30vw, 430px);
}

.research-section {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 78px 86px 74px;
  isolation: isolate;
}

.research-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: url("/assets/images/academics/ae-2.jpg") center / cover no-repeat;
}

.research-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(0, 0, 0, 0.28);
}

.research-title {
  max-width: 760px;
  margin-left: auto;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
  margin: 180px auto 0;
  max-width: 1060px;
}

.research-link {
  display: grid;
  align-content: end;
  justify-content: start;
  min-height: 145px;
  padding: 28px;
  text-align: left;
  background: rgba(0, 0, 0, 0.86);
}

.research-link span {
  display: block;
  margin-bottom: 24px;
  font-size: 0.86rem;
}

.research-link strong {
  display: block;
  max-width: 350px;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.research-link small {
  display: block;
  margin-top: 7px;
  color: var(--soft);
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding: 122px 18px 108px;
}

.impact-section .media-frame {
  width: min(126%, 680px);
  height: clamp(410px, 32vw, 500px);
  margin-top: 128px;
  align-self: end;
}

.impact-list {
  margin: 64px 0 0 -82px;
  padding-left: 104px;
  color: var(--body);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.impact-list li + li {
  margin-top: 16px;
}

.leadership-section {
  padding: 74px 0 108px;
}

.leadership-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 42px;
  margin-bottom: 72px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.leadership-card {
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.leadership-card:last-child {
  border-right: 0;
}

.leadership-card h3 {
  margin: 8px 0 8px;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.leadership-card p,
.leadership-card small {
  margin: 0;
  font-size: 0.95rem;
}

.timeline-section {
  padding: 10px 0 122px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 54px auto 38px;
  max-width: 980px;
  padding-bottom: 58px;
  text-align: center;
}

.timeline::before {
  position: absolute;
  top: 112px;
  left: 8%;
  right: 8%;
  height: 1px;
  content: "";
  background: var(--burnt-orange);
}

.timeline-item {
  position: relative;
  min-height: 118px;
  padding: 0 14px 58px;
  font-size: 0.92rem;
}

.timeline-item::after {
  position: absolute;
  top: 108px;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--burnt-orange);
  border-radius: 50%;
  background: var(--bg);
  transform: translateX(-50%);
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--burnt-orange);
}

.timeline-note {
  max-width: 900px;
  margin: 0 auto 74px;
  font-size: 0.82rem;
  text-align: center;
}

.ae-actions {
  display: flex;
  justify-content: center;
  gap: 72px;
}

.photo-landing {
  padding: 60px 0 132px;
}

.photo-cover {
  width: min(820px, 74vw);
  height: min(520px, 45vw);
  min-height: 330px;
  margin: 0 auto;
}

.photo-intro {
  max-width: 820px;
  margin: -54px auto 145px;
}

.photo-intro h1 {
  margin: 0 0 42px -130px;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-size: clamp(4.2rem, 7vw, 7.5rem);
  line-height: 0.92;
}

.photo-intro p {
  max-width: 800px;
  text-align: justify;
}

.photo-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px 72px;
}

.photo-tile {
  display: grid;
  gap: 32px;
  transition: transform 180ms ease;
}

.photo-tile:hover {
  transform: scale(1.015);
}

.photo-tile .media-frame {
  aspect-ratio: 1.5 / 1;
}

.tile-title {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 0.95;
}

.gallery-page-main {
  width: min(1040px, calc(100% - 72px));
  margin: 0 auto;
  padding: 68px 0 72px;
}

.gallery-hero {
  position: relative;
  margin-bottom: 42px;
}

.gallery-hero .media-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(650px, 52vw);
  min-height: 360px;
}

.gallery-title-block {
  position: relative;
  z-index: 3;
  max-width: 610px;
  margin-top: -96px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.gallery-title-block h1 {
  margin: 0 0 10px;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-size: clamp(4rem, 7vw, 7.4rem);
  line-height: 0.9;
}

.gallery-title-block p {
  margin: 0;
  font-size: 0.95rem;
}

.curated-gallery {
  display: grid;
  gap: 40px;
  margin-top: 64px;
}

.gallery-row {
  display: grid;
  gap: 28px;
  align-items: start;
}

.gallery-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-row.mosaic {
  grid-template-columns: 0.72fr 1fr;
}

.gallery-row.reverse-mosaic {
  grid-template-columns: 1fr 0.72fr;
}

.gallery-row.built-library {
  grid-template-columns: 0.64fr 1fr;
}

.gallery-row.human-stack {
  grid-template-columns: 1fr 1fr;
}

.gallery-row.human-stack .gallery-item:first-child {
  grid-row: span 2;
}

.gallery-row.human-stack .gallery-item:first-child img {
  height: 100%;
  object-fit: cover;
}

.gallery-row.endurance-action {
  grid-template-columns: 0.74fr 1fr;
  align-items: stretch;
}

.gallery-row.endurance-action .gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item.landscape {
  aspect-ratio: auto;
}

.gallery-item.portrait {
  aspect-ratio: auto;
}

.gallery-item.square {
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 650ms ease, filter 650ms ease;
}

.gallery-item:hover img {
  transform: none;
  filter: brightness(1.08);
}

.gallery-section-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 84px 0 18px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}

.section-nav-button {
  display: grid;
  min-width: min(310px, 42vw);
  min-height: 72px;
  align-content: center;
  padding: 14px 22px;
  border: 1px solid var(--line);
  color: var(--body);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.section-nav-button:last-child {
  text-align: right;
}

.section-nav-button span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.82rem;
}

.section-nav-button strong {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.section-nav-button:hover {
  transform: translateY(-3px);
  background: var(--text);
  color: var(--bg);
}

.section-nav-button:hover span,
.section-nav-button:hover strong {
  color: var(--bg);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--body);
  background: transparent;
  cursor: pointer;
}

.scroll-progress {
  position: fixed;
  right: 34px;
  bottom: 92px;
  z-index: 50;
  width: 3px;
  height: 92px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 0;
  border-radius: inherit;
  background: var(--text);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 50;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bg);
  background: var(--text);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  cursor: pointer;
  opacity: 0.86;
  transition: transform 180ms ease, opacity 180ms ease;
}

.back-to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 56px 0 42px;
}

.footer-contact {
  max-width: 760px;
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-brand {
  text-align: right;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 0.96;
}

.footer-brand small {
  display: block;
  font-size: 0.74rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .home-hero,
  .home-contact,
  .about-hero,
  .ae-hero,
  .impact-section,
  .leadership-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .home-actions,
  .essay-block.right .button-row,
  .next-page-row {
    justify-content: start;
  }

  .essay-block.right,
  .essay-block.right p {
    justify-self: start;
    text-align: left;
  }

  .research-section {
    padding: 64px 34px;
  }

  .research-title {
    margin-left: 0;
  }

  .research-grid,
  .leadership-grid,
  .photo-tile-grid {
    grid-template-columns: 1fr;
  }

  .impact-section .media-frame {
    width: 100%;
    height: auto;
    margin-top: 28px;
    aspect-ratio: 1.55 / 1;
  }

  .impact-list {
    margin: 34px 0 0;
    padding-left: 1.35rem;
  }

  .leadership-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .leadership-card:last-child {
    border-bottom: 0;
  }

  .photo-intro {
    margin-top: -36px;
  }

  .photo-intro h1 {
    margin-left: 0;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 0;
    text-align: left;
  }

  .timeline::before,
  .timeline-item::after {
    display: none;
  }

  .timeline-item {
    min-height: auto;
    padding: 0;
  }

  .ae-actions {
    justify-content: start;
    gap: 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .page-shell,
  .page-narrow,
  .home-copyright,
  .site-footer,
  .gallery-page-main {
    width: min(100% - 34px, var(--max));
  }

  .site-header {
    padding: 26px 0 24px;
  }

  .header-inner {
    align-items: center;
  }

  .wordmark {
    font-size: 2rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(0, 0, 0, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a,
  .dropdown-label,
  .dropdown-menu a {
    padding: 12px 0;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 4px 16px;
    border: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
  }

  .display,
  .page-title,
  .section-title,
  .contact-heading,
  .photo-intro h1,
  .gallery-title-block h1 {
    font-size: clamp(3.4rem, 16vw, 5.8rem);
  }

  .about-hero .page-title {
    margin-bottom: 34px;
  }

  .about-hero .body-copy {
    margin-top: 4px;
  }

  .home-hero,
  .about-hero,
  .ae-hero,
  .photo-landing {
    padding-top: 62px;
  }

  .hero-image,
  .about-hero .media-frame,
  .ae-hero .media-frame,
  .impact-section .media-frame,
  .photo-cover,
  .gallery-hero .media-frame {
    min-height: 300px;
    height: auto;
    aspect-ratio: 1.35 / 1;
  }

  .home-contact {
    min-height: 0;
  }

  .home-actions,
  .button-row,
  .ae-actions {
    display: grid;
    gap: 14px;
  }

  .button,
  .research-link {
    width: 100%;
  }

  .research-grid {
    gap: 22px;
    margin-top: 90px;
  }

  .impact-section,
  .leadership-section,
  .timeline-section,
  .about-essay {
    padding-bottom: 82px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-row.two,
  .gallery-row.three,
  .gallery-row.mosaic,
  .gallery-row.reverse-mosaic,
  .gallery-row.built-library,
  .gallery-row.human-stack,
  .gallery-row.endurance-action {
    grid-template-columns: 1fr;
  }

  .gallery-row.human-stack .gallery-item:first-child,
  .gallery-row.endurance-action .gallery-item {
    grid-row: auto;
  }

  .gallery-row.human-stack .gallery-item:first-child img,
  .gallery-row.endurance-action .gallery-item img {
    height: auto;
    object-fit: contain;
  }

  .gallery-title-block {
    margin-top: -72px;
  }

  .gallery-item {
    min-height: 230px;
  }

  .gallery-section-nav {
    display: grid;
    gap: 14px;
    margin-top: 58px;
  }

  .section-nav-button {
    min-width: 0;
    width: 100%;
  }

  .section-nav-button:last-child {
    text-align: left;
  }

  .scroll-progress {
    right: 18px;
    bottom: 82px;
    height: 70px;
  }

  .back-to-top {
    right: 10px;
  }

  .footer-brand {
    text-align: left;
  }
}
