.about-us {
  width: 100%;
  padding: 83px 30px 112px;
  box-sizing: border-box;
  color: #18141e;
  background: #fcfcfc;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
}

.about-us__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 675px));
  gap: 30px;
  align-items: start;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.about-us__content {
  min-width: 0;
}

.about-us__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 169px;
  height: 24px;
  margin: 0;
  padding: 0 15px;
  border-radius: 999px;
  box-sizing: border-box;
  color: #18141e;
  background: #e6ece9;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}

.about-us__title {
  width: min(578px, 100%);
  /* min-height: 210px; */
  margin: 40px 0 0;
  color: #18141e;
  font-family: inherit;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: 0;
}

.about-us__description {
  width: min(440px, 100%);
  min-height: 120px;
  margin: 32px 0 0;
  color: #18141e;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.about-us__media {
  width: 100%;
  height: 411px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--about-image-background, #ded8ca);
}

.about-us__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-us__information-list {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 1380px;
  margin: 80px auto 0;
}

.about-us-information {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 360px;
  overflow: hidden;
  border-radius: 20px;
  color: #18141e;
  background: #b5d4b2;
  text-decoration: none;
}

.about-us-information--text-only {
  grid-template-columns: 1fr;
  min-height: 0;
}

.about-us-information__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-information__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.about-us-information__title {
  margin: 0 0 24px;
  color: inherit;
  font-family: inherit;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
}

.about-us-information__description {
  max-width: 520px;
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

a.about-us-information {
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

a.about-us-information:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}

a.about-us-information:focus-visible {
  outline: 2px solid #18141e;
  outline-offset: 3px;
}

@keyframes about-us-reveal-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.about-us-reveal .about-us__eyebrow,
.about-us-reveal .about-us__title,
.about-us-reveal .about-us__media,
.about-us-reveal .about-us__description,
.about-us-reveal .about-us__information-list {
  opacity: 0;
}

.about-us-reveal.is-revealed .about-us__eyebrow,
.about-us-reveal.is-revealed .about-us__title,
.about-us-reveal.is-revealed .about-us__media,
.about-us-reveal.is-revealed .about-us__description,
.about-us-reveal.is-revealed .about-us__information-list {
  animation: about-us-reveal-up 850ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.about-us-reveal.is-revealed .about-us__title {
  animation-delay: 100ms;
}

.about-us-reveal.is-revealed .about-us__media {
  animation-delay: 300ms;
}

.about-us-reveal.is-revealed .about-us__description {
  animation-delay: 520ms;
}

.about-us-reveal.is-revealed .about-us__information-list {
  animation-delay: 700ms;
}

@media (max-width: 991px) {
  .about-us {
    padding: 64px 30px 88px;
  }

  .about-us__intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-us__title {
    min-height: 0;
    font-size: 52px;
    line-height: 1.12;
  }

  .about-us__description {
    min-height: 0;
  }

  .about-us__media {
    height: auto;
    aspect-ratio: 675 / 411;
  }

  .about-us-information {
    grid-template-columns: 1fr;
  }

  .about-us-information__image {
    max-height: 440px;
    aspect-ratio: 16 / 10;
  }

  /* Stacked card spans the section; the desktop-column cap comes off */
  .about-us-information__description {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .about-us {
    padding: 48px 16px 64px;
  }

  .about-us__intro {
    gap: 36px;
  }

  .about-us__eyebrow {
    min-width: 0;
  }

  .about-us__title {
    width: min(309px, 100%);
    margin-top: 14px;
    font-size: 32px;
    line-height: 1.1;
  }

  .about-us__description {
    margin-top: 24px;
  }

  .about-us__media,
  .about-us-information {
    border-radius: 16px;
  }

  .about-us__information-list {
    margin-top: 56px;
  }

  .about-us-information__copy {
    padding: 32px 24px;
  }

  .about-us-information__title {
    font-size: 32px;
  }

  .about-us-information__description {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-us-reveal .about-us__eyebrow,
  .about-us-reveal .about-us__title,
  .about-us-reveal .about-us__media,
  .about-us-reveal .about-us__description,
  .about-us-reveal .about-us__information-list {
    opacity: 1;
    animation: none;
  }
}

@keyframes about-us-information-reveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.about-us-information--reveal {
  opacity: 0;
}

.about-us-information--reveal.is-revealed {
  animation: about-us-information-reveal 850ms cubic-bezier(0.4, 0, 0.2, 1) 60ms both;
}

@media (prefers-reduced-motion: reduce) {
  .about-us-information--reveal {
    opacity: 1;
    animation: none;
  }
}

/* Waterfall: siblings entering together stagger left-to-right */

/* waterfall-about-us-information */
:host(:nth-child(2)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(2) {
  animation-delay: 160ms;
}
:host(:nth-child(3)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(3) {
  animation-delay: 260ms;
}
:host(:nth-child(4)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(4) {
  animation-delay: 360ms;
}
:host(:nth-child(5)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(5) {
  animation-delay: 460ms;
}
:host(:nth-child(6)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(6) {
  animation-delay: 560ms;
}
:host(:nth-child(7)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(7) {
  animation-delay: 660ms;
}

/* Direction variety: headings/copy arrive from the left */
@keyframes about-us-reveal-from-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.about-us-reveal.is-revealed .about-us__eyebrow,
.about-us-reveal.is-revealed .about-us__title {
  animation-name: about-us-reveal-from-left;
}

/* waterfall-ext-about-us-information: items 8+ keep cascading instead of snapping to the base delay */
:host(:nth-child(8)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(8) {
  animation-delay: 760ms;
}
:host(:nth-child(9)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(9) {
  animation-delay: 860ms;
}
:host(:nth-child(n + 10)) .about-us-information--reveal.is-revealed,
.about-us-information--reveal.is-revealed:nth-child(n + 10) {
  animation-delay: 960ms;
}

/* Authored \n breaks are desktop-only; below the site's mobile breakpoint
   (navbar switch, 1280px) the text reflows naturally. */
@media (max-width: 1280px) {
  br.multiline-br {
    display: none;
  }
}

