

.about-page .site-header__nav a {
  color: var(--color-content-subdued-dark);
}

.about-page .site-header__nav a.is-active {
  color: var(--color-white);
}

.about-page .site-header__status-copy {
  color: var(--color-white);
}

.about-page .site-header__status-copy:hover {
  color: var(--color-white);
}

.about-page .site-header--light .site-header__status-copy {
  color: var(--color-black);
}

.about-page .site-header--light .site-header__status-copy:hover {
  color: var(--color-black);
}

.about-page .site-header--light .site-header__nav a,
.about-page .site-header--light .site-header__nav a.is-active {
  color: var(--color-black);
}

@media (max-width: 1199px) {
  .about-page .site-header--light ~ .nav-panel .nav-panel__links a,
  .about-page .site-header--light ~ .nav-panel .nav-panel__links a.is-active,
  .about-page .site-header--light ~ .nav-panel .nav-panel__links a[aria-current='page'] {
    color: var(--color-white);
  }

  .about-page .site-header--light ~ .nav-panel .nav-panel__links:has(a:hover) a,
  .about-page .site-header--light ~ .nav-panel .nav-panel__links:has(a:focus-visible) a,
  .about-page .site-header--light ~ .nav-panel .nav-panel__links:has(a:hover) a:hover,
  .about-page .site-header--light ~ .nav-panel .nav-panel__links:has(a:focus-visible) a:focus-visible {
    color: var(--color-white);
  }
}

.about-page {
  --about-subhero-stacked-gap: var(--spacing-2xl);
}

.subhero__stripes {
  left: var(--pad-section-x);
  right: var(--pad-section-x);
  top: 0;
  height: 300px;
  z-index: 0;
}

.subhero__stripes .grid-line {
  background: linear-gradient(
    to bottom,
    #222222 0%,
    transparent 100%
  );
}

.subhero {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: var(--color-black);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--section-padding-y) var(--pad-section-x) var(--spacing-3xl);
}

.about-banner {
  background: linear-gradient(to bottom, var(--color-black) 50%, var(--color-white) 50%);
  padding: 0 var(--pad-section-x);
}

.about-banner__media {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-media);
  overflow: clip;
  isolation: isolate;
}

.about-banner__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.about-banner__clip img {
  display: block;
  position: absolute;
  left: 0;
  top: calc(-10% + var(--about-banner-parallax-y, 0px));
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: 78% 38%;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-banner__clip img {
    top: -10%;
  }
}

.subhero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.subhero__spark {
  display: none;
}

.subhero__spark.is-chat-trigger {
  cursor: pointer;
  pointer-events: auto;
}

.subhero__spark.is-chat-trigger:focus-visible {
  outline: 2px solid rgba(var(--color-sand-rgb), 0.9);
  outline-offset: 2px;
}

@media (min-width: 1200px) {
  .subhero__spark {
    position: absolute;
    top: 290px;
    right: 48px;
    width: 64px;
    height: 64px;
    pointer-events: none;
    z-index: 3;
    display: block;
    transform: rotate(var(--subhero-spark-rot, 0deg));
    transform-origin: center center;
    will-change: transform;
  }
}

.about-page .subhero__heading-block,
.work-page .subhero__heading-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-page .subhero__heading {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  line-height: 0;
  place-items: start;

  height: fit-content;
  min-height: 0;
}

.about-page .subhero__heading > * {
  grid-column: 1;
  grid-row: 1;
}

.subhero__heading {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  line-height: 0;
  margin: 0;
  place-items: start;
}

.subhero__heading > * {
  grid-column: 1;
  grid-row: 1;
}

.subhero__overline {
  margin-left: 0;
  margin-top: 0;
  color: var(--color-white);
}

.subhero__line-1 {
  font-family: var(--type-h1-family);
  font-size: var(--type-h1-size);
  font-weight: var(--type-h1-weight);
  line-height: var(--type-h1-line-height);
  letter-spacing: var(--type-h1-letter-spacing);
  color: var(--color-white);
  font-style: normal;
  margin-left: 0;
  margin-top: 28px;
}

.subhero__arrow {
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 274px;
  margin-top: 73px;
}

.subhero__arrow img {
  width: 100%;
  height: 100%;
}

