body.is-about .bg-layer {
  display: none;
  opacity: 0;
  visibility: hidden;
}

body.is-about .site-footer {
  z-index: 2;
}

#facts {
  margin-top: 10rem;
}

#reviews + #expertise {
  margin-bottom: 10rem;
}

.about-video-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.about-video-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: about-video-fade 1.6s var(--ease) both;
}

@keyframes about-video-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.3;
  }
}

.about-manifest {
  --about-manifest-muted: #383838;
  --about-manifest-indent: calc(
    ((100% - (var(--grid-gap, 24px) * 11)) / 12) * 3 +
      (var(--grid-gap, 24px) * 3)
  );

  position: relative;
  min-height: 180svh;
}

.about-manifest__grid {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: 66svh 0 clamp(96px, 14vh, 180px);
  align-items: start;
}

.about-manifest__label {
  grid-column: 1 / span 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: clamp(14px, 1vw, 22px);
  color: var(--text);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  font-weight: 600;
}

.about-manifest__label span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.about-manifest__body {
  grid-column: 1 / -1;
  grid-row: 1;
}

.about-manifest__text {
  margin: 0;
  max-width: 100%;
  color: var(--about-manifest-muted);
  font-size: clamp(34px, 5.1vw, 70px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
}

.about-manifest__text-strong {
  color: inherit;
}

.about-manifest__paragraph {
  display: block;
}

.about-manifest__paragraph:first-child {
  text-indent: var(--about-manifest-indent);
}

.about-manifest__paragraph + .about-manifest__paragraph {
  margin-top: 0.95em;
}

.about-manifest__char {
  display: inline;
  color: var(--about-manifest-muted);
  transition: color 120ms linear;
}

.about-manifest__char.is-active {
  color: var(--text);
}

.about-manifest__signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: var(--about-manifest-indent);
  margin-top: clamp(38px, 5vw, 72px);
  color: var(--text);
  font-size: var(--type-body-sm-size);
  line-height: 1.35;
  font-weight: 500;
}

.about-manifest__signature img {
  width: clamp(56px, 5.2vw, 80px);
  height: clamp(56px, 5.2vw, 80px);
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.about-manifest__signature span {
  display: block;
}

@media (max-width: 990px) {
  #facts {
    margin-top: 5rem;
  }

  #reviews + #expertise {
    margin-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  #facts {
    margin-top: 5rem;
  }

  #reviews + #expertise {
    margin-bottom: 5rem;
  }

  .about-manifest {
    --about-manifest-indent: 0px;
    min-height: auto;
  }

  .about-manifest__grid {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 50svh 0 96px;
    row-gap: 44px;
  }

  .about-manifest__label,
  .about-manifest__body {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-manifest__label {
    grid-row: auto;
    padding-top: 0;
  }

  .about-manifest__text {
    max-width: 100%;
  }

  .about-manifest__signature {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  #facts {
    margin-top: 3rem;
  }

  #reviews + #expertise {
    margin-bottom: 3rem;
  }

  .about-manifest__grid {
    padding: 50svh 0 76px;
    row-gap: 34px;
  }

  .about-manifest__text {
    line-height: 1.1;
  }

  .about-manifest__signature {
    gap: 16px;
    margin-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-manifest__char {
    color: var(--text) !important;
    transition: none !important;
  }
}
