:root {
  --accent: #ff7a45;
  --accent-hover: #ffb08d;
}

.about-landing {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-hero {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 110px 0 clamp(3rem, 8vw, 6rem);
  margin-bottom: 0;
}

.page-hero__content {
  display: block;
}

.page-hero__title {
  width: 100%;
  max-width: 100%;
  color: var(--accent);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.94;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-divider {
  width: var(--site-width);
  margin: 0 auto;
  color: var(--accent);
  opacity: 0.88;
}

.hero-divider__svg {
  width: 100%;
  height: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  width: min(var(--site-width), 52rem);
  max-width: min(var(--site-width), 52rem);
  margin-inline: 0;
  margin-top: 2rem;
}

.hero-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.25rem 0 0.25rem 1.25rem;
  background: transparent;
  border-left: 3px solid var(--accent);
  border-radius: 0;
}

.hero-stats__figure {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.96;
}

.hero-stats__text {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.72;
}

.intro-copy,
.photo-grid {
  margin-top: var(--site-gap);
  padding-top: var(--site-gap);
  margin-bottom: var(--site-gap);
}

.photo-grid {
  padding-bottom: var(--site-gap);
  margin-bottom: var(--site-gap);
}

.photo-grid__inner {
  width: var(--site-width);
  max-width: none;
  margin-inline: auto;
}

.photo-grid__card {
  --about-photo-width: 22rem;
  --about-photo-height: calc(var(--about-photo-width) * 1.25);
  display: grid;
  grid-template-columns: minmax(0, 46rem) var(--about-photo-width);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.photo-grid__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  box-sizing: border-box;
  height: var(--about-photo-height);
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
  text-align: left;
  padding: 2.9rem 2rem 2rem;
  background: var(--card-bg);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.photo-grid__title,
.photo-grid__subhead,
.photo-grid__copy {
  margin: 0;
}

.photo-grid__title {
  font-size: clamp(2.2rem, 2.8vw, 2.55rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -1px;
}

.photo-grid__subhead {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-grid__copy {
  font-size: clamp(0.94rem, 0.24vw + 0.9rem, 1rem);
  line-height: 1.62;
  opacity: 0.72;
}

.photo-grid__image-target {
  width: var(--about-photo-width);
  height: var(--about-photo-height);
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: stretch;
  transform: translateX(-0.45rem);
  background: var(--accent);
  border-radius: 10px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.photo-grid__image-wrap {
  --photo-base-offset-x: 0px;
  --photo-scroll-x: 0px;
  box-sizing: border-box;
  width: var(--about-photo-width);
  height: var(--about-photo-height);
  grid-column: 2;
  grid-row: 1;
  max-width: none;
  justify-self: center;
  align-self: stretch;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  transform: translate3d(
    calc(var(--photo-base-offset-x) + var(--photo-scroll-x)),
    0,
    0
  );
  z-index: 1;
}

.photo-grid__image {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center 6%;
  transform: scale(1.03);
  transform-origin: center;
}

@media (max-width: 1366px) {
  :root {
    --site-gap: 2rem;
  }

  .page-hero {
    min-height: auto;
    padding: clamp(6rem, 10vw, 8rem) 0 0;
  }

  .hero-divider {
    margin-top: var(--site-gap);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .hero-stats__item {
    padding-left: 1rem;
  }

  .photo-grid__card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    justify-items: center;
  }

  .photo-grid__content,
  .photo-grid__image-target,
  .photo-grid__image-wrap {
    grid-column: 1;
    grid-row: auto;
  }

  .photo-grid__image-target {
    display: block;
    grid-row: 1;
    width: min(56vw, 13.5rem);
    height: auto;
    max-width: 13.5rem;
    justify-self: start;
    margin-left: clamp(0.85rem, 2.3vw, 1.1rem);
    align-self: start;
    aspect-ratio: 4 / 5;
    transform: translateX(-0.45rem);
  }

  .photo-grid__image-wrap {
    grid-row: 1;
    width: min(56vw, 13.5rem);
    justify-self: start;
    margin-left: clamp(0.85rem, 2.3vw, 1.1rem);
    height: auto;
    max-width: 13.5rem;
    align-self: start;
    aspect-ratio: 4 / 5;
    --photo-base-offset-x: 0px;
  }

  .photo-grid__content {
    grid-row: 2;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    justify-self: stretch;
    align-self: auto;
    gap: 0.7rem;
    padding: 1.15rem 1.1rem 1.1rem;
    border-radius: 0 0 12px 12px;
  }

  .photo-grid__title {
    font-size: clamp(1.95rem, 8vw, 2.2rem);
    line-height: 0.98;
  }

  .photo-grid__subhead {
    font-size: 0.78rem;
  }

  .photo-grid__copy {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .photo-grid__image {
    border-radius: 0;
  }
}