.subhero__arrow .hero__heading-clip {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.subhero__arrow .hero__heading-inner {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(115%) rotate(90deg);
  transform-origin: center center;
}

.subhero.is-revealed .subhero__arrow .hero__heading-inner {
  transform: translateY(0) rotate(0deg);
}

.subhero__line-2 {
  font-family: var(--type-h1-family);
  font-size: var(--type-h1-size);
  font-weight: var(--type-h1-weight);
  line-height: var(--type-h1-line-height);
  letter-spacing: var(--type-h1-letter-spacing);
  color: var(--color-white);
  font-style: normal;
  text-align: right;
  margin-left: 182px;
  margin-top: 103px;
  width: 373px;
}

@media (min-width: 768px) {
  .about-page .subhero__line-1 {
    margin-left: 0;
    margin-top: 0;
    width: auto;
    white-space: nowrap;
  }

  .about-page .subhero__arrow {
    margin-left: 274px;
    margin-top: 39px;
    width: 32px;
    height: 32px;
  }

  .about-page .subhero__line-2 {
    margin-left: 182px;
    margin-top: 80px;
    width: 373px;
    text-align: right;
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .about-page .subhero {
    height: 420px;
  }

  .about-page .subhero__stripes {
    left: var(--pad-section-x);
    right: var(--pad-section-x);
    top: 0;
    height: 300px;
  }

  .about-page .subhero__line-1 {
    width: 268px;
  }

  .about-page .subhero__arrow {
    margin-top: 45px;
  }

  .about-page .subhero__line-2 {
    margin-top: 74.75px;
  }

  .about-page .about-lead {
    padding: var(--section-padding-y) var(--pad-section-x);
    gap: var(--spacing-xl);
  }

  .about-page .about-lead > .about-lead__formfast {
    display: block;
    max-width: 563px;
    margin-bottom: calc(var(--spacing-section-md) - var(--spacing-xl));
  }

  .about-page .about-lead > .about-lead__text-group {
    max-width: 563px;
    margin-bottom: 0;
  }

  .about-page .about-lead > .about-lead__chat-cta {
    align-self: flex-start;
  }
}

.subhero__subtitle {
  font-family: var(--type-h5g-family);
  font-size: var(--type-h5g-size);
  font-weight: var(--type-h5g-weight);
  line-height: var(--type-h5g-line-height);
  letter-spacing: var(--type-h5g-letter-spacing);
  color: var(--color-white);
  width: 546px;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .subhero__subtitle {
    text-align: right;
  }
}

.about-lead {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  padding: var(--section-padding-y) var(--pad-section-x);
  background-color: var(--color-black);
}

.about-lead__text-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 640px;
}

.about-lead .about-text__copy {
  font-family: var(--type-h5g-family);
  font-size: var(--type-h5g-size);
  font-weight: var(--type-h5g-weight);
  line-height: var(--type-h5g-line-height);
  letter-spacing: var(--type-h5g-letter-spacing);
}

.about-lead__chat-cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 720ms;
}

.about-lead__formfast {
  display: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 546px;
  margin: 0;
  font-family: var(--type-h5g-family);
  font-size: var(--type-h5g-size);
  font-weight: var(--type-h5g-weight);
  line-height: var(--type-h5g-line-height);
  letter-spacing: var(--type-h5g-letter-spacing);
  color: var(--color-white);
}

@media (max-width: 1199px) {
  .about-page .subhero__subtitle--about-desktop {
    display: none;
  }

  .about-page .about-lead__formfast {
    display: block;
  }
}

.subhero.is-revealed .hero__heading-inner {
  transform: translateY(0);
}

.about-text {
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
  padding: var(--section-padding-y) var(--pad-section-x);
}

.about-text--right {
  align-items: flex-end;
}

.about-text__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  width: 620px;
}

.about-text__eyebrow {
  color: var(--color-white);
}

.about-text__copy {
  font-family: var(--type-h5g-family);
  font-size: var(--type-h5g-size);
  font-weight: var(--type-h5g-weight);
  line-height: var(--type-h5g-line-height);
  letter-spacing: var(--type-h5g-letter-spacing);
  color: var(--color-white);
}

.about-usps {
  background-color: var(--color-white);
  padding: var(--section-padding-y) var(--pad-section-x);
  position: relative;
}

.about-usps__cards {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
}

.about-usp-card {
  flex: 1;
  min-width: 0;
  min-height: 336px;
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  overflow: visible;
}

.about-usp-card:not(:last-of-type) {
  border-right: 1px solid #e8e8e8;
}

.about-usp-card:nth-child(n + 3) {
  padding-left: var(--spacing-2xl);
  padding-right: var(--spacing-2xl);
}

.about-usp-card__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-xl);
  width: 100%;
}

.about-usp-card__header-main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  min-width: 0;
  flex: 1 1 auto;
}

.about-usp-card__number {
  color: var(--color-content-subdued-light);
}

.about-usp-card__title {
  font-family: var(--type-h6-family);
  font-size: var(--type-h6-size);
  font-weight: var(--type-h6-weight);
  line-height: var(--type-h6-line-height);
  letter-spacing: var(--type-h6-letter-spacing);
  color: var(--color-black);
}

.about-usp-card__body {
  margin-top: auto;
  color: var(--color-black);
}

.about-usp-star {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.about-usp-star--1 {
  left: calc(25% - 31.7px);
  top: -24.42px;
}

.about-usp-star--2 {
  left: calc(75% - 32px);
  bottom: -24px;
  top: auto;
}

.about-services {
  --about-services-bg: var(--color-white);
  --about-services-meta-color: var(--color-black);
  --about-services-text-color: var(--color-black);
  --about-services-border-color: #e8e8e8;
  --about-services-num-color: #aba7a7;
  --about-services-left-gap: var(--spacing-xl);
  --about-services-heading-max-width: 300px;
  --about-services-item-padding-y: var(--spacing-md);
  --about-services-item-min-height: 0;
  --about-services-item-gap: var(--spacing-xl);
  --about-services-name-family: var(--type-h5g-family);
  --about-services-name-size: var(--type-h5g-size);
  --about-services-name-weight: var(--type-h5g-weight);
  --about-services-name-letter-spacing: var(--type-h5g-letter-spacing);
  --about-services-num-size: var(--type-h5g-size);
  --about-services-num-letter-spacing: 0.06em;
  background-color: var(--about-services-bg);
  padding: var(--section-padding-y) var(--pad-section-x);
}

.about-services--dark {
  --about-services-bg: var(--color-black);
  --about-services-meta-color: var(--color-white);
  --about-services-text-color: var(--color-white);
  --about-services-border-color: rgba(var(--color-sand-rgb), 0.1);
}

.about-services--light + .about-services--light {
  border-top: 1px solid var(--about-services-border-color);
}

.about-services__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3xl);
}

.about-services__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--about-services-left-gap);
}

.about-services__eyebrow {
  color: var(--about-services-meta-color);
}

.about-services__heading {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: normal;
  letter-spacing: var(--type-h4-letter-spacing);
  color: var(--about-services-text-color);
  max-width: var(--about-services-heading-max-width);
}

.about-services__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.about-services__label {
  color: var(--about-services-meta-color);
  margin-bottom: 12px;
}

.about-services__intro {
  color: var(--about-services-text-color);
  max-width: 60ch;
  margin-bottom: 48px;
}

.about-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 1px solid var(--about-services-border-color);
}

.about-services__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: var(--about-services-item-gap);
  align-items: center;
  min-height: var(--about-services-item-min-height);
  padding: var(--about-services-item-padding-y) 0;
  border-bottom: 1px solid var(--about-services-border-color);
}

.about-services__name {
  min-width: 0;
  font-family: var(--about-services-name-family);
  font-size: var(--about-services-name-size);
  font-weight: var(--about-services-name-weight);
  letter-spacing: var(--about-services-name-letter-spacing);
  color: var(--about-services-text-color);
}

.about-services__num {
  font-family: var(--font-geist-mono);
  font-size: var(--about-services-num-size);
  font-weight: 400;
  letter-spacing: var(--about-services-num-letter-spacing);
  color: var(--about-services-num-color);
  justify-self: end;
}

.about-photos {
  background-color: var(--color-black);
  padding: var(--section-padding-y) var(--pad-section-x) 0;
}

.about-photos__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.about-photos__eyebrow {
  color: var(--color-white);
}

.about-photos__heading {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line-height);
  letter-spacing: var(--type-h4-letter-spacing);
  color: var(--color-white);
  width: 838px;
}

.about-photos__grid {
  --about-photo-gap: var(--spacing-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--about-photo-gap);
  width: 100%;
}

.about-photos__stack {
  display: contents;
}

.about-photos__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--about-photo-gap);
}

.about-photos__col--1 { padding-top: 121px; }
.about-photos__col--2 { padding-top: 337px; }
.about-photos__col--3 { padding-top: 0; }
.about-photos__col--4 { padding-top: 216px; }

.about-photo-item {
  --about-photo-aspect: 3 / 4;
  position: relative;
  width: 100%;
  aspect-ratio: var(--about-photo-aspect);

  border-radius: var(--radius-media);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

.about-photo-item__clip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  will-change: height;
}

.about-photo-item__clip img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateY(var(--photo-parallax-y, 0px));
  will-change: transform;

}

@media (prefers-reduced-motion: reduce) {
  .about-photo-item__clip {
    height: 100%;
    will-change: auto;
  }

  .about-photo-item__clip img {
    height: 100%;
    transform: none;
  }
}

.about-cta-banner {
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--section-padding-y) var(--pad-section-x);
}

.about-cta-heading {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  line-height: 0;
  place-items: start;
}

.about-cta-heading > * {
  grid-column: 1;
  grid-row: 1;
}

.about-cta-heading__line1,
.about-cta-heading__line2 {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line-height);
  letter-spacing: var(--type-h4-letter-spacing);
  color: var(--color-white);
  white-space: nowrap;
}

.about-cta-heading__line1 {
  margin-left: 0;
  margin-top: 0;
}

.about-cta-heading__line2 {
  margin-left: 117px;
  margin-top: 42px;
}

.about-text.is-revealed .cases__word-inner,
.about-lead.is-revealed .cases__word-inner,
.about-cta-banner.is-revealed .cases__word-inner,
.about-services.is-revealed .cases__word-inner {
  transform: translateY(0);
}

.about-lead.is-revealed .about-lead__chat-cta {
  opacity: 1;
  transform: translateY(0);
}

.subhero.is-revealed .subhero__subtitle .cases__word-inner {
  transform: translateY(0);
}
